﻿@charset "utf-8";
/* ==========================================================================
   S-Core Dream (에스코어 드림) — 사이트 기본 서체
   - 제작 · 배포 : 에스코어(S-Core)  https://s-core.co.kr/company/font2/
   - 라이선스 : 개인 · 기업 모두 무료, 상업적 사용 및 재배포 가능
                (폰트 파일 자체의 수정 · 판매만 금지. 원문 /fonts/SCoreDream-LICENSE.txt)
   - 외부 CDN 대신 자체 서버(/fonts/)에서 서빙 → 외부 장애 영향 없음 (suit.css 와 동일 정책)

   ※ 굵기 매핑 주의 : S-Core Dream 은 Bold 가 600, ExtraBold 가 700 이다.
     사이트에서 쓰는 300 · 400 · 500 · 600 · 700 만 등록한다
     (Thin 100 · ExtraLight 200 · Heavy 800 · Black 900 은 사용처가 없어 제외).
     @font-face 는 실제로 쓰이는 굵기만 내려받으므로 등록해 두어도 낭비가 아니다.

   ※ 2026-09-02 : 이전 서체(SUIT)보다 굵어 보여 실제 파일을 한 단계씩 얇게 매핑했다.
     지금 : 400→Light / 500→Regular / 600→Medium / 700→Bold
     원래 : 400→Regular / 500→Medium / 600→Bold / 700→ExtraBold  ← 되돌릴 때 이 표대로
   ========================================================================== */

@font-face {
	font-family: 'S-Core Dream';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url('/fonts/SCDreamLight.woff2') format('woff2');
}
@font-face {
	font-family: 'S-Core Dream';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('/fonts/SCDreamLight.woff2') format('woff2');
}
@font-face {
	font-family: 'S-Core Dream';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('/fonts/SCDreamRegular.woff2') format('woff2');
}
@font-face {
	font-family: 'S-Core Dream';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('/fonts/SCDreamMedium.woff2') format('woff2');
}
@font-face {
	font-family: 'S-Core Dream';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('/fonts/SCDreamBold.woff2') format('woff2');
}
