/* Typography System */

/* Import Google Fonts - Inter & Plus Jakarta Sans (replaced Outfit for VN support) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@300;400;500;700&display=swap');

:root {
    --font-body: 'Inter', sans-serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;

    --text-xs: 10pt;
    --text-s: 12pt;
    --text-base: 14pt;
    /* Readable for workbook */
    --text-l: 18pt;
    --text-xl: 24pt;
    --text-xxl: 36pt;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 500;
    margin-top: 0;
}

h1 {
    font-size: var(--text-xxl);
    letter-spacing: -0.02em;
}

p {
    font-family: var(--font-body);
    font-size: var(--text-base);
    margin-bottom: var(--space-m);
}

/* Analytical notes style */
.note {
    font-size: var(--text-xs);
    color: #666;
    font-style: italic;
}