/* Local Fonts Definition */

/* Vollkorn - For Headings */
@font-face {
    font-family: 'Vollkorn';
    src: url('../fonts/Vollkorn.woff2') format('woff2');
    font-weight: 400 900; /* Supports variable weight if applicable, or just standard */
    font-style: normal;
    font-display: swap;
}

/* OpenSan - For Body Text (assuming Open Sans) */
@font-face {
    font-family: 'OpenSan';
    src: url('../fonts/OpenSan.woff2') format('woff2');
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}

/* Global Font Assignment */
:root {
    --font-heading: 'Vollkorn', serif;
    --font-body: 'OpenSan', sans-serif;
}

body {
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}
