/**
 * Poppins, selbst gehostet statt von fonts.googleapis.com geladen.
 *
 * Grund: Google Fonts direkt eingebunden schickt die IP-Adresse jedes
 * Besuchers beim blossen Seitenaufruf an Google, noch bevor irgendetwas
 * angeklickt wurde — das braucht nach Art. 6 DSGVO / § 25 TDDDG eine
 * vorherige Einwilligung. Mit den Dateien hier auf dem eigenen Server
 * entfaellt der Fremdaufruf komplett, kein Banner noetig.
 *
 * Nur der Zeichensatz "latin" (U+0000-00FF u.ae., deckt auch Umlaute und
 * das Eurozeichen ab) — die Seite ist durchgehend deutschsprachig, die
 * uebrigen Google-Subsets (kyrillisch, griechisch, vietnamesisch, …)
 * braucht hier niemand.
 */

@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: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/poppins-700.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/poppins-700italic.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/poppins-800.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/fonts/poppins-900.woff2") format("woff2");
}
