/* ══════════════════════════════════════════════════════════════
   INTER — ospitato in locale (pesi statici, NON variabili).
   I .woff2 stanno in wwwroot/fonts/inter/ e vengono serviti dal
   nostro dominio: nessuna dipendenza da Google Fonts / CDN, così
   proxy aziendali, antivirus e cache non possono bloccarli o
   corromperli. Si usano pesi STATICI di proposito: i font
   variabili sono quelli che innescano piu' spesso il bug di
   rasterizzazione di Chrome (testo reso a simboli).
   font-display: swap -> se il font tarda, si vede subito il
   fallback di sistema invece di testo invisibile.
   ══════════════════════════════════════════════════════════════ */

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

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

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

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

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