/*
 * 나눔스퀘어 웹폰트 (미지원 글자 fallback 가능 버전)
 * - PC에 설치된 나눔스퀘어는 한자 등을 공백으로 처리해 대체 폰트가 적용되지 않음
 * - 별도 family 이름 + Malgun Gothic fallback으로 한글 디자인 유지 + 한자 표시
 */
@font-face {
    font-family: 'Dooit NanumSquare';
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url('/inc/fonts/NanumSquareL.woff2') format('woff2');
}

@font-face {
    font-family: 'Dooit NanumSquare';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('/inc/fonts/NanumSquareR.woff2') format('woff2');
}

@font-face {
    font-family: 'Dooit NanumSquare';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('/inc/fonts/NanumSquareB.woff2') format('woff2');
}

@font-face {
    font-family: 'Dooit NanumSquare';
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    src: url('/inc/fonts/NanumSquareEB.woff2') format('woff2');
}

:root {
    --font-family-base: 'Dooit NanumSquare', 'Malgun Gothic', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
}
