/*
 * Lokale Fonts – DSGVO-konform
 * 
 * ANLEITUNG: Fonts herunterladen von https://gwfh.mranftl.com/fonts
 * Suchbegriff: "Inter" und "Open Sans"
 * Dateien in /wp-content/themes/polsterreinigung-theme/assets/fonts/ ablegen
 * Dann die @font-face Regeln hier einkommentieren.
 *
 * Bis dahin: System-Font-Stack als Fallback (keine externen Anfragen)
 */

/*
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('../fonts/inter-variable.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/open-sans-variable.woff2') format('woff2');
}
*/

/* System-Font-Fallback */
:root {
    --font-heading: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body:    'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
