/* Nunito Sans - DSGVO-konforme lokale Alternative */
/* Optimierter Font-Stack mit system fonts als Fallback */

:root {
    --font-nunito-sans: 
        'Nunito Sans', 
        -apple-system, 
        BlinkMacSystemFont, 
        'Segoe UI', 
        'Roboto', 
        'Oxygen', 
        'Ubuntu', 
        'Cantarell', 
        'Fira Sans', 
        'Droid Sans', 
        'Helvetica Neue', 
        sans-serif;
}

/* Fallback für System-Fonts die Nunito Sans sehr ähnlich sind */
body {
    font-family: var(--font-nunito-sans);
    font-feature-settings: "kern" 1, "liga" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Gewichtungen */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Für bessere Lesbarkeit */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-nunito-sans);
    font-weight: 600;
    line-height: 1.2;
}

/* Buttons und UI-Elemente */
.ww-btn, .ww-input, .ww-select, .ww-textarea {
    font-family: var(--font-nunito-sans);
}

/* Tabellen */
.ww-table {
    font-family: var(--font-nunito-sans);
}