fonts.scss 977 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* assets/fonts.css */
  2. @font-face {
  3. font-family: 'MiSans';
  4. src: url('../assets/fonts/MiSans-Normal.woff2') format('woff2');
  5. // font-weight: 400;
  6. font-style: normal;
  7. font-display: swap;
  8. }
  9. @font-face {
  10. font-family: 'MiSans-Medium';
  11. src: url('../assets/fonts/MiSans-Medium.woff2') format('woff2');
  12. // font-weight: 500;
  13. font-style: normal;
  14. font-display: swap;
  15. }
  16. @font-face {
  17. font-family: 'MiSans-Demibold';
  18. src: url('../assets/fonts/MiSans-Demibold.woff2') format('woff2');
  19. // font-weight: 600;
  20. font-style: normal;
  21. font-display: swap;
  22. }
  23. @font-face {
  24. font-family: 'MiSans-Semibold';
  25. src: url('../assets/fonts/MiSans-Semibold.woff2') format('woff2');
  26. // font-weight: 700;
  27. font-style: normal;
  28. font-display: swap;
  29. }
  30. @font-face {
  31. font-family: 'MiSans-Bold';
  32. src: url('../assets/fonts/MiSans-Bold.woff2') format('woff2');
  33. // font-weight: 800;
  34. font-style: normal;
  35. font-display: swap;
  36. }
  37. body {
  38. font-family: 'MiSans', sans-serif;
  39. }