/*
 * NanumSquareNeo
 * Copyright NAVER, 2022. 공개 웹폰트 (비상업적 무료 배포)
 * 공식 배포 URL: https://hangeul.naver.com/font
 * CDN: https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/
 *
 * 파일명 규칙:
 *   aLt = Light (300)
 *   bRg = Regular (400)
 *   cBd = Bold (700)
 *   dEb = ExtraBold (800)
 *   eHv = Heavy (900)
 *
 * ryan1 관례: font-H / font-B / font-R 세 논리 이름으로 매핑
 *   (rb.theme1 Pretendard 와 동일 규칙 → 기존 class="font-B" 등 마크업 호환)
 */

/* --- 논리 이름 매핑 (필수) ---
 * 참고: font-H 는 원래 "Heavy" 의 H 이지만, 시각적 밸런스를 위해 ExtraBold(800, dEb.woff2) 로 매핑.
 * 900(eHv) 이 필요한 경우 font-family:'NanumSquareNeo'; font-weight:900 별칭 사용. */
@font-face {
	font-family: 'font-H';
	font-weight: 800;
	font-display: swap;
	src: url('./woff2/NanumSquareNeoTTF-dEb.woff2') format('woff2');
}

@font-face {
	font-family: 'font-B';
	font-weight: 700;
	font-display: swap;
	src: url('./woff2/NanumSquareNeoTTF-cBd.woff2') format('woff2');
}

@font-face {
	font-family: 'font-R';
	font-weight: 400;
	font-display: swap;
	src: url('./woff2/NanumSquareNeoTTF-bRg.woff2') format('woff2');
}

/* --- 'NanumSquareNeo' 직접 이름도 쓸 수 있게 별칭 제공 (선택) --- */
@font-face {
	font-family: 'NanumSquareNeo';
	font-weight: 300;
	font-display: swap;
	src: url('./woff2/NanumSquareNeoTTF-aLt.woff2') format('woff2');
}

@font-face {
	font-family: 'NanumSquareNeo';
	font-weight: 400;
	font-display: swap;
	src: url('./woff2/NanumSquareNeoTTF-bRg.woff2') format('woff2');
}

@font-face {
	font-family: 'NanumSquareNeo';
	font-weight: 700;
	font-display: swap;
	src: url('./woff2/NanumSquareNeoTTF-cBd.woff2') format('woff2');
}

@font-face {
	font-family: 'NanumSquareNeo';
	font-weight: 800;
	font-display: swap;
	src: url('./woff2/NanumSquareNeoTTF-dEb.woff2') format('woff2');
}

@font-face {
	font-family: 'NanumSquareNeo';
	font-weight: 900;
	font-display: swap;
	src: url('./woff2/NanumSquareNeoTTF-eHv.woff2') format('woff2');
}
