/* Fallback auf Systemschriftarten für DSGVO-Compliance */

/* Standard-Schriftarten für das Projekt */
:root {
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', Times, serif;
  --font-mono: 'SFMono-Regular', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

/* Spezifische Schriftart-Zuweisungen */
body {
  font-family: var(--font-sans);
}

code, pre {
  font-family: var(--font-mono);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
}