/* assets/css/typography.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --font-main: 'Outfit', sans-serif;
}

body, input, button, select, textarea {
    font-family: var(--font-main);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-color, #333);
}

h1 { font-size: var(--fs-h1); margin-bottom: var(--m-h1); }
h2 { font-size: var(--fs-h2); margin-bottom: var(--m-h2); }
h3 { font-size: var(--fs-h3); margin-bottom: var(--m-h3); }
h4 { font-size: var(--fs-h4); margin-bottom: var(--m-h4); }
h5 { font-size: var(--fs-h5); margin-bottom: var(--m-h5); }
h6 { font-size: var(--fs-h6); margin-bottom: var(--m-h6); }


p {
    line-height: 1.6;
    margin-bottom: var(--m-p);
    font-size: var(--fs-p);
}

