/* Archivo, selbst ausgeliefert.
 *
 * Vorher hing die Schrift an Google Fonts. Dabei ruft der Browser jedes
 * Besuchers fonts.googleapis.com und fonts.gstatic.com auf und uebermittelt
 * seine IP-Adresse an Google, ohne dass jemand gefragt wurde. Das Landgericht
 * Muenchen hat darin 2022 eine Persoenlichkeitsrechtsverletzung gesehen
 * (Az. 3 O 17493/20).
 *
 * Nur 400, 700 und 900 — die 500 wurde angefordert, aber nirgends verwendet.
 *
 * Fehlt eine Datei, faellt die Seite still auf die Systemschrift zurueck.
 */

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

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

@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
