/* Hankook font family — maps physical .ttf files to logical font-family names */

@font-face {
    font-family: 'HankookRegular';
    src: url('../fonts/HankookTTFRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HankookRegular';
    src: url('../fonts/HankookTTFRegularOblique.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'HankookBold';
    src: url('../fonts/HankookTTFBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HankookBold';
    src: url('../fonts/HankookTTFBoldOblique.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/* Body text: HankookRegular */
body {
    font-family: 'HankookRegular', sans-serif;
}

/* Headings: HankookBold */
h1, h2, h3, h4, h5, h6 {
    font-family: 'HankookBold', sans-serif;
}
