diff --git a/css/main.css b/css/main.css index fa643db..40456d3 100644 --- a/css/main.css +++ b/css/main.css @@ -12459,6 +12459,15 @@ th.hide-for-touch { Fonts. */ +@font-face { + font-family: "Nanum"; + src: url("../fonts/NanumGothic-Regular.ttf"); +} +@font-face { + font-family: "Nanum Bold"; + font-weight: bold; + src: url("../fonts/NanumGothic-Regular.ttf"); +} /* Clermont'ech Planet @@ -12478,7 +12487,7 @@ body { /* line 17, ../scss/_page.scss */ h2, h1, .title-area strong, h3, h4, h5, h6 { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-family: "Nanum Bold", "Helvetica Neue", Helvetica, Arial, sans-serif; } /* line 21, ../scss/_page.scss */ @@ -12573,7 +12582,7 @@ img { } /* line 110, ../scss/_page.scss */ .top-bar-section li:not(.has-form) a { - font-family: "Neutraface Bold", "Helvetica Neue", Helvetica, Arial, sans-serif; + font-family: "Nanum Bold", "Helvetica Neue", Helvetica, Arial, sans-serif; text-transform: uppercase; font-weight: bold; font-size: 1.0em; @@ -12662,7 +12671,7 @@ footer p { /* line 26, ../scss/_events.scss */ .summary { - font-family: "Neutraface Bold", "Helvetica Neue", Helvetica, Arial, sans-serif; + font-family: "Nanum Bold", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 3em; font-weight: bold; margin-bottom: 0px; @@ -12711,7 +12720,7 @@ footer p { /* line 62, ../scss/_events.scss */ .event-date span.month { font-size: 4em; - font-family: "Neutraface Bold", "Helvetica Neue", Helvetica, Arial, sans-serif; + font-family: "Nanum Bold", "Helvetica Neue", Helvetica, Arial, sans-serif; color: rgba(34, 34, 34, 0.8); text-align: left; line-height: 1em; diff --git a/fonts/NanumGothic-Bold.ttf b/fonts/NanumGothic-Bold.ttf new file mode 100644 index 0000000..a9a40dc Binary files /dev/null and b/fonts/NanumGothic-Bold.ttf differ diff --git a/fonts/NanumGothic-ExtraBold.ttf b/fonts/NanumGothic-ExtraBold.ttf new file mode 100644 index 0000000..25a8b46 Binary files /dev/null and b/fonts/NanumGothic-ExtraBold.ttf differ diff --git a/fonts/NanumGothic-Regular.ttf b/fonts/NanumGothic-Regular.ttf new file mode 100644 index 0000000..6e4dd87 Binary files /dev/null and b/fonts/NanumGothic-Regular.ttf differ diff --git a/scss/_fonts.scss b/scss/_fonts.scss index 76bcd5c..4dc23cb 100644 --- a/scss/_fonts.scss +++ b/scss/_fonts.scss @@ -3,4 +3,16 @@ Fonts. */ + +@font-face { + font-family: "Nanum"; + src: url('../fonts/NanumGothic-Regular.ttf'); +} + +@font-face { + font-family: "Nanum Bold"; + font-weight: bold; + src: url('../fonts/NanumGothic-Regular.ttf'); +} + @import url(http://fonts.googleapis.com/css?family=Raleway:400,200,600); diff --git a/scss/_settings.scss b/scss/_settings.scss index a1afdc8..b678402 100644 --- a/scss/_settings.scss +++ b/scss/_settings.scss @@ -5,7 +5,7 @@ */ -$title_font : "Neutraface Bold", "Helvetica Neue", Helvetica, Arial, sans-serif; +$title_font : "Nanum Bold", "Helvetica Neue", Helvetica, Arial, sans-serif; $default_font : Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif; $text_color : #222; $background_color : white;