@font-face {
    font-family: 'BodeInky';
    src: url('./BodeInky.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BodeInky';
    src: url('./BodeInky.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'NeutralSans';
    src: url('./NeutralSans-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NeutralSans';
    src: url('./NeutralSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'NeutralSans';
    src: url('./NeutralSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'NeutralSans';
    src: url('./NeutralSans-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

:root {
    --font-primary: 'BodeInky', 'Pretendard', sans-serif;
    --font-neutral: 'NeutralSans', sans-serif;
}

body {
    font-family: var(--font-primary);
}

/* NeutralSans is preferred for specific elements if requested, 
   but globally we use BodeInky as primary. */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
}
