/* =============================================================================
   FONT AUTO-OSPITATI
   Usato quando in config.php hai  'fonts' => 'local'  (impostazione consigliata:
   nessuna richiesta ai server di Google, quindi nessun trasferimento dell'IP
   dei visitatori a terzi).

   COME PROCURARSI I FILE (una volta sola, 2 minuti):
   1. vai su  https://gwfh.mranftl.com/fonts  (Google Webfonts Helper)
   2. cerca "Big Shoulders Display" -> pesi 400, 600, 800 -> charset latin
      cerca "Lexend"                -> pesi 300, 400, 500
      cerca "IBM Plex Mono"         -> pesi 400, 500
   3. scarica i .woff2, mettili in  main-assets/fonts/  e rinominali come
      indicato qui sotto.
   Se un file manca, il sito continua a funzionare con i font di sistema.
   ========================================================================== */

@font-face {
    font-family: "Big Shoulders Display";
    src: url("main-assets/fonts/big-shoulders-display-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Big Shoulders Display";
    src: url("main-assets/fonts/big-shoulders-display-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Big Shoulders Display";
    src: url("main-assets/fonts/big-shoulders-display-800.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lexend";
    src: url("main-assets/fonts/lexend-300.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Lexend";
    src: url("main-assets/fonts/lexend-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Lexend";
    src: url("main-assets/fonts/lexend-500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Mono";
    src: url("main-assets/fonts/ibm-plex-mono-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "IBM Plex Mono";
    src: url("main-assets/fonts/ibm-plex-mono-500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
