@CHARSET "UTF-8";

/*
Server의 경우는 Web-Font를 사용하지 않고 설치된 폰트를 사용한다.
(old) Local의 경우는 , font가 설치된 경우는 Local font를 사용하고, 없으면 WebFont를 사용한다.
(new) Local의 경우는 Local Font상관없이 WebFont를 사용한다.(dgs는 예외)
Server에 설치한 Font List
 - Noto Sans CJK TC / black, Light, Medium, Bold, Thin, DemiLight, Regular
 - Noto Sans CJK SC / black, Light, Medium, Bold, Thin, DemiLight, Regular 
 - NanumMyeongjo / ExtraBold, Bold, Regular
 - NanumGothic /  ExtraBold, Light, Bold, Regular
*/

@font-face {
  font-family: 'NanumGothic';
  font-weight: normal;
  src:	local('※'),
  		url(../fonts/NanumGothic-Regular.woff2) format('woff2'),
	    url(../fonts/NanumGothic-Regular.woff) format('woff'), 
	    url(../fonts/NanumGothic-Regular.otf) format('opentype');
}
@font-face {
  font-family: 'NanumGothic';
  font-weight: 600;
  src:	local('※'),
  	 	url(../fonts/NanumGothic-Bold.woff2) format('woff2'),
	    url(../fonts/NanumGothic-Bold.woff) format('woff'), 
	    url(../fonts/NanumGothic-Bold.otf) format('opentype');
}

@font-face {
  font-family: 'NanumMyeongjo';
  font-weight: normal;
  src:	local('※'),
  		url(../fonts/NanumMyeongjo-Regular.woff2) format('woff2'),
	    url(../fonts/NanumMyeongjo-Regular.woff) format('woff'), 
	    url(../fonts/NanumMyeongjo-Regular.otf) format('opentype');
}
@font-face {
  font-family: 'NanumMyeongjo';
  font-weight: 600;
  src:	local('※'),
  	 	url(../fonts/NanumMyeongjo-Bold.woff2) format('woff2'),
	    url(../fonts/NanumMyeongjo-Bold.woff) format('woff'), 
	    url(../fonts/NanumMyeongjo-Bold.otf) format('opentype');
}
@font-face{
font-family:"NanumMyeongjo";
font-weight: 700;
src: local('※'),
    url(../fonts/NanumMyeongjo-ExtraBold.woff) format('woff'),
    url(../fonts/NanumMyeongjo-ExtraBold.woff2) format('woff2'),
    url(../fonts/NanumMyeongjo-ExtraBold.ttf) format('truetype');
}

@font-face{
font-family:"MJ_TeX";
font-weight: normal;
src: url(/static/js.ext/MathJax-2.7.1/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot);
src: local(※),
	url(/static/js.ext/MathJax-2.7.1/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot?#iefix) format('embedded-opentype'),
    url(/static/js.ext/MathJax-2.7.1/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff) format('woff'),
    url(/static/js.ext/MathJax-2.7.1/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf) format('opentype'),
    url(/static/js.ext/MathJax-2.7.1/fonts/HTML-CSS/TeX/svg/MathJax_Main-Regular.svg) format('svg');
}
@font-face{
font-family:"MJ_TeX";
font-style: italic;
src: url(/static/js.ext/MathJax-2.7.1/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot);
src: local(※),
	url(/static/js.ext/MathJax-2.7.1/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot?#iefix) format('embedded-opentype'),
    url(/static/js.ext/MathJax-2.7.1/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff) format('woff'),
    url(/static/js.ext/MathJax-2.7.1/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf) format('opentype'),
    url(/static/js.ext/MathJax-2.7.1/fonts/HTML-CSS/TeX/svg/MathJax_Main-Italic.svg) format('svg');
}


/* font */
html, body {
    font-family: 'NanumGothic', 'Open Sans', sans-serif;
}
