/* ===========================================================================
   Signava — fonts
   ---------------------------------------------------------------------------
   PRIVACY: We do NOT use Google Fonts. Two compliant options are supported,
   selected by the SIGNAVA_USE_BUNNY_FONTS environment variable:

   • SIGNAVA_USE_BUNNY_FONTS=1  → base.html loads Bunny Fonts (EU, GDPR,
     zero-logging) from fonts.bunny.net. This file then adds NO @font-face rules,
     so there are no references to missing local files (collectstatic stays clean).

   • SIGNAVA_USE_BUNNY_FONTS=0  → self-hosted. Drop the WOFF2 files into
     static/fonts/… and uncomment the @font-face block below. Sources (SIL OFL):
       https://fonts.bunny.net/family/cormorant-garamond
       https://fonts.bunny.net/family/inter
       https://fonts.bunny.net/family/jetbrains-mono

   Until you self-host, the site renders via Bunny (if enabled) or the system
   serif/sans/mono fallback stacks declared in signava.css — always cleanly.
   =========================================================================== */

/* To self-host, place the WOFF2 files and uncomment:

@font-face { font-family:"Cormorant Garamond"; font-style:normal; font-weight:400;
  font-display:swap; src:url("../fonts/cormorant/cormorant-garamond-400.woff2") format("woff2"); }
@font-face { font-family:"Cormorant Garamond"; font-style:normal; font-weight:600;
  font-display:swap; src:url("../fonts/cormorant/cormorant-garamond-600.woff2") format("woff2"); }
@font-face { font-family:"Cormorant Garamond"; font-style:normal; font-weight:700;
  font-display:swap; src:url("../fonts/cormorant/cormorant-garamond-700.woff2") format("woff2"); }
@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:"JetBrains Mono"; font-style:normal; font-weight:400;
  font-display:swap; src:url("../fonts/jetbrains/jetbrains-mono-400.woff2") format("woff2"); }
@font-face { font-family:"JetBrains Mono"; font-style:normal; font-weight:700;
  font-display:swap; src:url("../fonts/jetbrains/jetbrains-mono-700.woff2") format("woff2"); }

*/
