/* =========================================
   Custom Fonts
   - Base font: PretendardGOV
   - English/Numbers: Lato
========================================= */

/* Lato (English and Numbers) */
@font-face {
    font-family: 'Lato';
    font-weight: 300;
    font-style: normal;
    src: url('../css/fonts/Lato-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Lato';
    font-weight: 400;
    font-style: normal;
    src: url('../css/fonts/Lato-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Lato';
    font-weight: 700;
    font-style: normal;
    src: url('../css/fonts/Lato-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Lato';
    font-weight: 900;
    font-style: normal;
    src: url('../css/fonts/Lato-Black.ttf') format('truetype');
}

/* PretendardGOV (Korean Base) */
@font-face {
    font-family: 'PretendardGOV';
    font-weight: 400;
    font-style: normal;
    src: url('../css/fonts/PretendardGOV-Regular.subset.woff2') format('woff2'),
         url('../css/fonts/PretendardGOV-Regular.subset.woff') format('woff');
}

@font-face {
    font-family: 'PretendardGOV';
    font-weight: 500;
    font-style: normal;
    src: url('../css/fonts/PretendardGOV-Medium.subset.woff2') format('woff2'),
         url('../css/fonts/PretendardGOV-Medium.subset.woff') format('woff');
}

@font-face {
    font-family: 'PretendardGOV';
    font-weight: 700;
    font-style: normal;
    src: url('../css/fonts/PretendardGOV-Bold.subset.woff2') format('woff2'),
         url('../css/fonts/PretendardGOV-Bold.subset.woff') format('woff');
}

/* 
   Apply Lato to English and numbers first, 
   then fallback to PretendardGOV for Korean text.
*/
body,
input,
select,
textarea,
button,
h1, h2, h3, h4, h5, h6,
p, span, div, a {
    font-family: 'Lato', 'PretendardGOV', sans-serif !important;
}
