/* ============================================================
   Selbstgehostete Schriften – ersetzt Google Fonts vollständig.
   Nach dem Einbinden besteht KEINE Verbindung mehr zu Google;
   die IP der Besucher wird nicht mehr an Google übertragen.

   Ablage:  fonts.css  ->  Web-Root
            fonts/      ->  Web-Root/fonts/  (die 5 .woff2-Dateien)
   Einbinden im <head> jeder Seite:
            <link rel="stylesheet" href="/fonts.css"/>
   ============================================================ */

@font-face{
  font-family:'Playfair Display';
  font-style:normal; font-weight:400 900; font-display:swap;
  src:url('fonts/PlayfairDisplay-VF.woff2') format('woff2');
}
@font-face{
  font-family:'Playfair Display';
  font-style:italic; font-weight:400 900; font-display:swap;
  src:url('fonts/PlayfairDisplay-Italic-VF.woff2') format('woff2');
}
@font-face{
  font-family:'Jost';
  font-style:normal; font-weight:100 900; font-display:swap;
  src:url('fonts/Jost-VF.woff2') format('woff2');
}
@font-face{
  font-family:'Courier Prime';
  font-style:normal; font-weight:400; font-display:swap;
  src:url('fonts/CourierPrime-Regular.woff2') format('woff2');
}
@font-face{
  font-family:'Courier Prime';
  font-style:normal; font-weight:700; font-display:swap;
  src:url('fonts/CourierPrime-Bold.woff2') format('woff2');
}
