diff --git a/public/fonts/SourceSansPro-ExtraLight.ttf b/public/fonts/SourceSansPro-ExtraLight.ttf new file mode 100644 index 0000000..57b3153 Binary files /dev/null and b/public/fonts/SourceSansPro-ExtraLight.ttf differ diff --git a/public/fonts/SourceSansPro-Light.ttf b/public/fonts/SourceSansPro-Light.ttf new file mode 100644 index 0000000..2aa4aa6 Binary files /dev/null and b/public/fonts/SourceSansPro-Light.ttf differ diff --git a/public/fonts/SourceSansPro-Regular.ttf b/public/fonts/SourceSansPro-Regular.ttf new file mode 100644 index 0000000..5623846 Binary files /dev/null and b/public/fonts/SourceSansPro-Regular.ttf differ diff --git a/src/assets/base.css b/src/assets/base.css index 2275bb5..e17ac51 100644 --- a/src/assets/base.css +++ b/src/assets/base.css @@ -17,3 +17,24 @@ body { background-color: var(--bg-color); font-family: var(--font-family); } + +@font-face { + font-family: "sourcesanspro"; + font-style: "normal"; + font-weight: 400; + src: url(/fonts/SourceSansPro-Regular.ttf) format("truetype"); +} + +@font-face { + font-family: "sourcesanspro"; + font-style: "normal"; + font-weight: 300; + src: url(/fonts/SourceSansPro-Light.ttf) format("truetype"); +} + +@font-face { + font-family: "sourcesanspro"; + font-style: "normal"; + font-weight: 200; + src: url(/fonts/SourceSansPro-ExtraLight.ttf) format("truetype"); +}