/* ==========================================================================
   Schriften – lokal eingebunden (kein Google-CDN, DSGVO-konform)
   Beide Familien liegen als Variable Font vor: eine Datei deckt alle
   Schnitte ab (Cormorant 300-700, Jost 100-900).

   Kursiv: Cormorant liegt als echte Kursive bei - eine eigene Zeichnung,
   keine schraeggestellte Aufrechte. base.css setzt font-synthesis: none,
   damit der Browser gar nicht erst anfaengt zu rechnen: entweder die echte
   Kursive oder aufrecht.

   Alle drei Dateien sind Googles Latin-Subset (U+0000-00FF plus Satzzeichen,
   Euro und Gedankenstrich) - deckt Deutsch vollstaendig ab. Wird die Seite
   mehrsprachig, braucht es die groesseren Subsets von fonts.google.com.
   ========================================================================== */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/CormorantGaramond-var.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/CormorantGaramond-Italic-var.woff2') format('woff2');
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/Jost-var.woff2') format('woff2');
}
