/*
 * Font self-hosted per mapu.lab.
 *
 * Corpo del testo: Helvetica. E' un font di sistema (nessun file da
 * scaricare) - su Mac usa Helvetica Neue nativo, su Windows/Linux
 * ripiega su Arial, esteticamente quasi identico. Zero richieste di
 * rete in piu', zero rallentamenti.
 *
 * Titoli display: Fraunces, un font variabile (un solo file copre i
 * pesi 400-600) scelto per il contrasto con Helvetica - serif
 * editoriale ed elegante contro un grottesco neutro. File scaricati
 * da Google Fonts (licenza OFL, libera per self-hosting) e gia'
 * presenti in questa cartella: fraunces-variable.woff2 e
 * fraunces-variable-italic.woff2.
 */

@font-face {
	font-family: 'Fraunces';
	src: url('fraunces-variable.woff2') format('woff2');
	font-weight: 400 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Fraunces';
	src: url('fraunces-variable-italic.woff2') format('woff2');
	font-weight: 400 600;
	font-style: italic;
	font-display: swap;
}
