/**
 * Satt unter 5 – lokal eingebundene Schriften (Anton + Poppins), ersetzt die vorherige
 * externe Einbindung über fonts.googleapis.com/fonts.gstatic.com.
 *
 * Grund: Beim externen Laden von Google Fonts wird beim Seitenaufruf automatisch die
 * IP-Adresse der Besucher:innen an Google übertragen, noch bevor eine Einwilligung im
 * Cookie-Banner möglich ist. Das lokale Einbinden vermeidet diese Übertragung komplett,
 * ist DSGVO-konform ohne Einwilligung nötig und macht die Seite zusätzlich etwas schneller,
 * da kein externer Verbindungsaufbau zu Google-Servern mehr nötig ist.
 *
 * Dateien liegen unter assets/fonts/*.woff2 (Latin-Subset, passend zu den bisher genutzten
 * Schnitten: Anton 400, Poppins 400/500/600/700/800).
 */
@font-face{
  font-family:'Anton';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('fonts/anton-latin-400.woff2') format('woff2');
}
@font-face{
  font-family:'Poppins';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('fonts/poppins-latin-400.woff2') format('woff2');
}
@font-face{
  font-family:'Poppins';
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url('fonts/poppins-latin-500.woff2') format('woff2');
}
@font-face{
  font-family:'Poppins';
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url('fonts/poppins-latin-600.woff2') format('woff2');
}
@font-face{
  font-family:'Poppins';
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url('fonts/poppins-latin-700.woff2') format('woff2');
}
@font-face{
  font-family:'Poppins';
  font-style:normal;
  font-weight:800;
  font-display:swap;
  src:url('fonts/poppins-latin-800.woff2') format('woff2');
}
