/**
 * Lokale / systemnahe Schrift-Stacks (ohne Google Fonts).
 * Vermeidet Drittland-Requests an fonts.googleapis.com / fonts.gstatic.com.
 */
:root {
    --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-display: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
    --font-condensed: "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif;
}

html, body {
    font-family: var(--font-sans);
}

.font-display,
.font-serif {
    font-family: var(--font-display);
}

/* Tailwind-ähnliche Utility-Fallbacks, falls Font-Namen im Markup stehen */
[style*="Cinzel"],
[style*="Playfair"],
[style*="Bitter"],
[style*="Inter"],
[style*="Barlow"] {
    font-family: var(--font-display);
}
