fonts.css 675 B

12345678910111213141516171819202122232425262728293031
  1. @font-face {
  2. font-family: 'Nunito Sans';
  3. font-style: normal;
  4. font-weight: 400;
  5. font-display: swap;
  6. src: url('./nunito-sans-regular.woff2') format('woff2');
  7. }
  8. @font-face {
  9. font-family: 'Nunito Sans';
  10. font-style: italic;
  11. font-weight: 400;
  12. font-display: swap;
  13. src: url('./nunito-sans-italic.woff2') format('woff2');
  14. }
  15. @font-face {
  16. font-family: 'Nunito Sans';
  17. font-style: normal;
  18. font-weight: 700;
  19. font-display: swap;
  20. src: url('./nunito-sans-bold.woff2') format('woff2');
  21. }
  22. @font-face {
  23. font-family: 'Nunito Sans';
  24. font-style: italic;
  25. font-weight: 700;
  26. font-display: swap;
  27. src: url('./nunito-sans-bold-italic.woff2') format('woff2');
  28. }