/* fonts.css – lokal eingebettet, kein Google-Aufruf (DSGVO-konform) */

/* Syne-Ersatz: geometrische Sans-Serif aus System-Fonts */
:root {
  --font-display: "Syne", "Futura", "Century Gothic", "Trebuchet MS", Arial, sans-serif;
  --font-mono:    "DM Mono", "Cascadia Code", "Consolas", "Courier New", monospace;
}

/* Falls Syne lokal installiert ist, wird es verwendet.
   Ansonsten fällt der Browser auf die nächste Option zurück.
   Für Produktion: Schriften von fonts.google.com herunterladen
   und in /public/fonts/ ablegen, dann hier referenzieren:

@font-face {
  font-family: "Syne";
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/Syne-VariableFont_wght.woff2") format("woff2");
}

@font-face {
  font-family: "DM Mono";
  font-weight: 300 400;
  font-display: swap;
  src: url("/fonts/DMMono-Regular.woff2") format("woff2");
}
*/
