/* ---------- typography.css ---------- */
html {
    font-size: clamp(14px, 1vw, 18px);
}

body {
    font-family: var(--font-base);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    margin-top: 0;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}