@remotion/google-fonts 4.0.329 → 4.0.331
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/LibertinusSans.d.ts +72 -0
- package/dist/cjs/LibertinusSans.js +67 -0
- package/dist/cjs/LibertinusSerif.d.ts +106 -0
- package/dist/cjs/LibertinusSerif.js +102 -0
- package/dist/cjs/MozillaHeadline.d.ts +58 -0
- package/dist/cjs/MozillaHeadline.js +49 -0
- package/dist/cjs/MozillaText.d.ts +58 -0
- package/dist/cjs/MozillaText.js +49 -0
- package/dist/cjs/NataSans.d.ts +100 -0
- package/dist/cjs/NataSans.js +91 -0
- package/dist/cjs/SpecialGothic.d.ts +13 -1
- package/dist/cjs/SpecialGothic.js +16 -4
- package/dist/cjs/index.js +25 -0
- package/dist/esm/LibertinusSans.mjs +175 -0
- package/dist/esm/LibertinusSerif.mjs +210 -0
- package/dist/esm/MozillaHeadline.mjs +157 -0
- package/dist/esm/MozillaText.mjs +157 -0
- package/dist/esm/NataSans.mjs +199 -0
- package/dist/esm/SpecialGothic.mjs +16 -4
- package/dist/esm/index.mjs +25 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +17 -2
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
// src/base.ts
|
|
2
|
+
import { continueRender, delayRender } from "remotion";
|
|
3
|
+
import { NoReactInternals } from "remotion/no-react";
|
|
4
|
+
var loadedFonts = {};
|
|
5
|
+
var withResolvers = function() {
|
|
6
|
+
let resolve;
|
|
7
|
+
let reject;
|
|
8
|
+
const promise = new Promise((res, rej) => {
|
|
9
|
+
resolve = res;
|
|
10
|
+
reject = rej;
|
|
11
|
+
});
|
|
12
|
+
return { promise, resolve, reject };
|
|
13
|
+
};
|
|
14
|
+
var loadFontFaceOrTimeoutAfter20Seconds = (fontFace) => {
|
|
15
|
+
const timeout = withResolvers();
|
|
16
|
+
const int = setTimeout(() => {
|
|
17
|
+
timeout.reject(new Error("Timed out loading Google Font"));
|
|
18
|
+
}, 18000);
|
|
19
|
+
return Promise.race([
|
|
20
|
+
fontFace.load().then(() => {
|
|
21
|
+
clearTimeout(int);
|
|
22
|
+
}),
|
|
23
|
+
timeout.promise
|
|
24
|
+
]);
|
|
25
|
+
};
|
|
26
|
+
var loadFonts = (meta, style, options) => {
|
|
27
|
+
const weightsAndSubsetsAreSpecified = Array.isArray(options?.weights) && Array.isArray(options?.subsets) && options.weights.length > 0 && options.subsets.length > 0;
|
|
28
|
+
if (NoReactInternals.ENABLE_V5_BREAKING_CHANGES && !weightsAndSubsetsAreSpecified) {
|
|
29
|
+
throw new Error("Loading Google Fonts without specifying weights and subsets is not supported in Remotion v5. Please specify the weights and subsets you need.");
|
|
30
|
+
}
|
|
31
|
+
const promises = [];
|
|
32
|
+
const styles = style ? [style] : Object.keys(meta.fonts);
|
|
33
|
+
let fontsLoaded = 0;
|
|
34
|
+
for (const style2 of styles) {
|
|
35
|
+
if (typeof FontFace === "undefined") {
|
|
36
|
+
continue;
|
|
37
|
+
}
|
|
38
|
+
if (!meta.fonts[style2]) {
|
|
39
|
+
throw new Error(`The font ${meta.fontFamily} does not have a style ${style2}`);
|
|
40
|
+
}
|
|
41
|
+
const weights = options?.weights ?? Object.keys(meta.fonts[style2]);
|
|
42
|
+
for (const weight of weights) {
|
|
43
|
+
if (!meta.fonts[style2][weight]) {
|
|
44
|
+
throw new Error(`The font ${meta.fontFamily} does not have a weight ${weight} in style ${style2}`);
|
|
45
|
+
}
|
|
46
|
+
const subsets = options?.subsets ?? Object.keys(meta.fonts[style2][weight]);
|
|
47
|
+
for (const subset of subsets) {
|
|
48
|
+
let font = meta.fonts[style2]?.[weight]?.[subset];
|
|
49
|
+
if (!font) {
|
|
50
|
+
throw new Error(`weight: ${weight} subset: ${subset} is not available for '${meta.fontFamily}'`);
|
|
51
|
+
}
|
|
52
|
+
let fontKey = `${meta.fontFamily}-${style2}-${weight}-${subset}`;
|
|
53
|
+
const previousPromise = loadedFonts[fontKey];
|
|
54
|
+
if (previousPromise) {
|
|
55
|
+
promises.push(previousPromise);
|
|
56
|
+
continue;
|
|
57
|
+
}
|
|
58
|
+
const baseLabel = `Fetching ${meta.fontFamily} font ${JSON.stringify({
|
|
59
|
+
style: style2,
|
|
60
|
+
weight,
|
|
61
|
+
subset
|
|
62
|
+
})}`;
|
|
63
|
+
const label = weightsAndSubsetsAreSpecified ? baseLabel : `${baseLabel}. This might be caused by loading too many font variations. Read more: https://www.remotion.dev/docs/troubleshooting/font-loading-errors#render-timeout-when-loading-google-fonts`;
|
|
64
|
+
const handle = delayRender(label, { timeoutInMilliseconds: 60000 });
|
|
65
|
+
fontsLoaded++;
|
|
66
|
+
const fontFace = new FontFace(meta.fontFamily, `url(${font}) format('woff2')`, {
|
|
67
|
+
weight,
|
|
68
|
+
style: style2,
|
|
69
|
+
unicodeRange: meta.unicodeRanges[subset]
|
|
70
|
+
});
|
|
71
|
+
let attempts = 2;
|
|
72
|
+
const tryToLoad = () => {
|
|
73
|
+
if (fontFace.status === "loaded") {
|
|
74
|
+
continueRender(handle);
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
const promise = loadFontFaceOrTimeoutAfter20Seconds(fontFace).then(() => {
|
|
78
|
+
(options?.document ?? document).fonts.add(fontFace);
|
|
79
|
+
continueRender(handle);
|
|
80
|
+
}).catch((err) => {
|
|
81
|
+
loadedFonts[fontKey] = undefined;
|
|
82
|
+
if (attempts === 0) {
|
|
83
|
+
throw err;
|
|
84
|
+
} else {
|
|
85
|
+
attempts--;
|
|
86
|
+
tryToLoad();
|
|
87
|
+
}
|
|
88
|
+
});
|
|
89
|
+
loadedFonts[fontKey] = promise;
|
|
90
|
+
promises.push(promise);
|
|
91
|
+
};
|
|
92
|
+
tryToLoad();
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
if (fontsLoaded > 20) {
|
|
96
|
+
console.warn(`Made ${fontsLoaded} network requests to load fonts for ${meta.fontFamily}. Consider loading fewer weights and subsets by passing options to loadFont(). Disable this warning by passing "ignoreTooManyRequestsWarning: true" to "options".`);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
return {
|
|
100
|
+
fontFamily: meta.fontFamily,
|
|
101
|
+
fonts: meta.fonts,
|
|
102
|
+
unicodeRanges: meta.unicodeRanges,
|
|
103
|
+
waitUntilDone: () => Promise.all(promises).then(() => {
|
|
104
|
+
return;
|
|
105
|
+
})
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
// src/NataSans.ts
|
|
110
|
+
var getInfo = () => ({
|
|
111
|
+
fontFamily: "Nata Sans",
|
|
112
|
+
importName: "NataSans",
|
|
113
|
+
version: "v1",
|
|
114
|
+
url: "https://fonts.googleapis.com/css2?family=Nata+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900",
|
|
115
|
+
unicodeRanges: {
|
|
116
|
+
"cyrillic-ext": "U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F",
|
|
117
|
+
cyrillic: "U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116",
|
|
118
|
+
vietnamese: "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB",
|
|
119
|
+
"latin-ext": "U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF",
|
|
120
|
+
latin: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"
|
|
121
|
+
},
|
|
122
|
+
fonts: {
|
|
123
|
+
normal: {
|
|
124
|
+
"100": {
|
|
125
|
+
"cyrillic-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-ws4avEU.woff2",
|
|
126
|
+
cyrillic: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-y84avEU.woff2",
|
|
127
|
+
vietnamese: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wM4avEU.woff2",
|
|
128
|
+
"latin-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wc4avEU.woff2",
|
|
129
|
+
latin: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-z84a.woff2"
|
|
130
|
+
},
|
|
131
|
+
"200": {
|
|
132
|
+
"cyrillic-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-ws4avEU.woff2",
|
|
133
|
+
cyrillic: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-y84avEU.woff2",
|
|
134
|
+
vietnamese: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wM4avEU.woff2",
|
|
135
|
+
"latin-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wc4avEU.woff2",
|
|
136
|
+
latin: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-z84a.woff2"
|
|
137
|
+
},
|
|
138
|
+
"300": {
|
|
139
|
+
"cyrillic-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-ws4avEU.woff2",
|
|
140
|
+
cyrillic: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-y84avEU.woff2",
|
|
141
|
+
vietnamese: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wM4avEU.woff2",
|
|
142
|
+
"latin-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wc4avEU.woff2",
|
|
143
|
+
latin: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-z84a.woff2"
|
|
144
|
+
},
|
|
145
|
+
"400": {
|
|
146
|
+
"cyrillic-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-ws4avEU.woff2",
|
|
147
|
+
cyrillic: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-y84avEU.woff2",
|
|
148
|
+
vietnamese: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wM4avEU.woff2",
|
|
149
|
+
"latin-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wc4avEU.woff2",
|
|
150
|
+
latin: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-z84a.woff2"
|
|
151
|
+
},
|
|
152
|
+
"500": {
|
|
153
|
+
"cyrillic-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-ws4avEU.woff2",
|
|
154
|
+
cyrillic: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-y84avEU.woff2",
|
|
155
|
+
vietnamese: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wM4avEU.woff2",
|
|
156
|
+
"latin-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wc4avEU.woff2",
|
|
157
|
+
latin: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-z84a.woff2"
|
|
158
|
+
},
|
|
159
|
+
"600": {
|
|
160
|
+
"cyrillic-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-ws4avEU.woff2",
|
|
161
|
+
cyrillic: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-y84avEU.woff2",
|
|
162
|
+
vietnamese: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wM4avEU.woff2",
|
|
163
|
+
"latin-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wc4avEU.woff2",
|
|
164
|
+
latin: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-z84a.woff2"
|
|
165
|
+
},
|
|
166
|
+
"700": {
|
|
167
|
+
"cyrillic-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-ws4avEU.woff2",
|
|
168
|
+
cyrillic: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-y84avEU.woff2",
|
|
169
|
+
vietnamese: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wM4avEU.woff2",
|
|
170
|
+
"latin-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wc4avEU.woff2",
|
|
171
|
+
latin: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-z84a.woff2"
|
|
172
|
+
},
|
|
173
|
+
"800": {
|
|
174
|
+
"cyrillic-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-ws4avEU.woff2",
|
|
175
|
+
cyrillic: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-y84avEU.woff2",
|
|
176
|
+
vietnamese: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wM4avEU.woff2",
|
|
177
|
+
"latin-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wc4avEU.woff2",
|
|
178
|
+
latin: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-z84a.woff2"
|
|
179
|
+
},
|
|
180
|
+
"900": {
|
|
181
|
+
"cyrillic-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-ws4avEU.woff2",
|
|
182
|
+
cyrillic: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-y84avEU.woff2",
|
|
183
|
+
vietnamese: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wM4avEU.woff2",
|
|
184
|
+
"latin-ext": "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-wc4avEU.woff2",
|
|
185
|
+
latin: "https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_t-z84a.woff2"
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
subsets: ["cyrillic", "cyrillic-ext", "latin", "latin-ext", "vietnamese"]
|
|
190
|
+
});
|
|
191
|
+
var fontFamily = "Nata Sans";
|
|
192
|
+
var loadFont = (style, options) => {
|
|
193
|
+
return loadFonts(getInfo(), style, options);
|
|
194
|
+
};
|
|
195
|
+
export {
|
|
196
|
+
loadFont,
|
|
197
|
+
getInfo,
|
|
198
|
+
fontFamily
|
|
199
|
+
};
|
|
@@ -110,8 +110,8 @@ var loadFonts = (meta, style, options) => {
|
|
|
110
110
|
var getInfo = () => ({
|
|
111
111
|
fontFamily: "Special Gothic",
|
|
112
112
|
importName: "SpecialGothic",
|
|
113
|
-
version: "
|
|
114
|
-
url: "https://fonts.googleapis.com/css2?family=Special+Gothic:ital,wght@0,400",
|
|
113
|
+
version: "v3",
|
|
114
|
+
url: "https://fonts.googleapis.com/css2?family=Special+Gothic:ital,wght@0,400;0,500;0,600;0,700",
|
|
115
115
|
unicodeRanges: {
|
|
116
116
|
"latin-ext": "U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF",
|
|
117
117
|
latin: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"
|
|
@@ -119,8 +119,20 @@ var getInfo = () => ({
|
|
|
119
119
|
fonts: {
|
|
120
120
|
normal: {
|
|
121
121
|
"400": {
|
|
122
|
-
"latin-ext": "https://fonts.gstatic.com/s/specialgothic/
|
|
123
|
-
latin: "https://fonts.gstatic.com/s/specialgothic/
|
|
122
|
+
"latin-ext": "https://fonts.gstatic.com/s/specialgothic/v3/1q2SY5WcG0Fg_v0fHc8BvIZ2537qdm1JEt9N3w2mJykkEFoQfr4.woff2",
|
|
123
|
+
latin: "https://fonts.gstatic.com/s/specialgothic/v3/1q2SY5WcG0Fg_v0fHc8BvIZ2537qdm1JEt9N3w2mJykkHloQ.woff2"
|
|
124
|
+
},
|
|
125
|
+
"500": {
|
|
126
|
+
"latin-ext": "https://fonts.gstatic.com/s/specialgothic/v3/1q2SY5WcG0Fg_v0fHc8BvIZ2537qdm1JEt9N3w2mJykkEFoQfr4.woff2",
|
|
127
|
+
latin: "https://fonts.gstatic.com/s/specialgothic/v3/1q2SY5WcG0Fg_v0fHc8BvIZ2537qdm1JEt9N3w2mJykkHloQ.woff2"
|
|
128
|
+
},
|
|
129
|
+
"600": {
|
|
130
|
+
"latin-ext": "https://fonts.gstatic.com/s/specialgothic/v3/1q2SY5WcG0Fg_v0fHc8BvIZ2537qdm1JEt9N3w2mJykkEFoQfr4.woff2",
|
|
131
|
+
latin: "https://fonts.gstatic.com/s/specialgothic/v3/1q2SY5WcG0Fg_v0fHc8BvIZ2537qdm1JEt9N3w2mJykkHloQ.woff2"
|
|
132
|
+
},
|
|
133
|
+
"700": {
|
|
134
|
+
"latin-ext": "https://fonts.gstatic.com/s/specialgothic/v3/1q2SY5WcG0Fg_v0fHc8BvIZ2537qdm1JEt9N3w2mJykkEFoQfr4.woff2",
|
|
135
|
+
latin: "https://fonts.gstatic.com/s/specialgothic/v3/1q2SY5WcG0Fg_v0fHc8BvIZ2537qdm1JEt9N3w2mJykkHloQ.woff2"
|
|
124
136
|
}
|
|
125
137
|
}
|
|
126
138
|
},
|
package/dist/esm/index.mjs
CHANGED
|
@@ -3989,6 +3989,16 @@ export const getAvailableFonts = () => [
|
|
|
3989
3989
|
importName: 'LibertinusMono',
|
|
3990
3990
|
load: () => import('./LibertinusMono.mjs'),
|
|
3991
3991
|
},
|
|
3992
|
+
{
|
|
3993
|
+
fontFamily: 'Libertinus Sans',
|
|
3994
|
+
importName: 'LibertinusSans',
|
|
3995
|
+
load: () => import('./LibertinusSans.mjs'),
|
|
3996
|
+
},
|
|
3997
|
+
{
|
|
3998
|
+
fontFamily: 'Libertinus Serif',
|
|
3999
|
+
importName: 'LibertinusSerif',
|
|
4000
|
+
load: () => import('./LibertinusSerif.mjs'),
|
|
4001
|
+
},
|
|
3992
4002
|
{
|
|
3993
4003
|
fontFamily: 'Libre Barcode 128',
|
|
3994
4004
|
importName: 'LibreBarcode128',
|
|
@@ -4719,6 +4729,16 @@ export const getAvailableFonts = () => [
|
|
|
4719
4729
|
importName: 'MouseMemoirs',
|
|
4720
4730
|
load: () => import('./MouseMemoirs.mjs'),
|
|
4721
4731
|
},
|
|
4732
|
+
{
|
|
4733
|
+
fontFamily: 'Mozilla Headline',
|
|
4734
|
+
importName: 'MozillaHeadline',
|
|
4735
|
+
load: () => import('./MozillaHeadline.mjs'),
|
|
4736
|
+
},
|
|
4737
|
+
{
|
|
4738
|
+
fontFamily: 'Mozilla Text',
|
|
4739
|
+
importName: 'MozillaText',
|
|
4740
|
+
load: () => import('./MozillaText.mjs'),
|
|
4741
|
+
},
|
|
4722
4742
|
{
|
|
4723
4743
|
fontFamily: 'Mr Bedfort',
|
|
4724
4744
|
importName: 'MrBedfort',
|
|
@@ -4844,6 +4864,11 @@ export const getAvailableFonts = () => [
|
|
|
4844
4864
|
importName: 'Narnoor',
|
|
4845
4865
|
load: () => import('./Narnoor.mjs'),
|
|
4846
4866
|
},
|
|
4867
|
+
{
|
|
4868
|
+
fontFamily: 'Nata Sans',
|
|
4869
|
+
importName: 'NataSans',
|
|
4870
|
+
load: () => import('./NataSans.mjs'),
|
|
4871
|
+
},
|
|
4847
4872
|
{
|
|
4848
4873
|
fontFamily: 'National Park',
|
|
4849
4874
|
importName: 'NationalPark',
|