_redaction.scss 594 B

1234567891011121314151617181920212223242526
  1. $location: '~@/assets/fonts/redaction';
  2. $font-name: 'Redaction';
  3. $font-slug: 'redaction';
  4. $font-styles: (
  5. (normal, 400),
  6. (italic, 400),
  7. (normal, 700),
  8. );
  9. @each $style, $weight in $font-styles {
  10. @font-face {
  11. font-family: $font-name;
  12. font-style: $style;
  13. font-display: swap;
  14. font-weight: $weight;
  15. src: url('#{$location}/#{$font-slug}-#{$weight}-#{$style}.woff2') format('woff2');
  16. }
  17. }
  18. @font-face {
  19. font-family: $font-name;
  20. font-style: italic;
  21. font-display: swap;
  22. font-weight: 700;
  23. src: url('#{$location}/#{$font-slug}-400-italic.woff2') format('woff2');
  24. }