/* Lokal gehostete Schriften (DSGVO-Umstellung, Absprache mit Sascha, 27.08.2026) - ersetzt die
   bisherigen Google-Fonts-<link>-Tags, die bei jedem Seitenaufruf eine Verbindung zu Google
   aufgebaut und damit personenbezogene Daten (IP-Adresse) ohne Einwilligung uebertragen haben.
   Die eigentlichen .woff2-Dateien liegen in assets/fonts/ - siehe README-Hinweis dort, welche
   Datei zu welchem Google-Fonts-Paket gehoert, falls mal ein weiterer Schnitt dazukommen soll.

   Poppins (400/500/600) wird sitewide ueber partials/head.php eingebunden. Cormorant Garamond
   (500/600) wird aktuell nur vom (per EXPERTEN_BEREICH_AKTIV abschaltbaren) "Dein Experte"-Teaser
   auf der Startseite gebraucht - steht hier trotzdem mit drin, kostet nichts extra und muss so
   nicht getrennt gepflegt werden. */

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/cormorant-garamond-600.woff2') format('woff2');
}
