/* typography.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --color-text: #333;
    --base-font: 'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    --title-font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    --max-width: 900px;
    /* for content cards */
    --radius: 12px;
    --gap: 16px;
}


body {
    font-family: var(--base-font);
    color: var(--color-text);
    background: #f7f7f9;
    font-size: 16px;
    line-height: 1.5
}

h1,
h2,
h3 {
    font-family: var(--title-font);
    color: var(--color-text);
    margin-bottom: .6rem
}

h1 {
    font-size: 1.6rem;
    font-weight: 700
}

h2 {
    font-size: 1.25rem;
    font-weight: 600
}

.page-title {
    font-size: 1.25rem;
    margin-bottom: .5rem
}

small {
    font-size: .875rem
}


p {
    margin-bottom: 0.9rem
}

a {
    color: inherit;
    text-decoration: underline
}

.button,
button {
    font-family: inherit
}


/* utility */
.text-center {
    text-align: center
}

.hidden {
    display: none
}