From 124052fa8f9d9b37d10085ec07c8a36a55cdccdc Mon Sep 17 00:00:00 2001 From: Alexander Avery Date: Sun, 20 Mar 2022 16:50:48 -0400 Subject: [PATCH] altered order of font imports --- assets/sass/fonts.scss | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/assets/sass/fonts.scss b/assets/sass/fonts.scss index 8b2ae55..928985a 100644 --- a/assets/sass/fonts.scss +++ b/assets/sass/fonts.scss @@ -4,21 +4,22 @@ https://fonts.google.com/specimen/Source+Sans+Pro?query=Source+Sans+Pro */ @font-face { font-family: 'Source Sans Pro'; - src: url('/fonts/SourceSansPro-Regular.ttf') format('truetype'); - font-weight: normal; + src: url('/fonts/SourceSansPro-Light.ttf') format('truetype'); + font-weight: light; font-style: normal; } @font-face { font-family: 'Source Sans Pro'; - src: url('/fonts/SourceSansPro-Bold.ttf') format('truetype'); - font-weight: bold; + src: url('/fonts/SourceSansPro-Regular.ttf') format('truetype'); + font-weight: normal; font-style: normal; } @font-face { font-family: 'Source Sans Pro'; - src: url('/fonts/SourceSansPro-Light.ttf') format('truetype'); - font-weight: light; + src: url('/fonts/SourceSansPro-Bold.ttf') format('truetype'); + font-weight: bold; font-style: normal; } +