/* =========================================================================
   FONT SELF-HOSTATI (09/09/2026) — GDPR: nessuna richiesta a Google.
   I quattro woff2 in /assets/font/ sono i file REALI che l'API css2 serviva
   con le stesse query dei vecchi <link> (UA Chrome 128 -> woff2 + unicode-range),
   tenuti i soli subset latin e latin-ext (sito in italiano).
   - Inter v20: UN file variabile per subset (fvar: wght 100..900; opsz
     appuntato a 14pt nell'istanza di Google). Google lo dichiarava sei
     volte, un @font-face per peso 300/400/500/600/700/800 con lo STESSO url;
     qui una sola faccia con font-weight 300 800: stesso intervallo servito,
     stesse istanze (i pesi fuori registro cadono sull'estremo come prima).
   - Ballet v30 opsz@72: istanza STATICA "Ballet 72pt Regular" (niente fvar,
     nessun font-variation-settings da fissare). Il lockup della hero dipende
     dalle SUE metriche (larghezza naturale dello script 842.7u a corpo 152,
     776u a corpo 140): se si cambia il file va ritarato il textLength in
     index.html.
   Percorsi relativi a questo CSS (../assets/font/ -> /assets/font/): gli
   stessi URL dei <link rel="preload"> di index.html, cosi' il preload e'
   riusato e non raddoppia la richiesta.
   ========================================================================= */

/* Ballet 72pt — latin-ext */
@font-face {
  font-family: 'Ballet';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../assets/font/ballet-72pt-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Ballet 72pt — latin */
@font-face {
  font-family: 'Ballet';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../assets/font/ballet-72pt-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Inter variabile (wght 300-800) — latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(../assets/font/inter-var-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Inter variabile (wght 300-800) — latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(../assets/font/inter-var-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
