/*
 * Font self-hosted per Project Marta.
 *
 * Serviti dal dominio del sito, MAI da fonts.googleapis.com o fonts.gstatic.com
 * (il caricamento da server Google trasferisce l'IP dell'utente a terzi senza
 * base giuridica — Garante Privacy, provvedimento su Google Fonts).
 *
 * Spectral: da Google (una sola istanza static per peso)
 * Inter:    da rsms.me (istanze static distinte per 400 e 500)
 * Percorsi relativi al file CSS (assets/fonts/font.css -> stesso folder dei .woff2).
 */

@font-face {
	font-family: 'Spectral';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('spectral-regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Spectral';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('spectral-medium.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('inter-regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('inter-medium.woff2') format('woff2');
}
