/* =====================================================
   SUIT 폰트 패밀리 정의
   파일 위치: /theme/테마명/css/suit-font.css
   폰트 파일 위치: /theme/테마명/fonts/
===================================================== */

@font-face {
    font-family: 'SUIT';
    font-weight: 200;
    font-style: normal;
    src: url('../fonts/SUIT-ExtraLight.otf') format('opentype');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 300;
    font-style: normal;
    src: url('../fonts/SUIT-Light.otf') format('opentype');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/SUIT-Regular.otf') format('opentype');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 500;
    font-style: normal;
    src: url('../fonts/SUIT-Medium.otf') format('opentype');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 600;
    font-style: normal;
    src: url('../fonts/SUIT-SemiBold.otf') format('opentype');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 700;
    font-style: normal;
    src: url('../fonts/SUIT-Bold.otf') format('opentype');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 800;
    font-style: normal;
    src: url('../fonts/SUIT-ExtraBold.otf') format('opentype');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 900;
    font-style: normal;
    src: url('../fonts/SUIT-Heavy.otf') format('opentype');
}

/* =====================================================
   전역 폰트 적용 — 모든 요소에 SUIT 우선 적용
===================================================== */
*, *::before, *::after {
    font-family: 'SUIT', 'Noto Sans KR', sans-serif !important;
}
