/* 구글 웹폰트 인클루드 */

@import url('https://fonts.googleapis.com/css2?family=Do+Hyeon&display=swap');
/* 
#폰트명	두현
#출처	https://fonts.google.com/specimen/Do+Hyeon?subset=korean 
#로딩방법(1)
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Do+Hyeon&display=swap" rel="stylesheet">
#로딩방법(2)
<style>
@import url('https://fonts.googleapis.com/css2?family=Do+Hyeon&display=swap');
</style>
#사용법
font-family: 'Do Hyeon', sans-serif;
*/


@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@300;400&display=swap'); */
/* 
#폰트명	Noto Serif KR
#출처	https://fonts.google.com/specimen/Noto+Serif+KR?subset=korean
#로딩방법(1)
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+KR&display=swap" rel="stylesheet">
#로딩방법(2)
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR&display=swap');
</style>
#사용법	
font-family: 'Noto Serif KR', serif;
*/




@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');
/* 
#폰트명	Noto Serif KR
#출처	https://fonts.google.com/specimen/Noto+Sans+KR?subset=korean
#로딩방법(1)
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap" rel="stylesheet">
#로딩방법(2)
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');
</style>

#사용법
font-family: 'Noto Sans KR', Roboto, sans-serif;
*/


@import url('https://fonts.googleapis.com/css2?family=Poor+Story&display=swap');
/* 
#폰트명		Poor Story
#출처	https://fonts.google.com/specimen/Poor+Story
#로딩방법(1)
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poor+Story&display=swap" rel="stylesheet">
#로딩방법(2)
<style>
@import url('https://fonts.googleapis.com/css2?family=Poor+Story&display=swap');
</style>
#사용법
font-family: 'Poor Story', cursive; ==> 문제는 이렇게하면 폰트 없을 때 궁서체가 됨
font-family: 'Poor Story', Roboto, sans-serif;
*/



/*
body {
	font-family: 'Noto Serif KR', serif !important;
}
*/