@charset "utf-8";

/*
NotoSans(https://www.google.com/get/noto/#/)는
Google과 어도비가 합작해 개발한 웹폰트입니다.
라이센스는 Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html)입니다.

NotoSans 경량화 폰트 사용 다운로드.
https://github.com/UYEONG/NotoSans-subset
*/



/*
프로젝트 : 영화진흥위원회 온라인상영관 통합전산망 구축
작성자 : 강정민
최종 업데이트일자 : 2020.08.04

font-family: 'NotoSansKR'; --- 한글 본고딕 사용.
font-weight: 100; --- Light
font-weight: 300; --- Resular
font-weight: 500; --- Medium
font-weight: 700; --- Bold

기본 굵기 : 300 (Regular)로 지정중.
기본 크기 : 14px.
*/

/* 영문폰트 : 'Noto Sans'
font-family: 'Noto Sans', sans-serif;  */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');


@font-face {
  font-family: 'NotoSansKR';
  src : local(※),
        url('font/NotoSans-Light.eot?#iefix') format('embedded-opentype'),
        url('font/NotoSans-Light.woff') format('woff'),
        url('font/NotoSans-Light.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;

}
@font-face {
  font-family: 'NotoSansKR';
  src : local(※),
        url('font/NotoSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('font/NotoSans-Regular.woff') format('woff'),
        url('font/NotoSans-Regular.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'NotoSansKR';
  src : local(※),
        url('font/NotoSans-Medium.eot?#iefix') format('embedded-opentype'),
        url('font/NotoSans-Medium.woff') format('woff'),
        url('font/NotoSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'NotoSansKR';
  src : local(※),
        url('font/NotoSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('font/NotoSans-Bold.woff') format('woff'),
        url('font/NotoSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}


*{font-family: 'NotoSansKR','NanumGothic','나눔고딕','NanumBarunGothic','나눔바른고딕','Malgun Gothic','맑은고딕',sans-serif;font-weight: 300;font-size:14px;}

