@charset "utf-8";

/* ==========================================================================
   Noto Sans KR — 프로젝트 동봉 폰트(webapp/cm/font/noto)

   이전에는 Google Fonts 미러(서브셋 woff2 124개)를 unicode-range 로 나눠 썼다.
   지금은 제품 공용 폰트인 cm/font/noto 의 통짜 파일을 쓴다.
   공통 Atlas 테마와 같은 Noto Sans KR 파일·굵기를 사용한다.

   굵기
     이 디렉터리에는 Thin/Light/DemiLight/Regular/Medium/Bold/Black 이 있지만,
     화면에서 실제로 쓰는 구간만 선언한다. 화면 CSS 의 600·650·800 은 CSS 굵기
     매칭 규칙에 따라 Bold(700) 로 떨어진다 — 브라우저가 실제 서체를 고르므로
     가짜 굵게(synthetic bold)가 아니다.

   글자 범위
     이 파일들은 한글 11,172자와 라틴은 모두 담고 있으나 한자(U+4E00-9FFF),
     화살표(→), 원문자(①②), ※, ℃, 「」 는 없다. 해당 글자는 아래 폴백
     ('Malgun Gothic')으로 렌더된다. 서브셋 미러에는 있던 글자라, 문서 본문의
     한자·화살표는 서체가 바뀌어 보인다.

   경로
     url() 은 브라우저가 이 CSS 파일 자신의 URL 기준으로 푼다. 그래서 상대 경로로
     적어 두면 contextRoot(/wtop 등)가 무엇이든 따라간다. 이 파일은
     <ctx>/ui/wAI-Chart/cm/css/fonts/ 에 있고 폰트는 <ctx>/cm/font/noto/ 에 있어
     다섯 단계 위로 올라간다.
   ========================================================================== */

@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../../../../../cm/font/noto/NotoSansKR-Regular.woff2') format('woff2'),
       url('../../../../../cm/font/noto/NotoSansKR-Regular.woff') format('woff'),
       url('../../../../../cm/font/noto/NotoSansKR-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../../../../../cm/font/noto/NotoSansKR-Medium.woff2') format('woff2'),
       url('../../../../../cm/font/noto/NotoSansKR-Medium.woff') format('woff'),
       url('../../../../../cm/font/noto/NotoSansKR-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../../../../../cm/font/noto/NotoSansKR-Bold.woff2') format('woff2'),
       url('../../../../../cm/font/noto/NotoSansKR-Bold.woff') format('woff'),
       url('../../../../../cm/font/noto/NotoSansKR-Bold.otf') format('opentype');
}
