/* Lokale Schriften (Selbst-Hosting) — Baeriswyl Beratungen
   ZWECK: Google Fonts lokal ausliefern, damit beim Seitenbesuch keine
   Besucher-IP an Google uebertragen wird (Datenschutz-Haertung).

   AKTIVIEREN IN 3 SCHRITTEN (erst wenn die Dateien da sind, sonst brechen
   die Schriften!):
   1) Ordner  /fonts/  anlegen und diese 7 Dateien (Format .woff2) hineinlegen:
        comfortaa-300.woff2  comfortaa-400.woff2  comfortaa-500.woff2
        comfortaa-600.woff2  comfortaa-700.woff2
        dm-serif-display-400.woff2  dm-serif-display-400-italic.woff2
      Bequemste Quelle: google-webfonts-helper (gwfh.mranftl.com) — dort
      "Comfortaa" und "DM Serif Display" waehlen, latin, als .woff2 laden.
   2) In ALLEN HTML-Dateien die Google-Fonts-Zeilen ersetzen durch:
        <link rel="stylesheet" href="css/fonts.css">
      (Die 3 Zeilen mit fonts.googleapis.com / fonts.gstatic.com entfernen.)
   3) Im Browser pruefen, dass die Schrift unveraendert aussieht. Fertig. */

@font-face{font-family:'Comfortaa';font-style:normal;font-weight:300;font-display:swap;src:url('../fonts/comfortaa-300.woff2') format('woff2');}
@font-face{font-family:'Comfortaa';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/comfortaa-400.woff2') format('woff2');}
@font-face{font-family:'Comfortaa';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/comfortaa-500.woff2') format('woff2');}
@font-face{font-family:'Comfortaa';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/comfortaa-600.woff2') format('woff2');}
@font-face{font-family:'Comfortaa';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/comfortaa-700.woff2') format('woff2');}
@font-face{font-family:'DM Serif Display';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/dm-serif-display-400.woff2') format('woff2');}
@font-face{font-family:'DM Serif Display';font-style:italic;font-weight:400;font-display:swap;src:url('../fonts/dm-serif-display-400-italic.woff2') format('woff2');}

/* Schriften der Video-Seiten (videos/*.html): Space Grotesk + Inter.
   Werden nur geladen, wenn eine Seite sie tatsaechlich verwendet
   (font-display:swap). Quelle: Google Fonts, latin-Subset, lokal gehostet. */
@font-face{font-family:'Space Grotesk';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/space-grotesk-500.woff2') format('woff2');}
@font-face{font-family:'Space Grotesk';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/space-grotesk-700.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/inter-400.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/inter-500.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/inter-600.woff2') format('woff2');}
