/*
 * DSGVO-konforme Schriftarten
 * Verwendet System-Fonts als Alternative zu Google Fonts
 */

/* Inter Alternative - System Sans-Serif Stack */
:root {
  --font-sans:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";

  /* Playfair Display Alternative - Serif Stack */
  --font-serif:
    "Iowan Old Style",
    "Palatino Linotype",
    "URW Palladio L",
    P052,
    serif;
}

/* Font-Familie auf body anwenden */
body {
  font-family: var(--font-sans);
}

/* Serif für Überschriften (wie Playfair Display) */
h1, h2, h3, h4, h5, h6,
.serif-font,
.playfair-font {
  font-family: var(--font-serif);
}
