Skip to content

Commit 2a4ba62

Browse files
committed
fix(fonts): bold fonts were missing
1 parent 44454d5 commit 2a4ba62

7 files changed

Lines changed: 28 additions & 4 deletions
22.5 KB
Binary file not shown.
File renamed without changes.

public/fonts/inter-latin-700.woff2

23.8 KB
Binary file not shown.
18.4 KB
Binary file not shown.
File renamed without changes.

src/styles.scss

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,47 @@
77
font-family: 'Montserrat';
88
font-style: normal;
99
font-weight: 400;
10-
src: url('/fonts/montserrat-regular.woff2') format('woff2');
10+
src: url('/fonts/montserrat-latin-regular.woff2') format('woff2');
11+
}
12+
13+
@font-face {
14+
font-display: swap;
15+
font-family: 'Montserrat';
16+
font-style: normal;
17+
font-weight: 700;
18+
src: url('/fonts/montserrat-latin-700.woff2') format('woff2');
1119
}
1220

1321
@font-face {
1422
font-display: swap;
1523
font-family: 'Fira Code';
1624
font-style: normal;
1725
font-weight: 400;
18-
src: url('/fonts/fira-code-regular.woff2') format('woff2');
26+
src: url('/fonts/fira-code-latin-regular.woff2') format('woff2');
27+
}
28+
29+
@font-face {
30+
font-display: swap;
31+
font-family: 'Fira Code';
32+
font-style: normal;
33+
font-weight: 700;
34+
src: url('/fonts/fira-code-latin-700.woff2') format('woff2');
1935
}
2036

2137
@font-face {
2238
font-display: swap;
2339
font-family: 'Inter';
2440
font-style: normal;
25-
font-weight: 400;
26-
src: url('/fonts/inter-regular.woff2') format('woff2');
41+
font-weight: 100;
42+
src: url('/fonts/inter-latin-regular.woff2') format('woff2');
43+
}
44+
45+
@font-face {
46+
font-display: swap;
47+
font-family: 'Inter';
48+
font-style: normal;
49+
font-weight: 900;
50+
src: url('/fonts/inter-latin-700.woff2') format('woff2');
2751
}
2852

2953
html {

0 commit comments

Comments
 (0)