/**
 * GDPR-Compliant Local Fonts
 * Alternative font stack without Google Dependencies
 */

/* Beautiful serif stack for headings - matches Playfair Display feeling */
.heading-serif {
    font-family: 
        "Times New Roman", 
        "Georgia", 
        "Libre Baskerville",
        "Book Antiqua",
        serif;
    font-feature-settings: "liga" 1, "dlig" 1;
}

/* Readable serif stack for content - matches Lora feeling */
.content-serif {
    font-family: 
        "Georgia",
        "Times New Roman",
        "Palatino",
        "Palatino Linotype", 
        serif;
    line-height: 1.6;
}

/* Clean sans-serif alternative */
.content-sans {
    font-family: 
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "Roboto",
        "Helvetica Neue",
        "Arial",
        sans-serif;
    line-height: 1.6;
}

/* Elegant heading alternative */
.heading-elegant {
    font-family: 
        "Palatino",
        "Palatino Linotype",
        "Georgia",
        "Times New Roman",
        serif;
    font-weight: normal;
}