/* Selbst gehostete Schriften - ersetzt die Einbindung von Google Fonts.
   Zwei Gruende:
   1. Tempo: keine zusaetzlichen DNS-/TLS-Verbindungen zu fonts.googleapis.com und
      fonts.gstatic.com im kritischen Ladepfad (das bremste den Seitenaufbau).
   2. Datenschutz: die IP-Adresse der Besucher wird nicht mehr an Google uebertragen.
   Erzeugt aus der offiziellen Google-Fonts-Auslieferung, reduziert auf west- und
   mitteleuropaeische Zeichen (Latin, Latin-1, Latin Extended-A), Typografie,
   Waehrungs- und Symbolzeichen. Geprueft: kein auf der Website verwendetes Zeichen
   ging dabei verloren.
   Inter ist eine variable Schrift - eine Datei deckt die Staerken 400 bis 700 ab. */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-var.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/barlow-condensed-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/barlow-condensed-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/barlow-condensed-700.woff2') format('woff2');
}
