/* Typography - Fraunces (headings) + Outfit (UI) */

:root {
    --font-heading: 'Fraunces', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

p {
    font-weight: 400;
    line-height: 1.7;
}

.logo a {
    font-family: var(--font-body);
    font-weight: 600;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.btn {
    font-family: var(--font-body);
    font-weight: 600;
}

.project-content h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.project-subheader {
    font-family: var(--font-body);
    font-weight: 600;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.footer-content {
    font-family: var(--font-body);
    font-weight: 400;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.35rem;
    }
}
