﻿/* steex-font-override.css — 한글 폰트(나눔고딕)만 덮어쓴다.
   Steex 원본 CSS(app.min.css 등)는 수정하지 않는다 — 이 파일을 그 "다음"에 로드할 것.
   나눔고딕 3종(Regular 400 / Bold 700 / ExtraBold 800)을 번들 woff2 로 로드.
   (500·600 등 중간 굵기는 브라우저가 근접 굵기로 매핑: 500→400, 600→700) */
@font-face {
    font-family: 'Nanum Gothic';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('/fonts/NanumGothic.woff2') format('woff2');
}
@font-face {
    font-family: 'Nanum Gothic';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('/fonts/NanumGothicBold.woff2') format('woff2');
}
@font-face {
    font-family: 'Nanum Gothic';
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    src: url('/fonts/NanumGothicExtraBold.woff2') format('woff2');
}

/* Steex 폰트 변수(기본 "Karla")를 통째로 나눔고딕으로 → 본문·제목·배지·모든 텍스트가 나눔.
   아이콘 폰트(Font Awesome 5 Pro / Bootstrap Icons)는 자체 font-family 라 영향 없음. */
:root {
    --tb-body-font-family: 'Nanum Gothic', 'Malgun Gothic', -apple-system, 'Segoe UI', sans-serif;
    --tb-font-sans-serif: 'Nanum Gothic', 'Malgun Gothic', -apple-system, 'Segoe UI', sans-serif;
}
body {
    font-family: 'Nanum Gothic', 'Malgun Gothic', -apple-system, 'Segoe UI', sans-serif;
    word-break: keep-all;
}
