/* ZEMA Maison — Schriften, lokal ausgeliefert.
 *
 * Der Entwurf lud Poppins und Roboto per <link> von fonts.googleapis.com.
 * Damit geht bei jedem Seitenaufruf die IP des Besuchers an Google — in
 * Deutschland ein bekanntes Abmahnrisiko (LG München, Az. 3 O 17493/20).
 *
 * NOCH ZU TUN: die WOFF2-Dateien nach assets/schrift/ legen. Bis dahin
 * greifen die Rückfallstapel unten, die Seite bleibt also benutzbar.
 *
 *   npx google-font-installer download Poppins -d assets/schrift
 *   npx google-font-installer download Roboto  -d assets/schrift
 *
 * Gebraucht werden: Poppins 300/400/500, Roboto 300/400.
 * Nach dem Ablegen die auskommentierten Blöcke aktivieren.
 *
 * Nebeneffekt, sobald das steht: die Seite lädt nichts mehr von fremden
 * Servern. Solange keine Karte, kein Video und kein Analytics dazukommt,
 * braucht sie damit auch keinen Cookie-Banner. */

/*
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../schrift/poppins-300.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../schrift/poppins-400.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../schrift/poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../schrift/roboto-300.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../schrift/roboto-400.woff2") format("woff2");
}
*/

/* Keine Variablen nötig: global.css spricht die Familien „Poppins“ und
   „Roboto“ namentlich an (Zeile 31 und 43). Sobald die @font-face-Blöcke
   oben aktiv sind, greifen sie dort automatisch. Bis dahin fällt global.css
   auf die dort bereits hinterlegten Systemschriften zurück. */
