/* ============================================================
   LOKALE SCHRIFTARTEN – schriften.css
   ------------------------------------------------------------
   Diese Datei bindet die Schriften vom eigenen Server ein,
   statt sie bei Google zu laden. Vorteil: schneller, und der
   Google-Fonts-Abschnitt in der Datenschutzerklärung entfällt.

   SO GEHT'S:
   1. Auf  https://gwfh.mranftl.com/fonts  gehen
   2. Dort nacheinander "Fraunces" und "Work Sans" suchen
   3. Bei den Schnitten auswählen: 400, 500, 600
   4. "woff2" wählen und herunterladen
   5. Die .woff2-Dateien in den Ordner  schriften/  legen
   6. Dateinamen unten ggf. an die heruntergeladenen anpassen
   ============================================================ */

@font-face {
  font-family: 'Fraunces';
  src: url('schriften/fraunces-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('schriften/fraunces-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('schriften/fraunces-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Work Sans';
  src: url('schriften/work-sans-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('schriften/work-sans-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('schriften/work-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
