/* Local Fonts Definition */

/* Ivar Text - For Headings */
@font-face {
    font-family: 'Ivar Text';
    src: url('../fonts/IvarText.woff2') format('woff2');
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

/* DM Sans - For Body Text */
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans.woff2') format('woff2');
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}

/* Global Font Assignment */
:root {
    --font-heading: 'Ivar Text', serif;
    --font-body: 'DM Sans', sans-serif;
}

body {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}