/ src / common / styles / _fonts.scss
_fonts.scss
 1  @font-face {
 2    font-family: 'Inter';
 3    font-style: normal;
 4    font-weight: 400;
 5    src: url('/fonts/Inter-Regular.woff2') format('woff2'),
 6      url('/fonts/Inter-Regular.woff') format('woff');
 7  }
 8  @font-face {
 9    font-family: 'Inter';
10    font-style: italic;
11    font-weight: 400;
12    src: url('/fonts/Inter-Italic.woff2') format('woff2'),
13      url('/fonts/Inter-Italic.woff') format('woff');
14  }
15  
16  @font-face {
17    font-family: 'Inter';
18    font-style: normal;
19    font-weight: 500;
20    src: url('/fonts/Inter-Medium.woff2') format('woff2'),
21      url('/fonts/Inter-Medium.woff') format('woff');
22  }
23  
24  @font-face {
25    font-family: 'Inter';
26    font-style: normal;
27    font-weight: 700;
28    src: url('/fonts/Inter-Bold.woff2') format('woff2'),
29      url('/fonts/Inter-Bold.woff') format('woff');
30  }
31  @font-face {
32    font-family: 'Inter';
33    font-style: italic;
34    font-weight: 700;
35    src: url('/fonts/Inter-BoldItalic.woff2') format('woff2'),
36      url('/fonts/Inter-BoldItalic.woff') format('woff');
37  }