/* www/css/fonts.css
 *
 * Lokal gehostete "Source Sans 3"-Schriftdateien statt dynamischem Nachladen
 * von fonts.googleapis.com/fonts.gstatic.com - siehe www/fonts/OFL.txt fuer
 * die Lizenz (SIL Open Font License 1.1) und Datenschutz-Hintergrund.
 *
 * Variable Fonts: EIN @font-face pro Stil (normal/italic) deckt ueber die
 * font-weight-Spanne 200-900 alle Schnitte ab, statt einzelner Dateien pro
 * Gewicht.
 */

 @font-face {
    font-family: "Source Sans 3";
    src: url("../fonts/SourceSans3-Variable.woff2") format("woff2-variations");
    font-weight: 200 900;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Source Sans 3";
    src: url("../fonts/SourceSans3-Italic-Variable.woff2") format("woff2-variations");
    font-weight: 200 900;
    font-style: italic;
    font-display: swap;
  }
  