@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Do+Hyeon'); /* font-family: 'Do Hyeon', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap'); /* font-family: 'Lobster', cursive;  */
/* 
	NotoSans kr

	기본 : font-family: 'Noto Sans KR', sans-serif;	 font-weight:400;
	굵기에 따라 : font-weight만 조정 

	6가지 굵기로 사용가능 100(thin), 300(Light), 400(Regular), 500(Medium), 700(Bold), 900(Black) 

*/

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:100,300,400,500,700,900&display=swap&subset=korean');

/* 
	Gmarket Sans

	기본 : font-family: 'Gmarket Sans', sans-serif;	 font-weight:500;
	굵기에 따라 : font-weight만 조정 

	6가지 굵기로 사용가능 300(Light), 500(Medium), 700(Bold)

*/

/*cdn------------------------------------------------------------------------------------ cdn이 삭제된 것 같음
@font-face {
	font-family: 'Gmarket Sans';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-weight: bold;
}
@font-face {
	font-family: 'Gmarket Sans';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	
}
@font-face {
	font-family: 'Gmarket Sans';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}
*/

/*cdn 작동하지 않을때 주석해제 후 적용------------------------------------------------------------------------------------*/
@font-face {
	font-family: 'Gmarket Sans';
	src: url('./font/GmarketSans/GmarketSansBold.woff2') format('woff2'),
	url('font/GmarketSansBold.woff') format('woff');
	font-weight: 700;
	font-style: bold;
}
@font-face {
	font-family: 'Gmarket Sans';
	src: url('./font/GmarketSans/GmarketSansMedium.woff2') format('woff2'),
	url('font/GmarketSansMedium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Gmarket Sans';
	src: url('./font/GmarketSans/GmarketSansLight.woff2') format('woff2'),
	url('font/GmarketSansLight.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}
