/* Cinzel for headers - hosted via Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400&display=swap');

:root {
    --font-display: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.site-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-tagline {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: lowercase;
}

@media (max-width: 768px) {
    .site-title {
        font-size: 2.5rem;
    }
    
    .site-tagline {
        font-size: 1rem;
    }
}
