diff --git a/public/assets/fonts/Cantarell-Bold.otf b/public/assets/fonts/Cantarell-Bold.otf new file mode 100644 index 0000000..1a5954b Binary files /dev/null and b/public/assets/fonts/Cantarell-Bold.otf differ diff --git a/public/assets/fonts/Cantarell-ExtraBold.otf b/public/assets/fonts/Cantarell-ExtraBold.otf new file mode 100644 index 0000000..e7b5213 Binary files /dev/null and b/public/assets/fonts/Cantarell-ExtraBold.otf differ diff --git a/public/assets/fonts/Cantarell-Light.otf b/public/assets/fonts/Cantarell-Light.otf new file mode 100644 index 0000000..5f0fa78 Binary files /dev/null and b/public/assets/fonts/Cantarell-Light.otf differ diff --git a/public/assets/fonts/Cantarell-Thin.otf b/public/assets/fonts/Cantarell-Thin.otf new file mode 100644 index 0000000..fe58785 Binary files /dev/null and b/public/assets/fonts/Cantarell-Thin.otf differ diff --git a/styles/global.css b/styles/global.css index 3835ee3..3f97975 100644 --- a/styles/global.css +++ b/styles/global.css @@ -1,10 +1,39 @@ @font-face { font-family: 'Cantarell'; - src: url('/assets/fonts/Cantarell-Regular.otf'); + src: url('/assets/fonts/Cantarell-Regular.otf') format('opentype'); font-weight: normal; font-style: normal; } +@font-face { + font-family: 'Cantarell'; + src: url('/assets/fonts/Cantarell-Thin.otf') format('opentype'); + font-weight: 100; + font-style: normal; +} + +@font-face { + font-family: 'Cantarell'; + src: url('/assets/fonts/Cantarell-Light.otf') format('opentype'); + font-weight: 300; + font-style: normal; +} + +@font-face { + font-family: 'Cantarell'; + src: url('/assets/fonts/Cantarell-Bold.otf') format('opentype'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'Cantarell'; + src: url('/assets/fonts/Cantarell-ExtraBold.otf') format('opentype'); + font-weight: 800; + font-style: normal; +} + + * { box-sizing: border-box; }