/**
 * Lokale Fonts für finrechner.at
 * DSGVO-konform: Keine externen Requests zu Google
 * 
 * System-Font-Stack der modernen Browsern entspricht
 * Sieht auf allen Geräten nativ und professionell aus
 */

/* 
 * System UI Font Stack
 * Verwendet die native System-Schriftart des jeweiligen Betriebssystems:
 * - macOS/iOS: San Francisco (system-ui, -apple-system)
 * - Windows: Segoe UI
 * - Android: Roboto
 * - Linux: Ubuntu, Cantarell, oder andere
 */

:root {
    /* 
     * Primärer Font-Stack (ersetzt Source Sans 3)
     * system-ui nutzt automatisch die beste verfügbare Systemschrift
     */
    --font-system: system-ui, -apple-system, BlinkMacSystemFont, 
                   "Segoe UI", Roboto, "Helvetica Neue", 
                   Ubuntu, Cantarell, "Noto Sans", 
                   Arial, sans-serif;
    
    /* Monospace für Code/Zahlen */
    --font-mono: ui-monospace, "SF Mono", "Cascadia Code", 
                 "Segoe UI Mono", Consolas, "Liberation Mono",
                 Menlo, Monaco, monospace;
}

/* 
 * Optional: Falls du später doch Webfonts lokal hosten möchtest,
 * kannst du hier @font-face Regeln hinzufügen.
 * 
 * Anleitung:
 * 1. WOFF2-Dateien in /fonts/ Ordner legen
 * 2. @font-face Regeln unten einkommentieren
 * 3. In style.css die Font-Familie anpassen
 */

/*
@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/SourceSans3-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/SourceSans3-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/SourceSans3-Bold.woff2') format('woff2');
}
*/
