motion-script 1.0.0
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/attributes/bounds/bounds.d.ts +10 -0
- package/dist/attributes/bounds/bounds.d.ts.map +1 -0
- package/dist/attributes/bounds/bounds.js +2 -0
- package/dist/attributes/bounds/bounds.js.map +1 -0
- package/dist/attributes/fill/blend.d.ts +4 -0
- package/dist/attributes/fill/blend.d.ts.map +1 -0
- package/dist/attributes/fill/blend.js +14 -0
- package/dist/attributes/fill/blend.js.map +1 -0
- package/dist/attributes/fill/fill.d.ts +28 -0
- package/dist/attributes/fill/fill.d.ts.map +1 -0
- package/dist/attributes/fill/fill.js +23 -0
- package/dist/attributes/fill/fill.js.map +1 -0
- package/dist/attributes/fill/registry.d.ts +23 -0
- package/dist/attributes/fill/registry.d.ts.map +1 -0
- package/dist/attributes/fill/registry.js +106 -0
- package/dist/attributes/fill/registry.js.map +1 -0
- package/dist/attributes/index.d.ts +9 -0
- package/dist/attributes/index.d.ts.map +1 -0
- package/dist/attributes/index.js +9 -0
- package/dist/attributes/index.js.map +1 -0
- package/dist/attributes/insets/inset.d.ts +7 -0
- package/dist/attributes/insets/inset.d.ts.map +1 -0
- package/dist/attributes/insets/inset.js +2 -0
- package/dist/attributes/insets/inset.js.map +1 -0
- package/dist/attributes/position/vector2.d.ts +5 -0
- package/dist/attributes/position/vector2.d.ts.map +1 -0
- package/dist/attributes/position/vector2.js +2 -0
- package/dist/attributes/position/vector2.js.map +1 -0
- package/dist/attributes/size/constraints.d.ts +5 -0
- package/dist/attributes/size/constraints.d.ts.map +1 -0
- package/dist/attributes/size/constraints.js +2 -0
- package/dist/attributes/size/constraints.js.map +1 -0
- package/dist/attributes/size/size.d.ts +6 -0
- package/dist/attributes/size/size.d.ts.map +1 -0
- package/dist/attributes/size/size.js +2 -0
- package/dist/attributes/size/size.js.map +1 -0
- package/dist/attributes/stroke/stroke.d.ts +6 -0
- package/dist/attributes/stroke/stroke.d.ts.map +1 -0
- package/dist/attributes/stroke/stroke.js +2 -0
- package/dist/attributes/stroke/stroke.js.map +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -0
- package/dist/jsx/jsx-dev-runtime.d.ts +4 -0
- package/dist/jsx/jsx-dev-runtime.d.ts.map +1 -0
- package/dist/jsx/jsx-dev-runtime.js +16 -0
- package/dist/jsx/jsx-dev-runtime.js.map +1 -0
- package/dist/jsx/jsx-runtime.d.ts +4 -0
- package/dist/jsx/jsx-runtime.d.ts.map +1 -0
- package/dist/jsx/jsx-runtime.js +16 -0
- package/dist/jsx/jsx-runtime.js.map +1 -0
- package/dist/nodes/base/node.d.ts +37 -0
- package/dist/nodes/base/node.d.ts.map +1 -0
- package/dist/nodes/base/node.js +107 -0
- package/dist/nodes/base/node.js.map +1 -0
- package/dist/nodes/flex/node.d.ts +35 -0
- package/dist/nodes/flex/node.d.ts.map +1 -0
- package/dist/nodes/flex/node.js +318 -0
- package/dist/nodes/flex/node.js.map +1 -0
- package/dist/nodes/flex/props.d.ts +27 -0
- package/dist/nodes/flex/props.d.ts.map +1 -0
- package/dist/nodes/flex/props.js +2 -0
- package/dist/nodes/flex/props.js.map +1 -0
- package/dist/nodes/index.d.ts +13 -0
- package/dist/nodes/index.d.ts.map +1 -0
- package/dist/nodes/index.js +13 -0
- package/dist/nodes/index.js.map +1 -0
- package/dist/nodes/rect/node.d.ts +14 -0
- package/dist/nodes/rect/node.d.ts.map +1 -0
- package/dist/nodes/rect/node.js +55 -0
- package/dist/nodes/rect/node.js.map +1 -0
- package/dist/nodes/rect/props.d.ts +10 -0
- package/dist/nodes/rect/props.d.ts.map +1 -0
- package/dist/nodes/rect/props.js +2 -0
- package/dist/nodes/rect/props.js.map +1 -0
- package/dist/nodes/registry.d.ts +3 -0
- package/dist/nodes/registry.d.ts.map +1 -0
- package/dist/nodes/registry.js +31 -0
- package/dist/nodes/registry.js.map +1 -0
- package/dist/nodes/shape/node.d.ts +15 -0
- package/dist/nodes/shape/node.d.ts.map +1 -0
- package/dist/nodes/shape/node.js +32 -0
- package/dist/nodes/shape/node.js.map +1 -0
- package/dist/nodes/shape/props.d.ts +8 -0
- package/dist/nodes/shape/props.d.ts.map +1 -0
- package/dist/nodes/shape/props.js +2 -0
- package/dist/nodes/shape/props.js.map +1 -0
- package/dist/nodes/text/node.d.ts +18 -0
- package/dist/nodes/text/node.d.ts.map +1 -0
- package/dist/nodes/text/node.js +76 -0
- package/dist/nodes/text/node.js.map +1 -0
- package/dist/nodes/text/props.d.ts +11 -0
- package/dist/nodes/text/props.d.ts.map +1 -0
- package/dist/nodes/text/props.js +2 -0
- package/dist/nodes/text/props.js.map +1 -0
- package/dist/nodes/transform/node.d.ts +39 -0
- package/dist/nodes/transform/node.d.ts.map +1 -0
- package/dist/nodes/transform/node.js +160 -0
- package/dist/nodes/transform/node.js.map +1 -0
- package/dist/nodes/transform/props.d.ts +11 -0
- package/dist/nodes/transform/props.d.ts.map +1 -0
- package/dist/nodes/transform/props.js +2 -0
- package/dist/nodes/transform/props.js.map +1 -0
- package/dist/project/generator.d.ts +2 -0
- package/dist/project/generator.d.ts.map +1 -0
- package/dist/project/generator.js +2 -0
- package/dist/project/generator.js.map +1 -0
- package/dist/project/index.d.ts +4 -0
- package/dist/project/index.d.ts.map +1 -0
- package/dist/project/index.js +4 -0
- package/dist/project/index.js.map +1 -0
- package/dist/project/project.d.ts +14 -0
- package/dist/project/project.d.ts.map +1 -0
- package/dist/project/project.js +2 -0
- package/dist/project/project.js.map +1 -0
- package/dist/project/scene.d.ts +49 -0
- package/dist/project/scene.d.ts.map +1 -0
- package/dist/project/scene.js +2 -0
- package/dist/project/scene.js.map +1 -0
- package/dist/rendering/contexts/draw-context.d.ts +17 -0
- package/dist/rendering/contexts/draw-context.d.ts.map +1 -0
- package/dist/rendering/contexts/draw-context.js +12 -0
- package/dist/rendering/contexts/draw-context.js.map +1 -0
- package/dist/rendering/contexts/pixi-context.d.ts +29 -0
- package/dist/rendering/contexts/pixi-context.d.ts.map +1 -0
- package/dist/rendering/contexts/pixi-context.js +117 -0
- package/dist/rendering/contexts/pixi-context.js.map +1 -0
- package/dist/rendering/index.d.ts +11 -0
- package/dist/rendering/index.d.ts.map +1 -0
- package/dist/rendering/index.js +11 -0
- package/dist/rendering/index.js.map +1 -0
- package/dist/rendering/painters/base/painter.d.ts +9 -0
- package/dist/rendering/painters/base/painter.d.ts.map +1 -0
- package/dist/rendering/painters/base/painter.js +12 -0
- package/dist/rendering/painters/base/painter.js.map +1 -0
- package/dist/rendering/painters/ellipse/ellipse.d.ts +9 -0
- package/dist/rendering/painters/ellipse/ellipse.d.ts.map +1 -0
- package/dist/rendering/painters/ellipse/ellipse.js +2 -0
- package/dist/rendering/painters/ellipse/ellipse.js.map +1 -0
- package/dist/rendering/painters/latex/state.d.ts +6 -0
- package/dist/rendering/painters/latex/state.d.ts.map +1 -0
- package/dist/rendering/painters/latex/state.js +2 -0
- package/dist/rendering/painters/latex/state.js.map +1 -0
- package/dist/rendering/painters/rect/cache.d.ts +22 -0
- package/dist/rendering/painters/rect/cache.d.ts.map +1 -0
- package/dist/rendering/painters/rect/cache.js +106 -0
- package/dist/rendering/painters/rect/cache.js.map +1 -0
- package/dist/rendering/painters/rect/painter.d.ts +13 -0
- package/dist/rendering/painters/rect/painter.d.ts.map +1 -0
- package/dist/rendering/painters/rect/painter.js +66 -0
- package/dist/rendering/painters/rect/painter.js.map +1 -0
- package/dist/rendering/painters/rect/state.d.ts +11 -0
- package/dist/rendering/painters/rect/state.d.ts.map +1 -0
- package/dist/rendering/painters/rect/state.js +21 -0
- package/dist/rendering/painters/rect/state.js.map +1 -0
- package/dist/rendering/painters/shape/state.d.ts +9 -0
- package/dist/rendering/painters/shape/state.d.ts.map +1 -0
- package/dist/rendering/painters/shape/state.js +2 -0
- package/dist/rendering/painters/shape/state.js.map +1 -0
- package/dist/rendering/painters/text/cache.d.ts +30 -0
- package/dist/rendering/painters/text/cache.d.ts.map +1 -0
- package/dist/rendering/painters/text/cache.js +525 -0
- package/dist/rendering/painters/text/cache.js.map +1 -0
- package/dist/rendering/painters/text/geometry/font/cache.d.ts +9 -0
- package/dist/rendering/painters/text/geometry/font/cache.d.ts.map +1 -0
- package/dist/rendering/painters/text/geometry/font/cache.js +20 -0
- package/dist/rendering/painters/text/geometry/font/cache.js.map +1 -0
- package/dist/rendering/painters/text/geometry/font/fonts.json +3844 -0
- package/dist/rendering/painters/text/geometry/font/loader.d.ts +4 -0
- package/dist/rendering/painters/text/geometry/font/loader.d.ts.map +1 -0
- package/dist/rendering/painters/text/geometry/font/loader.js +33 -0
- package/dist/rendering/painters/text/geometry/font/loader.js.map +1 -0
- package/dist/rendering/painters/text/geometry/font/ttf.d.ts +27 -0
- package/dist/rendering/painters/text/geometry/font/ttf.d.ts.map +1 -0
- package/dist/rendering/painters/text/geometry/font/ttf.js +26 -0
- package/dist/rendering/painters/text/geometry/font/ttf.js.map +1 -0
- package/dist/rendering/painters/text/geometry/path.d.ts +16 -0
- package/dist/rendering/painters/text/geometry/path.d.ts.map +1 -0
- package/dist/rendering/painters/text/geometry/path.js +40 -0
- package/dist/rendering/painters/text/geometry/path.js.map +1 -0
- package/dist/rendering/painters/text/painter.d.ts +13 -0
- package/dist/rendering/painters/text/painter.d.ts.map +1 -0
- package/dist/rendering/painters/text/painter.js +69 -0
- package/dist/rendering/painters/text/painter.js.map +1 -0
- package/dist/rendering/painters/text/state.d.ts +12 -0
- package/dist/rendering/painters/text/state.d.ts.map +1 -0
- package/dist/rendering/painters/text/state.js +22 -0
- package/dist/rendering/painters/text/state.js.map +1 -0
- package/dist/rendering/painters/transform/painter.d.ts +9 -0
- package/dist/rendering/painters/transform/painter.d.ts.map +1 -0
- package/dist/rendering/painters/transform/painter.js +18 -0
- package/dist/rendering/painters/transform/painter.js.map +1 -0
- package/dist/rendering/painters/transform/state.d.ts +9 -0
- package/dist/rendering/painters/transform/state.d.ts.map +1 -0
- package/dist/rendering/painters/transform/state.js +2 -0
- package/dist/rendering/painters/transform/state.js.map +1 -0
- package/dist/rendering/textures/multi-fill.d.ts +1 -0
- package/dist/rendering/textures/multi-fill.d.ts.map +1 -0
- package/dist/rendering/textures/multi-fill.js +18 -0
- package/dist/rendering/textures/multi-fill.js.map +1 -0
- package/dist/signal/collector.d.ts +6 -0
- package/dist/signal/collector.d.ts.map +1 -0
- package/dist/signal/collector.js +18 -0
- package/dist/signal/collector.js.map +1 -0
- package/dist/signal/index.d.ts +3 -0
- package/dist/signal/index.d.ts.map +1 -0
- package/dist/signal/index.js +3 -0
- package/dist/signal/index.js.map +1 -0
- package/dist/signal/signal.d.ts +7 -0
- package/dist/signal/signal.d.ts.map +1 -0
- package/dist/signal/signal.js +217 -0
- package/dist/signal/signal.js.map +1 -0
- package/dist/signal/type.d.ts +40 -0
- package/dist/signal/type.d.ts.map +1 -0
- package/dist/signal/type.js +2 -0
- package/dist/signal/type.js.map +1 -0
- package/dist/tween/ease.d.ts +13 -0
- package/dist/tween/ease.d.ts.map +1 -0
- package/dist/tween/ease.js +40 -0
- package/dist/tween/ease.js.map +1 -0
- package/dist/tween/eases.d.ts +12 -0
- package/dist/tween/eases.d.ts.map +1 -0
- package/dist/tween/eases.js +69 -0
- package/dist/tween/eases.js.map +1 -0
- package/dist/tween/index.d.ts +7 -0
- package/dist/tween/index.d.ts.map +1 -0
- package/dist/tween/index.js +7 -0
- package/dist/tween/index.js.map +1 -0
- package/dist/tween/parallel.d.ts +3 -0
- package/dist/tween/parallel.d.ts.map +1 -0
- package/dist/tween/parallel.js +24 -0
- package/dist/tween/parallel.js.map +1 -0
- package/dist/tween/sequence.d.ts +3 -0
- package/dist/tween/sequence.d.ts.map +1 -0
- package/dist/tween/sequence.js +7 -0
- package/dist/tween/sequence.js.map +1 -0
- package/dist/tween/tests/realtime.test.d.ts +2 -0
- package/dist/tween/tests/realtime.test.d.ts.map +1 -0
- package/dist/tween/tests/realtime.test.js +76 -0
- package/dist/tween/tests/realtime.test.js.map +1 -0
- package/dist/tween/tween.d.ts +3 -0
- package/dist/tween/tween.d.ts.map +1 -0
- package/dist/tween/tween.js +14 -0
- package/dist/tween/tween.js.map +1 -0
- package/dist/tween/wait.d.ts +3 -0
- package/dist/tween/wait.d.ts.map +1 -0
- package/dist/tween/wait.js +10 -0
- package/dist/tween/wait.js.map +1 -0
- package/package.json +55 -0
|
@@ -0,0 +1,3844 @@
|
|
|
1
|
+
{
|
|
2
|
+
"abrilfatface": {
|
|
3
|
+
"family": "Abril Fatface",
|
|
4
|
+
"id": "abril-fatface",
|
|
5
|
+
"variants": {
|
|
6
|
+
"400": {
|
|
7
|
+
"normal": {
|
|
8
|
+
"latin": "https://fonts.gstatic.com/s/abrilfatface/v25/zOL64pLDlL1D99S8g8PtiKchm-A.ttf"
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"alegreya": {
|
|
14
|
+
"family": "Alegreya",
|
|
15
|
+
"id": "alegreya",
|
|
16
|
+
"variants": {
|
|
17
|
+
"400": {
|
|
18
|
+
"italic": {
|
|
19
|
+
"latin": "https://fonts.gstatic.com/s/alegreya/v39/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbgv6qm.ttf"
|
|
20
|
+
},
|
|
21
|
+
"normal": {
|
|
22
|
+
"latin": "https://fonts.gstatic.com/s/alegreya/v39/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI_A.ttf"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"500": {
|
|
26
|
+
"italic": {
|
|
27
|
+
"latin": "https://fonts.gstatic.com/s/alegreya/v39/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbSv6qm.ttf"
|
|
28
|
+
},
|
|
29
|
+
"normal": {
|
|
30
|
+
"latin": "https://fonts.gstatic.com/s/alegreya/v39/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBUI_A.ttf"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"600": {
|
|
34
|
+
"italic": {
|
|
35
|
+
"latin": "https://fonts.gstatic.com/s/alegreya/v39/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlY-uKqm.ttf"
|
|
36
|
+
},
|
|
37
|
+
"normal": {
|
|
38
|
+
"latin": "https://fonts.gstatic.com/s/alegreya/v39/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGKBII_A.ttf"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"700": {
|
|
42
|
+
"italic": {
|
|
43
|
+
"latin": "https://fonts.gstatic.com/s/alegreya/v39/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlYHuKqm.ttf"
|
|
44
|
+
},
|
|
45
|
+
"normal": {
|
|
46
|
+
"latin": "https://fonts.gstatic.com/s/alegreya/v39/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERII_A.ttf"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"800": {
|
|
50
|
+
"italic": {
|
|
51
|
+
"latin": "https://fonts.gstatic.com/s/alegreya/v39/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZguKqm.ttf"
|
|
52
|
+
},
|
|
53
|
+
"normal": {
|
|
54
|
+
"latin": "https://fonts.gstatic.com/s/alegreya/v39/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhII_A.ttf"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"900": {
|
|
58
|
+
"italic": {
|
|
59
|
+
"latin": "https://fonts.gstatic.com/s/alegreya/v39/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZJuKqm.ttf"
|
|
60
|
+
},
|
|
61
|
+
"normal": {
|
|
62
|
+
"latin": "https://fonts.gstatic.com/s/alegreya/v39/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxII_A.ttf"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"alegreyasans": {
|
|
68
|
+
"family": "Alegreya Sans",
|
|
69
|
+
"id": "alegreya-sans",
|
|
70
|
+
"variants": {
|
|
71
|
+
"100": {
|
|
72
|
+
"italic": {
|
|
73
|
+
"latin": "https://fonts.gstatic.com/s/alegreyasans/v26/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1W.ttf"
|
|
74
|
+
},
|
|
75
|
+
"normal": {
|
|
76
|
+
"latin": "https://fonts.gstatic.com/s/alegreyasans/v26/5aUt9_-1phKLFgshYDvh6Vwt5TltuA.ttf"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"300": {
|
|
80
|
+
"italic": {
|
|
81
|
+
"latin": "https://fonts.gstatic.com/s/alegreyasans/v26/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jg.ttf"
|
|
82
|
+
},
|
|
83
|
+
"normal": {
|
|
84
|
+
"latin": "https://fonts.gstatic.com/s/alegreyasans/v26/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE0.ttf"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"400": {
|
|
88
|
+
"italic": {
|
|
89
|
+
"latin": "https://fonts.gstatic.com/s/alegreyasans/v26/5aUt9_-1phKLFgshYDvh6Vwt7V9tuA.ttf"
|
|
90
|
+
},
|
|
91
|
+
"normal": {
|
|
92
|
+
"latin": "https://fonts.gstatic.com/s/alegreyasans/v26/5aUz9_-1phKLFgshYDvh6Vwt3V0.ttf"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"500": {
|
|
96
|
+
"italic": {
|
|
97
|
+
"latin": "https://fonts.gstatic.com/s/alegreyasans/v26/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jg.ttf"
|
|
98
|
+
},
|
|
99
|
+
"normal": {
|
|
100
|
+
"latin": "https://fonts.gstatic.com/s/alegreyasans/v26/5aUu9_-1phKLFgshYDvh6Vwt5alOmE0.ttf"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"700": {
|
|
104
|
+
"italic": {
|
|
105
|
+
"latin": "https://fonts.gstatic.com/s/alegreyasans/v26/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jg.ttf"
|
|
106
|
+
},
|
|
107
|
+
"normal": {
|
|
108
|
+
"latin": "https://fonts.gstatic.com/s/alegreyasans/v26/5aUu9_-1phKLFgshYDvh6Vwt5eFImE0.ttf"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"800": {
|
|
112
|
+
"italic": {
|
|
113
|
+
"latin": "https://fonts.gstatic.com/s/alegreyasans/v26/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jg.ttf"
|
|
114
|
+
},
|
|
115
|
+
"normal": {
|
|
116
|
+
"latin": "https://fonts.gstatic.com/s/alegreyasans/v26/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE0.ttf"
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"900": {
|
|
120
|
+
"italic": {
|
|
121
|
+
"latin": "https://fonts.gstatic.com/s/alegreyasans/v26/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jg.ttf"
|
|
122
|
+
},
|
|
123
|
+
"normal": {
|
|
124
|
+
"latin": "https://fonts.gstatic.com/s/alegreyasans/v26/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE0.ttf"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
"allura": {
|
|
130
|
+
"family": "Allura",
|
|
131
|
+
"id": "allura",
|
|
132
|
+
"variants": {
|
|
133
|
+
"400": {
|
|
134
|
+
"normal": {
|
|
135
|
+
"latin": "https://fonts.gstatic.com/s/allura/v23/9oRPNYsQpS4zjuAPjA.ttf"
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"amaticsc": {
|
|
141
|
+
"family": "Amatic SC",
|
|
142
|
+
"id": "amatic-sc",
|
|
143
|
+
"variants": {
|
|
144
|
+
"400": {
|
|
145
|
+
"normal": {
|
|
146
|
+
"latin": "https://fonts.gstatic.com/s/amaticsc/v28/TUZyzwprpvBS1izr_vO0DQ.ttf"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
"700": {
|
|
150
|
+
"normal": {
|
|
151
|
+
"latin": "https://fonts.gstatic.com/s/amaticsc/v28/TUZ3zwprpvBS1izr_vOMscG6eQ.ttf"
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"anton": {
|
|
157
|
+
"family": "Anton",
|
|
158
|
+
"id": "anton",
|
|
159
|
+
"variants": {
|
|
160
|
+
"400": {
|
|
161
|
+
"normal": {
|
|
162
|
+
"latin": "https://fonts.gstatic.com/s/anton/v27/1Ptgg87LROyAm0K0.ttf"
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"arimo": {
|
|
168
|
+
"family": "Arimo",
|
|
169
|
+
"id": "arimo",
|
|
170
|
+
"variants": {
|
|
171
|
+
"400": {
|
|
172
|
+
"italic": {
|
|
173
|
+
"latin": "https://fonts.gstatic.com/s/arimo/v35/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-ERBrE.ttf"
|
|
174
|
+
},
|
|
175
|
+
"normal": {
|
|
176
|
+
"latin": "https://fonts.gstatic.com/s/arimo/v35/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsBw.ttf"
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"500": {
|
|
180
|
+
"italic": {
|
|
181
|
+
"latin": "https://fonts.gstatic.com/s/arimo/v35/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-2RBrE.ttf"
|
|
182
|
+
},
|
|
183
|
+
"normal": {
|
|
184
|
+
"latin": "https://fonts.gstatic.com/s/arimo/v35/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsBw.ttf"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"600": {
|
|
188
|
+
"italic": {
|
|
189
|
+
"latin": "https://fonts.gstatic.com/s/arimo/v35/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9aQxrE.ttf"
|
|
190
|
+
},
|
|
191
|
+
"normal": {
|
|
192
|
+
"latin": "https://fonts.gstatic.com/s/arimo/v35/P5sfzZCDf9_T_3cV7NCUECyoxNk3M8tsBw.ttf"
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"700": {
|
|
196
|
+
"italic": {
|
|
197
|
+
"latin": "https://fonts.gstatic.com/s/arimo/v35/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9jQxrE.ttf"
|
|
198
|
+
},
|
|
199
|
+
"normal": {
|
|
200
|
+
"latin": "https://fonts.gstatic.com/s/arimo/v35/P5sfzZCDf9_T_3cV7NCUECyoxNk3CstsBw.ttf"
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"arvo": {
|
|
206
|
+
"family": "Arvo",
|
|
207
|
+
"id": "arvo",
|
|
208
|
+
"variants": {
|
|
209
|
+
"400": {
|
|
210
|
+
"italic": {
|
|
211
|
+
"latin": "https://fonts.gstatic.com/s/arvo/v23/tDbN2oWUg0MKqSIQ6A.ttf"
|
|
212
|
+
},
|
|
213
|
+
"normal": {
|
|
214
|
+
"latin": "https://fonts.gstatic.com/s/arvo/v23/tDbD2oWUg0MKmSA.ttf"
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
"700": {
|
|
218
|
+
"italic": {
|
|
219
|
+
"latin": "https://fonts.gstatic.com/s/arvo/v23/tDbO2oWUg0MKqSIoVLHK9g.ttf"
|
|
220
|
+
},
|
|
221
|
+
"normal": {
|
|
222
|
+
"latin": "https://fonts.gstatic.com/s/arvo/v23/tDbM2oWUg0MKoZw1yLQ.ttf"
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
"asap": {
|
|
228
|
+
"family": "Asap",
|
|
229
|
+
"id": "asap",
|
|
230
|
+
"variants": {
|
|
231
|
+
"100": {
|
|
232
|
+
"italic": {
|
|
233
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbGmT.ttf"
|
|
234
|
+
},
|
|
235
|
+
"normal": {
|
|
236
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqQsLg.ttf"
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"200": {
|
|
240
|
+
"italic": {
|
|
241
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEbWmT.ttf"
|
|
242
|
+
},
|
|
243
|
+
"normal": {
|
|
244
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqUsLg.ttf"
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
"300": {
|
|
248
|
+
"italic": {
|
|
249
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmT.ttf"
|
|
250
|
+
},
|
|
251
|
+
"normal": {
|
|
252
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYzKUsLg.ttf"
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
"400": {
|
|
256
|
+
"italic": {
|
|
257
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmT.ttf"
|
|
258
|
+
},
|
|
259
|
+
"normal": {
|
|
260
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUsLg.ttf"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"500": {
|
|
264
|
+
"italic": {
|
|
265
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmT.ttf"
|
|
266
|
+
},
|
|
267
|
+
"normal": {
|
|
268
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYoKUsLg.ttf"
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
"600": {
|
|
272
|
+
"italic": {
|
|
273
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYaammT.ttf"
|
|
274
|
+
},
|
|
275
|
+
"normal": {
|
|
276
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYTKIsLg.ttf"
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
"700": {
|
|
280
|
+
"italic": {
|
|
281
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammT.ttf"
|
|
282
|
+
},
|
|
283
|
+
"normal": {
|
|
284
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYdaIsLg.ttf"
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
"800": {
|
|
288
|
+
"italic": {
|
|
289
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEammT.ttf"
|
|
290
|
+
},
|
|
291
|
+
"normal": {
|
|
292
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqIsLg.ttf"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"900": {
|
|
296
|
+
"italic": {
|
|
297
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammT.ttf"
|
|
298
|
+
},
|
|
299
|
+
"normal": {
|
|
300
|
+
"latin": "https://fonts.gstatic.com/s/asap/v34/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYO6IsLg.ttf"
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
"baloo2": {
|
|
306
|
+
"family": "Baloo 2",
|
|
307
|
+
"id": "baloo-2",
|
|
308
|
+
"variants": {
|
|
309
|
+
"400": {
|
|
310
|
+
"normal": {
|
|
311
|
+
"latin": "https://fonts.gstatic.com/s/baloo2/v23/wXK0E3kTposypRydzVT08TS3JnAmtdgazapv.ttf"
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"500": {
|
|
315
|
+
"normal": {
|
|
316
|
+
"latin": "https://fonts.gstatic.com/s/baloo2/v23/wXK0E3kTposypRydzVT08TS3JnAmtdgozapv.ttf"
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
"600": {
|
|
320
|
+
"normal": {
|
|
321
|
+
"latin": "https://fonts.gstatic.com/s/baloo2/v23/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpv.ttf"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"700": {
|
|
325
|
+
"normal": {
|
|
326
|
+
"latin": "https://fonts.gstatic.com/s/baloo2/v23/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpv.ttf"
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
"800": {
|
|
330
|
+
"normal": {
|
|
331
|
+
"latin": "https://fonts.gstatic.com/s/baloo2/v23/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpv.ttf"
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
"barlow": {
|
|
337
|
+
"family": "Barlow",
|
|
338
|
+
"id": "barlow",
|
|
339
|
+
"variants": {
|
|
340
|
+
"100": {
|
|
341
|
+
"italic": {
|
|
342
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHtv4kjgoGqM7E_CfNYwHo.ttf"
|
|
343
|
+
},
|
|
344
|
+
"normal": {
|
|
345
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHrv4kjgoGqM7E3b8s8.ttf"
|
|
346
|
+
}
|
|
347
|
+
},
|
|
348
|
+
"200": {
|
|
349
|
+
"italic": {
|
|
350
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHsv4kjgoGqM7E_CfP04Vop.ttf"
|
|
351
|
+
},
|
|
352
|
+
"normal": {
|
|
353
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHqv4kjgoGqM7E3w-oc4A.ttf"
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
"300": {
|
|
357
|
+
"italic": {
|
|
358
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHsv4kjgoGqM7E_CfOQ4lop.ttf"
|
|
359
|
+
},
|
|
360
|
+
"normal": {
|
|
361
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHqv4kjgoGqM7E3p-kc4A.ttf"
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"400": {
|
|
365
|
+
"italic": {
|
|
366
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHrv4kjgoGqM7E_Ccs8.ttf"
|
|
367
|
+
},
|
|
368
|
+
"normal": {
|
|
369
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHpv4kjgoGqM7EPCw.ttf"
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
"500": {
|
|
373
|
+
"italic": {
|
|
374
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHsv4kjgoGqM7E_CfPI41op.ttf"
|
|
375
|
+
},
|
|
376
|
+
"normal": {
|
|
377
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHqv4kjgoGqM7E3_-gc4A.ttf"
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"600": {
|
|
381
|
+
"italic": {
|
|
382
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHsv4kjgoGqM7E_CfPk5Fop.ttf"
|
|
383
|
+
},
|
|
384
|
+
"normal": {
|
|
385
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHqv4kjgoGqM7E30-8c4A.ttf"
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
"700": {
|
|
389
|
+
"italic": {
|
|
390
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHsv4kjgoGqM7E_CfOA5Vop.ttf"
|
|
391
|
+
},
|
|
392
|
+
"normal": {
|
|
393
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHqv4kjgoGqM7E3t-4c4A.ttf"
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"800": {
|
|
397
|
+
"italic": {
|
|
398
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHsv4kjgoGqM7E_CfOc5lop.ttf"
|
|
399
|
+
},
|
|
400
|
+
"normal": {
|
|
401
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHqv4kjgoGqM7E3q-0c4A.ttf"
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
"900": {
|
|
405
|
+
"italic": {
|
|
406
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHsv4kjgoGqM7E_CfO451op.ttf"
|
|
407
|
+
},
|
|
408
|
+
"normal": {
|
|
409
|
+
"latin": "https://fonts.gstatic.com/s/barlow/v13/7cHqv4kjgoGqM7E3j-wc4A.ttf"
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
},
|
|
414
|
+
"bebasneue": {
|
|
415
|
+
"family": "Bebas Neue",
|
|
416
|
+
"id": "bebas-neue",
|
|
417
|
+
"variants": {
|
|
418
|
+
"400": {
|
|
419
|
+
"normal": {
|
|
420
|
+
"latin": "https://fonts.gstatic.com/s/bebasneue/v16/JTUSjIg69CK48gW7PXooxW4.ttf"
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
"bitter": {
|
|
426
|
+
"family": "Bitter",
|
|
427
|
+
"id": "bitter",
|
|
428
|
+
"variants": {
|
|
429
|
+
"100": {
|
|
430
|
+
"italic": {
|
|
431
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OWA.ttf"
|
|
432
|
+
},
|
|
433
|
+
"normal": {
|
|
434
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCL8.ttf"
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
"200": {
|
|
438
|
+
"italic": {
|
|
439
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOWA.ttf"
|
|
440
|
+
},
|
|
441
|
+
"normal": {
|
|
442
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCL8.ttf"
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
"300": {
|
|
446
|
+
"italic": {
|
|
447
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOWA.ttf"
|
|
448
|
+
},
|
|
449
|
+
"normal": {
|
|
450
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCL8.ttf"
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
"400": {
|
|
454
|
+
"italic": {
|
|
455
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWA.ttf"
|
|
456
|
+
},
|
|
457
|
+
"normal": {
|
|
458
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL8.ttf"
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
"500": {
|
|
462
|
+
"italic": {
|
|
463
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOWA.ttf"
|
|
464
|
+
},
|
|
465
|
+
"normal": {
|
|
466
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCL8.ttf"
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
"600": {
|
|
470
|
+
"italic": {
|
|
471
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOWA.ttf"
|
|
472
|
+
},
|
|
473
|
+
"normal": {
|
|
474
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCL8.ttf"
|
|
475
|
+
}
|
|
476
|
+
},
|
|
477
|
+
"700": {
|
|
478
|
+
"italic": {
|
|
479
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOWA.ttf"
|
|
480
|
+
},
|
|
481
|
+
"normal": {
|
|
482
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL8.ttf"
|
|
483
|
+
}
|
|
484
|
+
},
|
|
485
|
+
"800": {
|
|
486
|
+
"italic": {
|
|
487
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOWA.ttf"
|
|
488
|
+
},
|
|
489
|
+
"normal": {
|
|
490
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCL8.ttf"
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
"900": {
|
|
494
|
+
"italic": {
|
|
495
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOWA.ttf"
|
|
496
|
+
},
|
|
497
|
+
"normal": {
|
|
498
|
+
"latin": "https://fonts.gstatic.com/s/bitter/v40/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCL8.ttf"
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
},
|
|
503
|
+
"breeserif": {
|
|
504
|
+
"family": "Bree Serif",
|
|
505
|
+
"id": "bree-serif",
|
|
506
|
+
"variants": {
|
|
507
|
+
"400": {
|
|
508
|
+
"normal": {
|
|
509
|
+
"latin": "https://fonts.gstatic.com/s/breeserif/v18/4UaHrEJCrhhnVA3DgluAx60.ttf"
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
"cabin": {
|
|
515
|
+
"family": "Cabin",
|
|
516
|
+
"id": "cabin",
|
|
517
|
+
"variants": {
|
|
518
|
+
"400": {
|
|
519
|
+
"italic": {
|
|
520
|
+
"latin": "https://fonts.gstatic.com/s/cabin/v35/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_Klwg.ttf"
|
|
521
|
+
},
|
|
522
|
+
"normal": {
|
|
523
|
+
"latin": "https://fonts.gstatic.com/s/cabin/v35/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7E.ttf"
|
|
524
|
+
}
|
|
525
|
+
},
|
|
526
|
+
"500": {
|
|
527
|
+
"italic": {
|
|
528
|
+
"latin": "https://fonts.gstatic.com/s/cabin/v35/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlwg.ttf"
|
|
529
|
+
},
|
|
530
|
+
"normal": {
|
|
531
|
+
"latin": "https://fonts.gstatic.com/s/cabin/v35/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7E.ttf"
|
|
532
|
+
}
|
|
533
|
+
},
|
|
534
|
+
"600": {
|
|
535
|
+
"italic": {
|
|
536
|
+
"latin": "https://fonts.gstatic.com/s/cabin/v35/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlwg.ttf"
|
|
537
|
+
},
|
|
538
|
+
"normal": {
|
|
539
|
+
"latin": "https://fonts.gstatic.com/s/cabin/v35/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7E.ttf"
|
|
540
|
+
}
|
|
541
|
+
},
|
|
542
|
+
"700": {
|
|
543
|
+
"italic": {
|
|
544
|
+
"latin": "https://fonts.gstatic.com/s/cabin/v35/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlwg.ttf"
|
|
545
|
+
},
|
|
546
|
+
"normal": {
|
|
547
|
+
"latin": "https://fonts.gstatic.com/s/cabin/v35/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7E.ttf"
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
},
|
|
552
|
+
"cairo": {
|
|
553
|
+
"family": "Cairo",
|
|
554
|
+
"id": "cairo",
|
|
555
|
+
"variants": {
|
|
556
|
+
"200": {
|
|
557
|
+
"normal": {
|
|
558
|
+
"latin": "https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA-W1Q.ttf"
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
"300": {
|
|
562
|
+
"normal": {
|
|
563
|
+
"latin": "https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hL4-W1Q.ttf"
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
"400": {
|
|
567
|
+
"normal": {
|
|
568
|
+
"latin": "https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1Q.ttf"
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
"500": {
|
|
572
|
+
"normal": {
|
|
573
|
+
"latin": "https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1Q.ttf"
|
|
574
|
+
}
|
|
575
|
+
},
|
|
576
|
+
"600": {
|
|
577
|
+
"normal": {
|
|
578
|
+
"latin": "https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hD45W1Q.ttf"
|
|
579
|
+
}
|
|
580
|
+
},
|
|
581
|
+
"700": {
|
|
582
|
+
"normal": {
|
|
583
|
+
"latin": "https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1Q.ttf"
|
|
584
|
+
}
|
|
585
|
+
},
|
|
586
|
+
"800": {
|
|
587
|
+
"normal": {
|
|
588
|
+
"latin": "https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA5W1Q.ttf"
|
|
589
|
+
}
|
|
590
|
+
},
|
|
591
|
+
"900": {
|
|
592
|
+
"normal": {
|
|
593
|
+
"latin": "https://fonts.gstatic.com/s/cairo/v31/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hEk5W1Q.ttf"
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
},
|
|
598
|
+
"catamaran": {
|
|
599
|
+
"family": "Catamaran",
|
|
600
|
+
"id": "catamaran",
|
|
601
|
+
"variants": {
|
|
602
|
+
"100": {
|
|
603
|
+
"normal": {
|
|
604
|
+
"latin": "https://fonts.gstatic.com/s/catamaran/v28/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1ak.ttf"
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
"200": {
|
|
608
|
+
"normal": {
|
|
609
|
+
"latin": "https://fonts.gstatic.com/s/catamaran/v28/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1ak.ttf"
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
"300": {
|
|
613
|
+
"normal": {
|
|
614
|
+
"latin": "https://fonts.gstatic.com/s/catamaran/v28/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1ak.ttf"
|
|
615
|
+
}
|
|
616
|
+
},
|
|
617
|
+
"400": {
|
|
618
|
+
"normal": {
|
|
619
|
+
"latin": "https://fonts.gstatic.com/s/catamaran/v28/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1ak.ttf"
|
|
620
|
+
}
|
|
621
|
+
},
|
|
622
|
+
"500": {
|
|
623
|
+
"normal": {
|
|
624
|
+
"latin": "https://fonts.gstatic.com/s/catamaran/v28/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1ak.ttf"
|
|
625
|
+
}
|
|
626
|
+
},
|
|
627
|
+
"600": {
|
|
628
|
+
"normal": {
|
|
629
|
+
"latin": "https://fonts.gstatic.com/s/catamaran/v28/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1ak.ttf"
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
"700": {
|
|
633
|
+
"normal": {
|
|
634
|
+
"latin": "https://fonts.gstatic.com/s/catamaran/v28/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1ak.ttf"
|
|
635
|
+
}
|
|
636
|
+
},
|
|
637
|
+
"800": {
|
|
638
|
+
"normal": {
|
|
639
|
+
"latin": "https://fonts.gstatic.com/s/catamaran/v28/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1ak.ttf"
|
|
640
|
+
}
|
|
641
|
+
},
|
|
642
|
+
"900": {
|
|
643
|
+
"normal": {
|
|
644
|
+
"latin": "https://fonts.gstatic.com/s/catamaran/v28/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1ak.ttf"
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
},
|
|
649
|
+
"chivo": {
|
|
650
|
+
"family": "Chivo",
|
|
651
|
+
"id": "chivo",
|
|
652
|
+
"variants": {
|
|
653
|
+
"100": {
|
|
654
|
+
"italic": {
|
|
655
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1WrW.ttf"
|
|
656
|
+
},
|
|
657
|
+
"normal": {
|
|
658
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9b4kzIxd1KFppkaRKvDRPJVDf_vB7ulw.ttf"
|
|
659
|
+
}
|
|
660
|
+
},
|
|
661
|
+
"200": {
|
|
662
|
+
"italic": {
|
|
663
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG1GrW.ttf"
|
|
664
|
+
},
|
|
665
|
+
"normal": {
|
|
666
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9b4kzIxd1KFppkaRKvDRPJVDf_PB_ulw.ttf"
|
|
667
|
+
}
|
|
668
|
+
},
|
|
669
|
+
"300": {
|
|
670
|
+
"italic": {
|
|
671
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFxY1GrW.ttf"
|
|
672
|
+
},
|
|
673
|
+
"normal": {
|
|
674
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9b4kzIxd1KFppkaRKvDRPJVDf_4h_ulw.ttf"
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
"400": {
|
|
678
|
+
"italic": {
|
|
679
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1GrW.ttf"
|
|
680
|
+
},
|
|
681
|
+
"normal": {
|
|
682
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ulw.ttf"
|
|
683
|
+
}
|
|
684
|
+
},
|
|
685
|
+
"500": {
|
|
686
|
+
"italic": {
|
|
687
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFw01GrW.ttf"
|
|
688
|
+
},
|
|
689
|
+
"normal": {
|
|
690
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9b4kzIxd1KFppkaRKvDRPJVDf_jh_ulw.ttf"
|
|
691
|
+
}
|
|
692
|
+
},
|
|
693
|
+
"600": {
|
|
694
|
+
"italic": {
|
|
695
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzY02rW.ttf"
|
|
696
|
+
},
|
|
697
|
+
"normal": {
|
|
698
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9b4kzIxd1KFppkaRKvDRPJVDf_Yhjulw.ttf"
|
|
699
|
+
}
|
|
700
|
+
},
|
|
701
|
+
"700": {
|
|
702
|
+
"italic": {
|
|
703
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzh02rW.ttf"
|
|
704
|
+
},
|
|
705
|
+
"normal": {
|
|
706
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9b4kzIxd1KFppkaRKvDRPJVDf_Wxjulw.ttf"
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
"800": {
|
|
710
|
+
"italic": {
|
|
711
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG02rW.ttf"
|
|
712
|
+
},
|
|
713
|
+
"normal": {
|
|
714
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9b4kzIxd1KFppkaRKvDRPJVDf_PBjulw.ttf"
|
|
715
|
+
}
|
|
716
|
+
},
|
|
717
|
+
"900": {
|
|
718
|
+
"italic": {
|
|
719
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyv02rW.ttf"
|
|
720
|
+
},
|
|
721
|
+
"normal": {
|
|
722
|
+
"latin": "https://fonts.gstatic.com/s/chivo/v21/va9b4kzIxd1KFppkaRKvDRPJVDf_FRjulw.ttf"
|
|
723
|
+
}
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
},
|
|
727
|
+
"comfortaa": {
|
|
728
|
+
"family": "Comfortaa",
|
|
729
|
+
"id": "comfortaa",
|
|
730
|
+
"variants": {
|
|
731
|
+
"300": {
|
|
732
|
+
"normal": {
|
|
733
|
+
"latin": "https://fonts.gstatic.com/s/comfortaa/v47/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQ.ttf"
|
|
734
|
+
}
|
|
735
|
+
},
|
|
736
|
+
"400": {
|
|
737
|
+
"normal": {
|
|
738
|
+
"latin": "https://fonts.gstatic.com/s/comfortaa/v47/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQ.ttf"
|
|
739
|
+
}
|
|
740
|
+
},
|
|
741
|
+
"500": {
|
|
742
|
+
"normal": {
|
|
743
|
+
"latin": "https://fonts.gstatic.com/s/comfortaa/v47/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQ.ttf"
|
|
744
|
+
}
|
|
745
|
+
},
|
|
746
|
+
"600": {
|
|
747
|
+
"normal": {
|
|
748
|
+
"latin": "https://fonts.gstatic.com/s/comfortaa/v47/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQ.ttf"
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
"700": {
|
|
752
|
+
"normal": {
|
|
753
|
+
"latin": "https://fonts.gstatic.com/s/comfortaa/v47/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQ.ttf"
|
|
754
|
+
}
|
|
755
|
+
}
|
|
756
|
+
}
|
|
757
|
+
},
|
|
758
|
+
"cookie": {
|
|
759
|
+
"family": "Cookie",
|
|
760
|
+
"id": "cookie",
|
|
761
|
+
"variants": {
|
|
762
|
+
"400": {
|
|
763
|
+
"normal": {
|
|
764
|
+
"latin": "https://fonts.gstatic.com/s/cookie/v23/syky-y18lb0tSbfNlQ.ttf"
|
|
765
|
+
}
|
|
766
|
+
}
|
|
767
|
+
}
|
|
768
|
+
},
|
|
769
|
+
"coustard": {
|
|
770
|
+
"family": "Coustard",
|
|
771
|
+
"id": "coustard",
|
|
772
|
+
"variants": {
|
|
773
|
+
"400": {
|
|
774
|
+
"normal": {
|
|
775
|
+
"latin": "https://fonts.gstatic.com/s/coustard/v17/3XFpErgg3YsZ5fqUU9UP.ttf"
|
|
776
|
+
}
|
|
777
|
+
},
|
|
778
|
+
"900": {
|
|
779
|
+
"normal": {
|
|
780
|
+
"latin": "https://fonts.gstatic.com/s/coustard/v17/3XFuErgg3YsZ5fqUU-2LkEHm.ttf"
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
"crimsontext": {
|
|
786
|
+
"family": "Crimson Text",
|
|
787
|
+
"id": "crimson-text",
|
|
788
|
+
"variants": {
|
|
789
|
+
"400": {
|
|
790
|
+
"italic": {
|
|
791
|
+
"latin": "https://fonts.gstatic.com/s/crimsontext/v19/wlpogwHKFkZgtmSR3NB0oRJfaghW.ttf"
|
|
792
|
+
},
|
|
793
|
+
"normal": {
|
|
794
|
+
"latin": "https://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJvaA.ttf"
|
|
795
|
+
}
|
|
796
|
+
},
|
|
797
|
+
"600": {
|
|
798
|
+
"italic": {
|
|
799
|
+
"latin": "https://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV.ttf"
|
|
800
|
+
},
|
|
801
|
+
"normal": {
|
|
802
|
+
"latin": "https://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJXsCx2Cw.ttf"
|
|
803
|
+
}
|
|
804
|
+
},
|
|
805
|
+
"700": {
|
|
806
|
+
"italic": {
|
|
807
|
+
"latin": "https://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV.ttf"
|
|
808
|
+
},
|
|
809
|
+
"normal": {
|
|
810
|
+
"latin": "https://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJX1C12Cw.ttf"
|
|
811
|
+
}
|
|
812
|
+
}
|
|
813
|
+
}
|
|
814
|
+
},
|
|
815
|
+
"dancingscript": {
|
|
816
|
+
"family": "Dancing Script",
|
|
817
|
+
"id": "dancing-script",
|
|
818
|
+
"variants": {
|
|
819
|
+
"400": {
|
|
820
|
+
"normal": {
|
|
821
|
+
"latin": "https://fonts.gstatic.com/s/dancingscript/v29/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTQ.ttf"
|
|
822
|
+
}
|
|
823
|
+
},
|
|
824
|
+
"500": {
|
|
825
|
+
"normal": {
|
|
826
|
+
"latin": "https://fonts.gstatic.com/s/dancingscript/v29/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTQ.ttf"
|
|
827
|
+
}
|
|
828
|
+
},
|
|
829
|
+
"600": {
|
|
830
|
+
"normal": {
|
|
831
|
+
"latin": "https://fonts.gstatic.com/s/dancingscript/v29/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTQ.ttf"
|
|
832
|
+
}
|
|
833
|
+
},
|
|
834
|
+
"700": {
|
|
835
|
+
"normal": {
|
|
836
|
+
"latin": "https://fonts.gstatic.com/s/dancingscript/v29/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTQ.ttf"
|
|
837
|
+
}
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
},
|
|
841
|
+
"dmsans": {
|
|
842
|
+
"family": "DM Sans",
|
|
843
|
+
"id": "dm-sans",
|
|
844
|
+
"variants": {
|
|
845
|
+
"100": {
|
|
846
|
+
"italic": {
|
|
847
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDG3z.ttf"
|
|
848
|
+
},
|
|
849
|
+
"normal": {
|
|
850
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAop1hTg.ttf"
|
|
851
|
+
}
|
|
852
|
+
},
|
|
853
|
+
"200": {
|
|
854
|
+
"italic": {
|
|
855
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat8JDW3z.ttf"
|
|
856
|
+
},
|
|
857
|
+
"normal": {
|
|
858
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAIpxhTg.ttf"
|
|
859
|
+
}
|
|
860
|
+
},
|
|
861
|
+
"300": {
|
|
862
|
+
"italic": {
|
|
863
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat_XDW3z.ttf"
|
|
864
|
+
},
|
|
865
|
+
"normal": {
|
|
866
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwA_JxhTg.ttf"
|
|
867
|
+
}
|
|
868
|
+
},
|
|
869
|
+
"400": {
|
|
870
|
+
"italic": {
|
|
871
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDW3z.ttf"
|
|
872
|
+
},
|
|
873
|
+
"normal": {
|
|
874
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhTg.ttf"
|
|
875
|
+
}
|
|
876
|
+
},
|
|
877
|
+
"500": {
|
|
878
|
+
"italic": {
|
|
879
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-7DW3z.ttf"
|
|
880
|
+
},
|
|
881
|
+
"normal": {
|
|
882
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhTg.ttf"
|
|
883
|
+
}
|
|
884
|
+
},
|
|
885
|
+
"600": {
|
|
886
|
+
"italic": {
|
|
887
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9XCm3z.ttf"
|
|
888
|
+
},
|
|
889
|
+
"normal": {
|
|
890
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthTg.ttf"
|
|
891
|
+
}
|
|
892
|
+
},
|
|
893
|
+
"700": {
|
|
894
|
+
"italic": {
|
|
895
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm3z.ttf"
|
|
896
|
+
},
|
|
897
|
+
"normal": {
|
|
898
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthTg.ttf"
|
|
899
|
+
}
|
|
900
|
+
},
|
|
901
|
+
"800": {
|
|
902
|
+
"italic": {
|
|
903
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat8JCm3z.ttf"
|
|
904
|
+
},
|
|
905
|
+
"normal": {
|
|
906
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAIpthTg.ttf"
|
|
907
|
+
}
|
|
908
|
+
},
|
|
909
|
+
"900": {
|
|
910
|
+
"italic": {
|
|
911
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat8gCm3z.ttf"
|
|
912
|
+
},
|
|
913
|
+
"normal": {
|
|
914
|
+
"latin": "https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAC5thTg.ttf"
|
|
915
|
+
}
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
},
|
|
919
|
+
"exo2": {
|
|
920
|
+
"family": "Exo 2",
|
|
921
|
+
"id": "exo-2",
|
|
922
|
+
"variants": {
|
|
923
|
+
"100": {
|
|
924
|
+
"italic": {
|
|
925
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6.ttf"
|
|
926
|
+
},
|
|
927
|
+
"normal": {
|
|
928
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPg.ttf"
|
|
929
|
+
}
|
|
930
|
+
},
|
|
931
|
+
"200": {
|
|
932
|
+
"italic": {
|
|
933
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6.ttf"
|
|
934
|
+
},
|
|
935
|
+
"normal": {
|
|
936
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPg.ttf"
|
|
937
|
+
}
|
|
938
|
+
},
|
|
939
|
+
"300": {
|
|
940
|
+
"italic": {
|
|
941
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6.ttf"
|
|
942
|
+
},
|
|
943
|
+
"normal": {
|
|
944
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPg.ttf"
|
|
945
|
+
}
|
|
946
|
+
},
|
|
947
|
+
"400": {
|
|
948
|
+
"italic": {
|
|
949
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6.ttf"
|
|
950
|
+
},
|
|
951
|
+
"normal": {
|
|
952
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPg.ttf"
|
|
953
|
+
}
|
|
954
|
+
},
|
|
955
|
+
"500": {
|
|
956
|
+
"italic": {
|
|
957
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6.ttf"
|
|
958
|
+
},
|
|
959
|
+
"normal": {
|
|
960
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPg.ttf"
|
|
961
|
+
}
|
|
962
|
+
},
|
|
963
|
+
"600": {
|
|
964
|
+
"italic": {
|
|
965
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6.ttf"
|
|
966
|
+
},
|
|
967
|
+
"normal": {
|
|
968
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPg.ttf"
|
|
969
|
+
}
|
|
970
|
+
},
|
|
971
|
+
"700": {
|
|
972
|
+
"italic": {
|
|
973
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6.ttf"
|
|
974
|
+
},
|
|
975
|
+
"normal": {
|
|
976
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPg.ttf"
|
|
977
|
+
}
|
|
978
|
+
},
|
|
979
|
+
"800": {
|
|
980
|
+
"italic": {
|
|
981
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6.ttf"
|
|
982
|
+
},
|
|
983
|
+
"normal": {
|
|
984
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPg.ttf"
|
|
985
|
+
}
|
|
986
|
+
},
|
|
987
|
+
"900": {
|
|
988
|
+
"italic": {
|
|
989
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6.ttf"
|
|
990
|
+
},
|
|
991
|
+
"normal": {
|
|
992
|
+
"latin": "https://fonts.gstatic.com/s/exo2/v26/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPg.ttf"
|
|
993
|
+
}
|
|
994
|
+
}
|
|
995
|
+
}
|
|
996
|
+
},
|
|
997
|
+
"firasans": {
|
|
998
|
+
"family": "Fira Sans",
|
|
999
|
+
"id": "fira-sans",
|
|
1000
|
+
"variants": {
|
|
1001
|
+
"100": {
|
|
1002
|
+
"italic": {
|
|
1003
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9A4kDNxMZdWfMOD5VvkrCqYTc.ttf"
|
|
1004
|
+
},
|
|
1005
|
+
"normal": {
|
|
1006
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9C4kDNxMZdWfMOD5Vn9IjO.ttf"
|
|
1007
|
+
}
|
|
1008
|
+
},
|
|
1009
|
+
"200": {
|
|
1010
|
+
"italic": {
|
|
1011
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9f4kDNxMZdWfMOD5VvkrAGQBf_.ttf"
|
|
1012
|
+
},
|
|
1013
|
+
"normal": {
|
|
1014
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9B4kDNxMZdWfMOD5VnWKnuQQ.ttf"
|
|
1015
|
+
}
|
|
1016
|
+
},
|
|
1017
|
+
"300": {
|
|
1018
|
+
"italic": {
|
|
1019
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9f4kDNxMZdWfMOD5VvkrBiQxf_.ttf"
|
|
1020
|
+
},
|
|
1021
|
+
"normal": {
|
|
1022
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9B4kDNxMZdWfMOD5VnPKruQQ.ttf"
|
|
1023
|
+
}
|
|
1024
|
+
},
|
|
1025
|
+
"400": {
|
|
1026
|
+
"italic": {
|
|
1027
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9C4kDNxMZdWfMOD5VvkojO.ttf"
|
|
1028
|
+
},
|
|
1029
|
+
"normal": {
|
|
1030
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9E4kDNxMZdWfMOD5VfkA.ttf"
|
|
1031
|
+
}
|
|
1032
|
+
},
|
|
1033
|
+
"500": {
|
|
1034
|
+
"italic": {
|
|
1035
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9f4kDNxMZdWfMOD5VvkrA6Qhf_.ttf"
|
|
1036
|
+
},
|
|
1037
|
+
"normal": {
|
|
1038
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9B4kDNxMZdWfMOD5VnZKvuQQ.ttf"
|
|
1039
|
+
}
|
|
1040
|
+
},
|
|
1041
|
+
"600": {
|
|
1042
|
+
"italic": {
|
|
1043
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9f4kDNxMZdWfMOD5VvkrAWRRf_.ttf"
|
|
1044
|
+
},
|
|
1045
|
+
"normal": {
|
|
1046
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9B4kDNxMZdWfMOD5VnSKzuQQ.ttf"
|
|
1047
|
+
}
|
|
1048
|
+
},
|
|
1049
|
+
"700": {
|
|
1050
|
+
"italic": {
|
|
1051
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9f4kDNxMZdWfMOD5VvkrByRBf_.ttf"
|
|
1052
|
+
},
|
|
1053
|
+
"normal": {
|
|
1054
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9B4kDNxMZdWfMOD5VnLK3uQQ.ttf"
|
|
1055
|
+
}
|
|
1056
|
+
},
|
|
1057
|
+
"800": {
|
|
1058
|
+
"italic": {
|
|
1059
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9f4kDNxMZdWfMOD5VvkrBuRxf_.ttf"
|
|
1060
|
+
},
|
|
1061
|
+
"normal": {
|
|
1062
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9B4kDNxMZdWfMOD5VnMK7uQQ.ttf"
|
|
1063
|
+
}
|
|
1064
|
+
},
|
|
1065
|
+
"900": {
|
|
1066
|
+
"italic": {
|
|
1067
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9f4kDNxMZdWfMOD5VvkrBKRhf_.ttf"
|
|
1068
|
+
},
|
|
1069
|
+
"normal": {
|
|
1070
|
+
"latin": "https://fonts.gstatic.com/s/firasans/v18/va9B4kDNxMZdWfMOD5VnFK_uQQ.ttf"
|
|
1071
|
+
}
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
1075
|
+
"fjallaone": {
|
|
1076
|
+
"family": "Fjalla One",
|
|
1077
|
+
"id": "fjalla-one",
|
|
1078
|
+
"variants": {
|
|
1079
|
+
"400": {
|
|
1080
|
+
"normal": {
|
|
1081
|
+
"latin": "https://fonts.gstatic.com/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFnOY.ttf"
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1084
|
+
}
|
|
1085
|
+
},
|
|
1086
|
+
"frederickathegreat": {
|
|
1087
|
+
"family": "Fredericka the Great",
|
|
1088
|
+
"id": "fredericka-the-great",
|
|
1089
|
+
"variants": {
|
|
1090
|
+
"400": {
|
|
1091
|
+
"normal": {
|
|
1092
|
+
"latin": "https://fonts.gstatic.com/s/frederickathegreat/v23/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Sk.ttf"
|
|
1093
|
+
}
|
|
1094
|
+
}
|
|
1095
|
+
}
|
|
1096
|
+
},
|
|
1097
|
+
"gloriahallelujah": {
|
|
1098
|
+
"family": "Gloria Hallelujah",
|
|
1099
|
+
"id": "gloria-hallelujah",
|
|
1100
|
+
"variants": {
|
|
1101
|
+
"400": {
|
|
1102
|
+
"normal": {
|
|
1103
|
+
"latin": "https://fonts.gstatic.com/s/gloriahallelujah/v24/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy.ttf"
|
|
1104
|
+
}
|
|
1105
|
+
}
|
|
1106
|
+
}
|
|
1107
|
+
},
|
|
1108
|
+
"greatvibes": {
|
|
1109
|
+
"family": "Great Vibes",
|
|
1110
|
+
"id": "great-vibes",
|
|
1111
|
+
"variants": {
|
|
1112
|
+
"400": {
|
|
1113
|
+
"normal": {
|
|
1114
|
+
"latin": "https://fonts.gstatic.com/s/greatvibes/v21/RWmMoKWR9v4ksMfaWd_JN-XC.ttf"
|
|
1115
|
+
}
|
|
1116
|
+
}
|
|
1117
|
+
}
|
|
1118
|
+
},
|
|
1119
|
+
"heebo": {
|
|
1120
|
+
"family": "Heebo",
|
|
1121
|
+
"id": "heebo",
|
|
1122
|
+
"variants": {
|
|
1123
|
+
"100": {
|
|
1124
|
+
"normal": {
|
|
1125
|
+
"latin": "https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2ccg.ttf"
|
|
1126
|
+
}
|
|
1127
|
+
},
|
|
1128
|
+
"200": {
|
|
1129
|
+
"normal": {
|
|
1130
|
+
"latin": "https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSyccg.ttf"
|
|
1131
|
+
}
|
|
1132
|
+
},
|
|
1133
|
+
"300": {
|
|
1134
|
+
"normal": {
|
|
1135
|
+
"latin": "https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yyccg.ttf"
|
|
1136
|
+
}
|
|
1137
|
+
},
|
|
1138
|
+
"400": {
|
|
1139
|
+
"normal": {
|
|
1140
|
+
"latin": "https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSyccg.ttf"
|
|
1141
|
+
}
|
|
1142
|
+
},
|
|
1143
|
+
"500": {
|
|
1144
|
+
"normal": {
|
|
1145
|
+
"latin": "https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1Euyyccg.ttf"
|
|
1146
|
+
}
|
|
1147
|
+
},
|
|
1148
|
+
"600": {
|
|
1149
|
+
"normal": {
|
|
1150
|
+
"latin": "https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyuccg.ttf"
|
|
1151
|
+
}
|
|
1152
|
+
},
|
|
1153
|
+
"700": {
|
|
1154
|
+
"normal": {
|
|
1155
|
+
"latin": "https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1Ebiuccg.ttf"
|
|
1156
|
+
}
|
|
1157
|
+
},
|
|
1158
|
+
"800": {
|
|
1159
|
+
"normal": {
|
|
1160
|
+
"latin": "https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSuccg.ttf"
|
|
1161
|
+
}
|
|
1162
|
+
},
|
|
1163
|
+
"900": {
|
|
1164
|
+
"normal": {
|
|
1165
|
+
"latin": "https://fonts.gstatic.com/s/heebo/v28/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICuccg.ttf"
|
|
1166
|
+
}
|
|
1167
|
+
}
|
|
1168
|
+
}
|
|
1169
|
+
},
|
|
1170
|
+
"hind": {
|
|
1171
|
+
"family": "Hind",
|
|
1172
|
+
"id": "hind",
|
|
1173
|
+
"variants": {
|
|
1174
|
+
"300": {
|
|
1175
|
+
"normal": {
|
|
1176
|
+
"latin": "https://fonts.gstatic.com/s/hind/v18/5aU19_a8oxmIfMJaIRs.ttf"
|
|
1177
|
+
}
|
|
1178
|
+
},
|
|
1179
|
+
"400": {
|
|
1180
|
+
"normal": {
|
|
1181
|
+
"latin": "https://fonts.gstatic.com/s/hind/v18/5aU69_a8oxmIRG4.ttf"
|
|
1182
|
+
}
|
|
1183
|
+
},
|
|
1184
|
+
"500": {
|
|
1185
|
+
"normal": {
|
|
1186
|
+
"latin": "https://fonts.gstatic.com/s/hind/v18/5aU19_a8oxmIfJpbIRs.ttf"
|
|
1187
|
+
}
|
|
1188
|
+
},
|
|
1189
|
+
"600": {
|
|
1190
|
+
"normal": {
|
|
1191
|
+
"latin": "https://fonts.gstatic.com/s/hind/v18/5aU19_a8oxmIfLZcIRs.ttf"
|
|
1192
|
+
}
|
|
1193
|
+
},
|
|
1194
|
+
"700": {
|
|
1195
|
+
"normal": {
|
|
1196
|
+
"latin": "https://fonts.gstatic.com/s/hind/v18/5aU19_a8oxmIfNJdIRs.ttf"
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
}
|
|
1200
|
+
},
|
|
1201
|
+
"indieflower": {
|
|
1202
|
+
"family": "Indie Flower",
|
|
1203
|
+
"id": "indie-flower",
|
|
1204
|
+
"variants": {
|
|
1205
|
+
"400": {
|
|
1206
|
+
"normal": {
|
|
1207
|
+
"latin": "https://fonts.gstatic.com/s/indieflower/v24/m8JVjfNVeKWVnh3QMuKkFcZlbg.ttf"
|
|
1208
|
+
}
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
},
|
|
1212
|
+
"inter": {
|
|
1213
|
+
"family": "Inter",
|
|
1214
|
+
"id": "inter",
|
|
1215
|
+
"variants": {
|
|
1216
|
+
"100": {
|
|
1217
|
+
"italic": {
|
|
1218
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc2dphjQ.ttf"
|
|
1219
|
+
},
|
|
1220
|
+
"normal": {
|
|
1221
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyeMZg.ttf"
|
|
1222
|
+
}
|
|
1223
|
+
},
|
|
1224
|
+
"200": {
|
|
1225
|
+
"italic": {
|
|
1226
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcWdthjQ.ttf"
|
|
1227
|
+
},
|
|
1228
|
+
"normal": {
|
|
1229
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuDyfMZg.ttf"
|
|
1230
|
+
}
|
|
1231
|
+
},
|
|
1232
|
+
"300": {
|
|
1233
|
+
"italic": {
|
|
1234
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTch9thjQ.ttf"
|
|
1235
|
+
},
|
|
1236
|
+
"normal": {
|
|
1237
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuOKfMZg.ttf"
|
|
1238
|
+
}
|
|
1239
|
+
},
|
|
1240
|
+
"400": {
|
|
1241
|
+
"italic": {
|
|
1242
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc2dthjQ.ttf"
|
|
1243
|
+
},
|
|
1244
|
+
"normal": {
|
|
1245
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf"
|
|
1246
|
+
}
|
|
1247
|
+
},
|
|
1248
|
+
"500": {
|
|
1249
|
+
"italic": {
|
|
1250
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc69thjQ.ttf"
|
|
1251
|
+
},
|
|
1252
|
+
"normal": {
|
|
1253
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf"
|
|
1254
|
+
}
|
|
1255
|
+
},
|
|
1256
|
+
"600": {
|
|
1257
|
+
"italic": {
|
|
1258
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcB9xhjQ.ttf"
|
|
1259
|
+
},
|
|
1260
|
+
"normal": {
|
|
1261
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf"
|
|
1262
|
+
}
|
|
1263
|
+
},
|
|
1264
|
+
"700": {
|
|
1265
|
+
"italic": {
|
|
1266
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcPtxhjQ.ttf"
|
|
1267
|
+
},
|
|
1268
|
+
"normal": {
|
|
1269
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf"
|
|
1270
|
+
}
|
|
1271
|
+
},
|
|
1272
|
+
"800": {
|
|
1273
|
+
"italic": {
|
|
1274
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcWdxhjQ.ttf"
|
|
1275
|
+
},
|
|
1276
|
+
"normal": {
|
|
1277
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuDyYMZg.ttf"
|
|
1278
|
+
}
|
|
1279
|
+
},
|
|
1280
|
+
"900": {
|
|
1281
|
+
"italic": {
|
|
1282
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTccNxhjQ.ttf"
|
|
1283
|
+
},
|
|
1284
|
+
"normal": {
|
|
1285
|
+
"latin": "https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuBWYMZg.ttf"
|
|
1286
|
+
}
|
|
1287
|
+
}
|
|
1288
|
+
}
|
|
1289
|
+
},
|
|
1290
|
+
"josefinsans": {
|
|
1291
|
+
"family": "Josefin Sans",
|
|
1292
|
+
"id": "josefin-sans",
|
|
1293
|
+
"variants": {
|
|
1294
|
+
"100": {
|
|
1295
|
+
"italic": {
|
|
1296
|
+
"latin": "https://fonts.gstatic.com/s/josefinsans/v34/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKg.ttf"
|
|
1297
|
+
},
|
|
1298
|
+
"normal": {
|
|
1299
|
+
"latin": "https://fonts.gstatic.com/s/josefinsans/v34/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXME.ttf"
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1302
|
+
"200": {
|
|
1303
|
+
"italic": {
|
|
1304
|
+
"latin": "https://fonts.gstatic.com/s/josefinsans/v34/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKg.ttf"
|
|
1305
|
+
},
|
|
1306
|
+
"normal": {
|
|
1307
|
+
"latin": "https://fonts.gstatic.com/s/josefinsans/v34/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXME.ttf"
|
|
1308
|
+
}
|
|
1309
|
+
},
|
|
1310
|
+
"300": {
|
|
1311
|
+
"italic": {
|
|
1312
|
+
"latin": "https://fonts.gstatic.com/s/josefinsans/v34/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKg.ttf"
|
|
1313
|
+
},
|
|
1314
|
+
"normal": {
|
|
1315
|
+
"latin": "https://fonts.gstatic.com/s/josefinsans/v34/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXME.ttf"
|
|
1316
|
+
}
|
|
1317
|
+
},
|
|
1318
|
+
"400": {
|
|
1319
|
+
"italic": {
|
|
1320
|
+
"latin": "https://fonts.gstatic.com/s/josefinsans/v34/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKg.ttf"
|
|
1321
|
+
},
|
|
1322
|
+
"normal": {
|
|
1323
|
+
"latin": "https://fonts.gstatic.com/s/josefinsans/v34/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXME.ttf"
|
|
1324
|
+
}
|
|
1325
|
+
},
|
|
1326
|
+
"500": {
|
|
1327
|
+
"italic": {
|
|
1328
|
+
"latin": "https://fonts.gstatic.com/s/josefinsans/v34/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKg.ttf"
|
|
1329
|
+
},
|
|
1330
|
+
"normal": {
|
|
1331
|
+
"latin": "https://fonts.gstatic.com/s/josefinsans/v34/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXME.ttf"
|
|
1332
|
+
}
|
|
1333
|
+
},
|
|
1334
|
+
"600": {
|
|
1335
|
+
"italic": {
|
|
1336
|
+
"latin": "https://fonts.gstatic.com/s/josefinsans/v34/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKg.ttf"
|
|
1337
|
+
},
|
|
1338
|
+
"normal": {
|
|
1339
|
+
"latin": "https://fonts.gstatic.com/s/josefinsans/v34/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXME.ttf"
|
|
1340
|
+
}
|
|
1341
|
+
},
|
|
1342
|
+
"700": {
|
|
1343
|
+
"italic": {
|
|
1344
|
+
"latin": "https://fonts.gstatic.com/s/josefinsans/v34/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKg.ttf"
|
|
1345
|
+
},
|
|
1346
|
+
"normal": {
|
|
1347
|
+
"latin": "https://fonts.gstatic.com/s/josefinsans/v34/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXME.ttf"
|
|
1348
|
+
}
|
|
1349
|
+
}
|
|
1350
|
+
}
|
|
1351
|
+
},
|
|
1352
|
+
"karla": {
|
|
1353
|
+
"family": "Karla",
|
|
1354
|
+
"id": "karla",
|
|
1355
|
+
"variants": {
|
|
1356
|
+
"200": {
|
|
1357
|
+
"italic": {
|
|
1358
|
+
"latin": "https://fonts.gstatic.com/s/karla/v33/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCV0lP.ttf"
|
|
1359
|
+
},
|
|
1360
|
+
"normal": {
|
|
1361
|
+
"latin": "https://fonts.gstatic.com/s/karla/v33/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqFA.ttf"
|
|
1362
|
+
}
|
|
1363
|
+
},
|
|
1364
|
+
"300": {
|
|
1365
|
+
"italic": {
|
|
1366
|
+
"latin": "https://fonts.gstatic.com/s/karla/v33/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNkcV0lP.ttf"
|
|
1367
|
+
},
|
|
1368
|
+
"normal": {
|
|
1369
|
+
"latin": "https://fonts.gstatic.com/s/karla/v33/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqFA.ttf"
|
|
1370
|
+
}
|
|
1371
|
+
},
|
|
1372
|
+
"400": {
|
|
1373
|
+
"italic": {
|
|
1374
|
+
"latin": "https://fonts.gstatic.com/s/karla/v33/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlCV0lP.ttf"
|
|
1375
|
+
},
|
|
1376
|
+
"normal": {
|
|
1377
|
+
"latin": "https://fonts.gstatic.com/s/karla/v33/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFA.ttf"
|
|
1378
|
+
}
|
|
1379
|
+
},
|
|
1380
|
+
"500": {
|
|
1381
|
+
"italic": {
|
|
1382
|
+
"latin": "https://fonts.gstatic.com/s/karla/v33/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlwV0lP.ttf"
|
|
1383
|
+
},
|
|
1384
|
+
"normal": {
|
|
1385
|
+
"latin": "https://fonts.gstatic.com/s/karla/v33/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqFA.ttf"
|
|
1386
|
+
}
|
|
1387
|
+
},
|
|
1388
|
+
"600": {
|
|
1389
|
+
"italic": {
|
|
1390
|
+
"latin": "https://fonts.gstatic.com/s/karla/v33/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmcUElP.ttf"
|
|
1391
|
+
},
|
|
1392
|
+
"normal": {
|
|
1393
|
+
"latin": "https://fonts.gstatic.com/s/karla/v33/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qFA.ttf"
|
|
1394
|
+
}
|
|
1395
|
+
},
|
|
1396
|
+
"700": {
|
|
1397
|
+
"italic": {
|
|
1398
|
+
"latin": "https://fonts.gstatic.com/s/karla/v33/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmlUElP.ttf"
|
|
1399
|
+
},
|
|
1400
|
+
"normal": {
|
|
1401
|
+
"latin": "https://fonts.gstatic.com/s/karla/v33/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qFA.ttf"
|
|
1402
|
+
}
|
|
1403
|
+
},
|
|
1404
|
+
"800": {
|
|
1405
|
+
"italic": {
|
|
1406
|
+
"latin": "https://fonts.gstatic.com/s/karla/v33/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCUElP.ttf"
|
|
1407
|
+
},
|
|
1408
|
+
"normal": {
|
|
1409
|
+
"latin": "https://fonts.gstatic.com/s/karla/v33/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qFA.ttf"
|
|
1410
|
+
}
|
|
1411
|
+
}
|
|
1412
|
+
}
|
|
1413
|
+
},
|
|
1414
|
+
"kaushanscript": {
|
|
1415
|
+
"family": "Kaushan Script",
|
|
1416
|
+
"id": "kaushan-script",
|
|
1417
|
+
"variants": {
|
|
1418
|
+
"400": {
|
|
1419
|
+
"normal": {
|
|
1420
|
+
"latin": "https://fonts.gstatic.com/s/kaushanscript/v19/vm8vdRfvXFLG3OLnsO15WYS5DF7_.ttf"
|
|
1421
|
+
}
|
|
1422
|
+
}
|
|
1423
|
+
}
|
|
1424
|
+
},
|
|
1425
|
+
"lato": {
|
|
1426
|
+
"family": "Lato",
|
|
1427
|
+
"id": "lato",
|
|
1428
|
+
"variants": {
|
|
1429
|
+
"100": {
|
|
1430
|
+
"italic": {
|
|
1431
|
+
"latin": "https://fonts.gstatic.com/s/lato/v25/S6u-w4BMUTPHjxsIPy-v.ttf"
|
|
1432
|
+
},
|
|
1433
|
+
"normal": {
|
|
1434
|
+
"latin": "https://fonts.gstatic.com/s/lato/v25/S6u8w4BMUTPHh30wWw.ttf"
|
|
1435
|
+
}
|
|
1436
|
+
},
|
|
1437
|
+
"300": {
|
|
1438
|
+
"italic": {
|
|
1439
|
+
"latin": "https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI9w2PHA.ttf"
|
|
1440
|
+
},
|
|
1441
|
+
"normal": {
|
|
1442
|
+
"latin": "https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh7USew8.ttf"
|
|
1443
|
+
}
|
|
1444
|
+
},
|
|
1445
|
+
"400": {
|
|
1446
|
+
"italic": {
|
|
1447
|
+
"latin": "https://fonts.gstatic.com/s/lato/v25/S6u8w4BMUTPHjxswWw.ttf"
|
|
1448
|
+
},
|
|
1449
|
+
"normal": {
|
|
1450
|
+
"latin": "https://fonts.gstatic.com/s/lato/v25/S6uyw4BMUTPHvxk.ttf"
|
|
1451
|
+
}
|
|
1452
|
+
},
|
|
1453
|
+
"700": {
|
|
1454
|
+
"italic": {
|
|
1455
|
+
"latin": "https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI5wqPHA.ttf"
|
|
1456
|
+
},
|
|
1457
|
+
"normal": {
|
|
1458
|
+
"latin": "https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh6UVew8.ttf"
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1461
|
+
"900": {
|
|
1462
|
+
"italic": {
|
|
1463
|
+
"latin": "https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI3wiPHA.ttf"
|
|
1464
|
+
},
|
|
1465
|
+
"normal": {
|
|
1466
|
+
"latin": "https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh50Xew8.ttf"
|
|
1467
|
+
}
|
|
1468
|
+
}
|
|
1469
|
+
}
|
|
1470
|
+
},
|
|
1471
|
+
"librebaskerville": {
|
|
1472
|
+
"family": "Libre Baskerville",
|
|
1473
|
+
"id": "libre-baskerville",
|
|
1474
|
+
"variants": {
|
|
1475
|
+
"400": {
|
|
1476
|
+
"italic": {
|
|
1477
|
+
"latin": "https://fonts.gstatic.com/s/librebaskerville/v24/kmKWZrc3Hgbbcjq75U4uslyuy4kn0qNccR04_RUJeby2OU36SgNK.ttf"
|
|
1478
|
+
},
|
|
1479
|
+
"normal": {
|
|
1480
|
+
"latin": "https://fonts.gstatic.com/s/librebaskerville/v24/kmKUZrc3Hgbbcjq75U4uslyuy4kn0olVQ-LglH6T17uj8Q4SCQ.ttf"
|
|
1481
|
+
}
|
|
1482
|
+
},
|
|
1483
|
+
"500": {
|
|
1484
|
+
"italic": {
|
|
1485
|
+
"latin": "https://fonts.gstatic.com/s/librebaskerville/v24/kmKWZrc3Hgbbcjq75U4uslyuy4kn0qNccR04_RUJeby2OU3ISgNK.ttf"
|
|
1486
|
+
},
|
|
1487
|
+
"normal": {
|
|
1488
|
+
"latin": "https://fonts.gstatic.com/s/librebaskerville/v24/kmKUZrc3Hgbbcjq75U4uslyuy4kn0olVQ-LglH6T17ujww4SCQ.ttf"
|
|
1489
|
+
}
|
|
1490
|
+
},
|
|
1491
|
+
"600": {
|
|
1492
|
+
"italic": {
|
|
1493
|
+
"latin": "https://fonts.gstatic.com/s/librebaskerville/v24/kmKWZrc3Hgbbcjq75U4uslyuy4kn0qNccR04_RUJeby2OU0kTQNK.ttf"
|
|
1494
|
+
},
|
|
1495
|
+
"normal": {
|
|
1496
|
+
"latin": "https://fonts.gstatic.com/s/librebaskerville/v24/kmKUZrc3Hgbbcjq75U4uslyuy4kn0olVQ-LglH6T17ujLwkSCQ.ttf"
|
|
1497
|
+
}
|
|
1498
|
+
},
|
|
1499
|
+
"700": {
|
|
1500
|
+
"italic": {
|
|
1501
|
+
"latin": "https://fonts.gstatic.com/s/librebaskerville/v24/kmKWZrc3Hgbbcjq75U4uslyuy4kn0qNccR04_RUJeby2OU0dTQNK.ttf"
|
|
1502
|
+
},
|
|
1503
|
+
"normal": {
|
|
1504
|
+
"latin": "https://fonts.gstatic.com/s/librebaskerville/v24/kmKUZrc3Hgbbcjq75U4uslyuy4kn0olVQ-LglH6T17ujFgkSCQ.ttf"
|
|
1505
|
+
}
|
|
1506
|
+
}
|
|
1507
|
+
}
|
|
1508
|
+
},
|
|
1509
|
+
"lora": {
|
|
1510
|
+
"family": "Lora",
|
|
1511
|
+
"id": "lora",
|
|
1512
|
+
"variants": {
|
|
1513
|
+
"400": {
|
|
1514
|
+
"italic": {
|
|
1515
|
+
"latin": "https://fonts.gstatic.com/s/lora/v37/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqg.ttf"
|
|
1516
|
+
},
|
|
1517
|
+
"normal": {
|
|
1518
|
+
"latin": "https://fonts.gstatic.com/s/lora/v37/0QI6MX1D_JOuGQbT0gvTJPa787weuyJG.ttf"
|
|
1519
|
+
}
|
|
1520
|
+
},
|
|
1521
|
+
"500": {
|
|
1522
|
+
"italic": {
|
|
1523
|
+
"latin": "https://fonts.gstatic.com/s/lora/v37/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqg.ttf"
|
|
1524
|
+
},
|
|
1525
|
+
"normal": {
|
|
1526
|
+
"latin": "https://fonts.gstatic.com/s/lora/v37/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJG.ttf"
|
|
1527
|
+
}
|
|
1528
|
+
},
|
|
1529
|
+
"600": {
|
|
1530
|
+
"italic": {
|
|
1531
|
+
"latin": "https://fonts.gstatic.com/s/lora/v37/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqg.ttf"
|
|
1532
|
+
},
|
|
1533
|
+
"normal": {
|
|
1534
|
+
"latin": "https://fonts.gstatic.com/s/lora/v37/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJG.ttf"
|
|
1535
|
+
}
|
|
1536
|
+
},
|
|
1537
|
+
"700": {
|
|
1538
|
+
"italic": {
|
|
1539
|
+
"latin": "https://fonts.gstatic.com/s/lora/v37/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqg.ttf"
|
|
1540
|
+
},
|
|
1541
|
+
"normal": {
|
|
1542
|
+
"latin": "https://fonts.gstatic.com/s/lora/v37/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJG.ttf"
|
|
1543
|
+
}
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1546
|
+
},
|
|
1547
|
+
"mplusrounded1c": {
|
|
1548
|
+
"family": "M PLUS Rounded 1c",
|
|
1549
|
+
"id": "m-plus-rounded-1c",
|
|
1550
|
+
"variants": {
|
|
1551
|
+
"100": {
|
|
1552
|
+
"normal": {
|
|
1553
|
+
"latin": "https://fonts.gstatic.com/s/mplusrounded1c/v20/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLs.ttf"
|
|
1554
|
+
}
|
|
1555
|
+
},
|
|
1556
|
+
"300": {
|
|
1557
|
+
"normal": {
|
|
1558
|
+
"latin": "https://fonts.gstatic.com/s/mplusrounded1c/v20/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psK.ttf"
|
|
1559
|
+
}
|
|
1560
|
+
},
|
|
1561
|
+
"400": {
|
|
1562
|
+
"normal": {
|
|
1563
|
+
"latin": "https://fonts.gstatic.com/s/mplusrounded1c/v20/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWG.ttf"
|
|
1564
|
+
}
|
|
1565
|
+
},
|
|
1566
|
+
"500": {
|
|
1567
|
+
"normal": {
|
|
1568
|
+
"latin": "https://fonts.gstatic.com/s/mplusrounded1c/v20/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sK.ttf"
|
|
1569
|
+
}
|
|
1570
|
+
},
|
|
1571
|
+
"700": {
|
|
1572
|
+
"normal": {
|
|
1573
|
+
"latin": "https://fonts.gstatic.com/s/mplusrounded1c/v20/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsK.ttf"
|
|
1574
|
+
}
|
|
1575
|
+
},
|
|
1576
|
+
"800": {
|
|
1577
|
+
"normal": {
|
|
1578
|
+
"latin": "https://fonts.gstatic.com/s/mplusrounded1c/v20/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psK.ttf"
|
|
1579
|
+
}
|
|
1580
|
+
},
|
|
1581
|
+
"900": {
|
|
1582
|
+
"normal": {
|
|
1583
|
+
"latin": "https://fonts.gstatic.com/s/mplusrounded1c/v20/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sK.ttf"
|
|
1584
|
+
}
|
|
1585
|
+
}
|
|
1586
|
+
}
|
|
1587
|
+
},
|
|
1588
|
+
"mada": {
|
|
1589
|
+
"family": "Mada",
|
|
1590
|
+
"id": "mada",
|
|
1591
|
+
"variants": {
|
|
1592
|
+
"200": {
|
|
1593
|
+
"normal": {
|
|
1594
|
+
"latin": "https://fonts.gstatic.com/s/mada/v21/7Aulp_0qnzeSVz7u3PJLcUMYOFlOkHkw.ttf"
|
|
1595
|
+
}
|
|
1596
|
+
},
|
|
1597
|
+
"300": {
|
|
1598
|
+
"normal": {
|
|
1599
|
+
"latin": "https://fonts.gstatic.com/s/mada/v21/7Aulp_0qnzeSVz7u3PJLcUMYOFmQkHkw.ttf"
|
|
1600
|
+
}
|
|
1601
|
+
},
|
|
1602
|
+
"400": {
|
|
1603
|
+
"normal": {
|
|
1604
|
+
"latin": "https://fonts.gstatic.com/s/mada/v21/7Aulp_0qnzeSVz7u3PJLcUMYOFnOkHkw.ttf"
|
|
1605
|
+
}
|
|
1606
|
+
},
|
|
1607
|
+
"500": {
|
|
1608
|
+
"normal": {
|
|
1609
|
+
"latin": "https://fonts.gstatic.com/s/mada/v21/7Aulp_0qnzeSVz7u3PJLcUMYOFn8kHkw.ttf"
|
|
1610
|
+
}
|
|
1611
|
+
},
|
|
1612
|
+
"600": {
|
|
1613
|
+
"normal": {
|
|
1614
|
+
"latin": "https://fonts.gstatic.com/s/mada/v21/7Aulp_0qnzeSVz7u3PJLcUMYOFkQl3kw.ttf"
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1617
|
+
"700": {
|
|
1618
|
+
"normal": {
|
|
1619
|
+
"latin": "https://fonts.gstatic.com/s/mada/v21/7Aulp_0qnzeSVz7u3PJLcUMYOFkpl3kw.ttf"
|
|
1620
|
+
}
|
|
1621
|
+
},
|
|
1622
|
+
"800": {
|
|
1623
|
+
"normal": {
|
|
1624
|
+
"latin": "https://fonts.gstatic.com/s/mada/v21/7Aulp_0qnzeSVz7u3PJLcUMYOFlOl3kw.ttf"
|
|
1625
|
+
}
|
|
1626
|
+
},
|
|
1627
|
+
"900": {
|
|
1628
|
+
"normal": {
|
|
1629
|
+
"latin": "https://fonts.gstatic.com/s/mada/v21/7Aulp_0qnzeSVz7u3PJLcUMYOFlnl3kw.ttf"
|
|
1630
|
+
}
|
|
1631
|
+
}
|
|
1632
|
+
}
|
|
1633
|
+
},
|
|
1634
|
+
"majormonodisplay": {
|
|
1635
|
+
"family": "Major Mono Display",
|
|
1636
|
+
"id": "major-mono-display",
|
|
1637
|
+
"variants": {
|
|
1638
|
+
"400": {
|
|
1639
|
+
"normal": {
|
|
1640
|
+
"latin": "https://fonts.gstatic.com/s/majormonodisplay/v18/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCg.ttf"
|
|
1641
|
+
}
|
|
1642
|
+
}
|
|
1643
|
+
}
|
|
1644
|
+
},
|
|
1645
|
+
"manrope": {
|
|
1646
|
+
"family": "Manrope",
|
|
1647
|
+
"id": "manrope",
|
|
1648
|
+
"variants": {
|
|
1649
|
+
"200": {
|
|
1650
|
+
"normal": {
|
|
1651
|
+
"latin": "https://fonts.gstatic.com/s/manrope/v20/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F.ttf"
|
|
1652
|
+
}
|
|
1653
|
+
},
|
|
1654
|
+
"300": {
|
|
1655
|
+
"normal": {
|
|
1656
|
+
"latin": "https://fonts.gstatic.com/s/manrope/v20/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F.ttf"
|
|
1657
|
+
}
|
|
1658
|
+
},
|
|
1659
|
+
"400": {
|
|
1660
|
+
"normal": {
|
|
1661
|
+
"latin": "https://fonts.gstatic.com/s/manrope/v20/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F.ttf"
|
|
1662
|
+
}
|
|
1663
|
+
},
|
|
1664
|
+
"500": {
|
|
1665
|
+
"normal": {
|
|
1666
|
+
"latin": "https://fonts.gstatic.com/s/manrope/v20/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F.ttf"
|
|
1667
|
+
}
|
|
1668
|
+
},
|
|
1669
|
+
"600": {
|
|
1670
|
+
"normal": {
|
|
1671
|
+
"latin": "https://fonts.gstatic.com/s/manrope/v20/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F.ttf"
|
|
1672
|
+
}
|
|
1673
|
+
},
|
|
1674
|
+
"700": {
|
|
1675
|
+
"normal": {
|
|
1676
|
+
"latin": "https://fonts.gstatic.com/s/manrope/v20/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F.ttf"
|
|
1677
|
+
}
|
|
1678
|
+
},
|
|
1679
|
+
"800": {
|
|
1680
|
+
"normal": {
|
|
1681
|
+
"latin": "https://fonts.gstatic.com/s/manrope/v20/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F.ttf"
|
|
1682
|
+
}
|
|
1683
|
+
}
|
|
1684
|
+
}
|
|
1685
|
+
},
|
|
1686
|
+
"merriweather": {
|
|
1687
|
+
"family": "Merriweather",
|
|
1688
|
+
"id": "merriweather",
|
|
1689
|
+
"variants": {
|
|
1690
|
+
"300": {
|
|
1691
|
+
"italic": {
|
|
1692
|
+
"latin": "https://fonts.gstatic.com/s/merriweather/v33/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmScUF3w.ttf"
|
|
1693
|
+
},
|
|
1694
|
+
"normal": {
|
|
1695
|
+
"latin": "https://fonts.gstatic.com/s/merriweather/v33/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDrgCcqEw.ttf"
|
|
1696
|
+
}
|
|
1697
|
+
},
|
|
1698
|
+
"400": {
|
|
1699
|
+
"italic": {
|
|
1700
|
+
"latin": "https://fonts.gstatic.com/s/merriweather/v33/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmTCUF3w.ttf"
|
|
1701
|
+
},
|
|
1702
|
+
"normal": {
|
|
1703
|
+
"latin": "https://fonts.gstatic.com/s/merriweather/v33/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDr3icqEw.ttf"
|
|
1704
|
+
}
|
|
1705
|
+
},
|
|
1706
|
+
"500": {
|
|
1707
|
+
"italic": {
|
|
1708
|
+
"latin": "https://fonts.gstatic.com/s/merriweather/v33/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmTwUF3w.ttf"
|
|
1709
|
+
},
|
|
1710
|
+
"normal": {
|
|
1711
|
+
"latin": "https://fonts.gstatic.com/s/merriweather/v33/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDr7CcqEw.ttf"
|
|
1712
|
+
}
|
|
1713
|
+
},
|
|
1714
|
+
"600": {
|
|
1715
|
+
"italic": {
|
|
1716
|
+
"latin": "https://fonts.gstatic.com/s/merriweather/v33/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmQcV13w.ttf"
|
|
1717
|
+
},
|
|
1718
|
+
"normal": {
|
|
1719
|
+
"latin": "https://fonts.gstatic.com/s/merriweather/v33/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDrACAqEw.ttf"
|
|
1720
|
+
}
|
|
1721
|
+
},
|
|
1722
|
+
"700": {
|
|
1723
|
+
"italic": {
|
|
1724
|
+
"latin": "https://fonts.gstatic.com/s/merriweather/v33/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmQlV13w.ttf"
|
|
1725
|
+
},
|
|
1726
|
+
"normal": {
|
|
1727
|
+
"latin": "https://fonts.gstatic.com/s/merriweather/v33/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDrOSAqEw.ttf"
|
|
1728
|
+
}
|
|
1729
|
+
},
|
|
1730
|
+
"800": {
|
|
1731
|
+
"italic": {
|
|
1732
|
+
"latin": "https://fonts.gstatic.com/s/merriweather/v33/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmRCV13w.ttf"
|
|
1733
|
+
},
|
|
1734
|
+
"normal": {
|
|
1735
|
+
"latin": "https://fonts.gstatic.com/s/merriweather/v33/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDrXiAqEw.ttf"
|
|
1736
|
+
}
|
|
1737
|
+
},
|
|
1738
|
+
"900": {
|
|
1739
|
+
"italic": {
|
|
1740
|
+
"latin": "https://fonts.gstatic.com/s/merriweather/v33/u-4B0qyriQwlOrhSvowK_l5-eTxCVx0ZbwLvKH2Gk9hLmp0v5yA-xXPqCzLvPee1XYk_XSf-FmRrV13w.ttf"
|
|
1741
|
+
},
|
|
1742
|
+
"normal": {
|
|
1743
|
+
"latin": "https://fonts.gstatic.com/s/merriweather/v33/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDrdyAqEw.ttf"
|
|
1744
|
+
}
|
|
1745
|
+
}
|
|
1746
|
+
}
|
|
1747
|
+
},
|
|
1748
|
+
"montserrat": {
|
|
1749
|
+
"family": "Montserrat",
|
|
1750
|
+
"id": "montserrat",
|
|
1751
|
+
"variants": {
|
|
1752
|
+
"100": {
|
|
1753
|
+
"italic": {
|
|
1754
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aX8.ttf"
|
|
1755
|
+
},
|
|
1756
|
+
"normal": {
|
|
1757
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-.ttf"
|
|
1758
|
+
}
|
|
1759
|
+
},
|
|
1760
|
+
"200": {
|
|
1761
|
+
"italic": {
|
|
1762
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aX8.ttf"
|
|
1763
|
+
},
|
|
1764
|
+
"normal": {
|
|
1765
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-.ttf"
|
|
1766
|
+
}
|
|
1767
|
+
},
|
|
1768
|
+
"300": {
|
|
1769
|
+
"italic": {
|
|
1770
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aX8.ttf"
|
|
1771
|
+
},
|
|
1772
|
+
"normal": {
|
|
1773
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-.ttf"
|
|
1774
|
+
}
|
|
1775
|
+
},
|
|
1776
|
+
"400": {
|
|
1777
|
+
"italic": {
|
|
1778
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aX8.ttf"
|
|
1779
|
+
},
|
|
1780
|
+
"normal": {
|
|
1781
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-.ttf"
|
|
1782
|
+
}
|
|
1783
|
+
},
|
|
1784
|
+
"500": {
|
|
1785
|
+
"italic": {
|
|
1786
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aX8.ttf"
|
|
1787
|
+
},
|
|
1788
|
+
"normal": {
|
|
1789
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-.ttf"
|
|
1790
|
+
}
|
|
1791
|
+
},
|
|
1792
|
+
"600": {
|
|
1793
|
+
"italic": {
|
|
1794
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aX8.ttf"
|
|
1795
|
+
},
|
|
1796
|
+
"normal": {
|
|
1797
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-.ttf"
|
|
1798
|
+
}
|
|
1799
|
+
},
|
|
1800
|
+
"700": {
|
|
1801
|
+
"italic": {
|
|
1802
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aX8.ttf"
|
|
1803
|
+
},
|
|
1804
|
+
"normal": {
|
|
1805
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-.ttf"
|
|
1806
|
+
}
|
|
1807
|
+
},
|
|
1808
|
+
"800": {
|
|
1809
|
+
"italic": {
|
|
1810
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aX8.ttf"
|
|
1811
|
+
},
|
|
1812
|
+
"normal": {
|
|
1813
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-.ttf"
|
|
1814
|
+
}
|
|
1815
|
+
},
|
|
1816
|
+
"900": {
|
|
1817
|
+
"italic": {
|
|
1818
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aX8.ttf"
|
|
1819
|
+
},
|
|
1820
|
+
"normal": {
|
|
1821
|
+
"latin": "https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w-.ttf"
|
|
1822
|
+
}
|
|
1823
|
+
}
|
|
1824
|
+
}
|
|
1825
|
+
},
|
|
1826
|
+
"mukta": {
|
|
1827
|
+
"family": "Mukta",
|
|
1828
|
+
"id": "mukta",
|
|
1829
|
+
"variants": {
|
|
1830
|
+
"200": {
|
|
1831
|
+
"normal": {
|
|
1832
|
+
"latin": "https://fonts.gstatic.com/s/mukta/v17/iJWHBXyXfDDVXbEOjFma.ttf"
|
|
1833
|
+
}
|
|
1834
|
+
},
|
|
1835
|
+
"300": {
|
|
1836
|
+
"normal": {
|
|
1837
|
+
"latin": "https://fonts.gstatic.com/s/mukta/v17/iJWHBXyXfDDVXbFqj1ma.ttf"
|
|
1838
|
+
}
|
|
1839
|
+
},
|
|
1840
|
+
"400": {
|
|
1841
|
+
"normal": {
|
|
1842
|
+
"latin": "https://fonts.gstatic.com/s/mukta/v17/iJWKBXyXfDDVXYnG.ttf"
|
|
1843
|
+
}
|
|
1844
|
+
},
|
|
1845
|
+
"500": {
|
|
1846
|
+
"normal": {
|
|
1847
|
+
"latin": "https://fonts.gstatic.com/s/mukta/v17/iJWHBXyXfDDVXbEyjlma.ttf"
|
|
1848
|
+
}
|
|
1849
|
+
},
|
|
1850
|
+
"600": {
|
|
1851
|
+
"normal": {
|
|
1852
|
+
"latin": "https://fonts.gstatic.com/s/mukta/v17/iJWHBXyXfDDVXbEeiVma.ttf"
|
|
1853
|
+
}
|
|
1854
|
+
},
|
|
1855
|
+
"700": {
|
|
1856
|
+
"normal": {
|
|
1857
|
+
"latin": "https://fonts.gstatic.com/s/mukta/v17/iJWHBXyXfDDVXbF6iFma.ttf"
|
|
1858
|
+
}
|
|
1859
|
+
},
|
|
1860
|
+
"800": {
|
|
1861
|
+
"normal": {
|
|
1862
|
+
"latin": "https://fonts.gstatic.com/s/mukta/v17/iJWHBXyXfDDVXbFmi1ma.ttf"
|
|
1863
|
+
}
|
|
1864
|
+
}
|
|
1865
|
+
}
|
|
1866
|
+
},
|
|
1867
|
+
"muktamahee": {
|
|
1868
|
+
"family": "Mukta Mahee",
|
|
1869
|
+
"id": "mukta-mahee",
|
|
1870
|
+
"variants": {
|
|
1871
|
+
"200": {
|
|
1872
|
+
"normal": {
|
|
1873
|
+
"latin": "https://fonts.gstatic.com/s/muktamahee/v19/XRXN3IOIi0hcP8iVU67hA9MFcBoH.ttf"
|
|
1874
|
+
}
|
|
1875
|
+
},
|
|
1876
|
+
"300": {
|
|
1877
|
+
"normal": {
|
|
1878
|
+
"latin": "https://fonts.gstatic.com/s/muktamahee/v19/XRXN3IOIi0hcP8iVU67hA9NhcxoH.ttf"
|
|
1879
|
+
}
|
|
1880
|
+
},
|
|
1881
|
+
"400": {
|
|
1882
|
+
"normal": {
|
|
1883
|
+
"latin": "https://fonts.gstatic.com/s/muktamahee/v19/XRXQ3IOIi0hcP8iVU67hA-vN.ttf"
|
|
1884
|
+
}
|
|
1885
|
+
},
|
|
1886
|
+
"500": {
|
|
1887
|
+
"normal": {
|
|
1888
|
+
"latin": "https://fonts.gstatic.com/s/muktamahee/v19/XRXN3IOIi0hcP8iVU67hA9M5choH.ttf"
|
|
1889
|
+
}
|
|
1890
|
+
},
|
|
1891
|
+
"600": {
|
|
1892
|
+
"normal": {
|
|
1893
|
+
"latin": "https://fonts.gstatic.com/s/muktamahee/v19/XRXN3IOIi0hcP8iVU67hA9MVdRoH.ttf"
|
|
1894
|
+
}
|
|
1895
|
+
},
|
|
1896
|
+
"700": {
|
|
1897
|
+
"normal": {
|
|
1898
|
+
"latin": "https://fonts.gstatic.com/s/muktamahee/v19/XRXN3IOIi0hcP8iVU67hA9NxdBoH.ttf"
|
|
1899
|
+
}
|
|
1900
|
+
},
|
|
1901
|
+
"800": {
|
|
1902
|
+
"normal": {
|
|
1903
|
+
"latin": "https://fonts.gstatic.com/s/muktamahee/v19/XRXN3IOIi0hcP8iVU67hA9NtdxoH.ttf"
|
|
1904
|
+
}
|
|
1905
|
+
}
|
|
1906
|
+
}
|
|
1907
|
+
},
|
|
1908
|
+
"notosans": {
|
|
1909
|
+
"family": "Noto Sans",
|
|
1910
|
+
"id": "noto-sans",
|
|
1911
|
+
"variants": {
|
|
1912
|
+
"100": {
|
|
1913
|
+
"italic": {
|
|
1914
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QDcf6Vc.ttf"
|
|
1915
|
+
},
|
|
1916
|
+
"normal": {
|
|
1917
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9At9d.ttf"
|
|
1918
|
+
}
|
|
1919
|
+
},
|
|
1920
|
+
"200": {
|
|
1921
|
+
"italic": {
|
|
1922
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QLce6Vc.ttf"
|
|
1923
|
+
},
|
|
1924
|
+
"normal": {
|
|
1925
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyB9A99d.ttf"
|
|
1926
|
+
}
|
|
1927
|
+
},
|
|
1928
|
+
"300": {
|
|
1929
|
+
"italic": {
|
|
1930
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QGke6Vc.ttf"
|
|
1931
|
+
},
|
|
1932
|
+
"normal": {
|
|
1933
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyCjA99d.ttf"
|
|
1934
|
+
}
|
|
1935
|
+
},
|
|
1936
|
+
"400": {
|
|
1937
|
+
"italic": {
|
|
1938
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QDce6Vc.ttf"
|
|
1939
|
+
},
|
|
1940
|
+
"normal": {
|
|
1941
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9A99d.ttf"
|
|
1942
|
+
}
|
|
1943
|
+
},
|
|
1944
|
+
"500": {
|
|
1945
|
+
"italic": {
|
|
1946
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QAUe6Vc.ttf"
|
|
1947
|
+
},
|
|
1948
|
+
"normal": {
|
|
1949
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyDPA99d.ttf"
|
|
1950
|
+
}
|
|
1951
|
+
},
|
|
1952
|
+
"600": {
|
|
1953
|
+
"italic": {
|
|
1954
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QOkZ6Vc.ttf"
|
|
1955
|
+
},
|
|
1956
|
+
"normal": {
|
|
1957
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAjBN9d.ttf"
|
|
1958
|
+
}
|
|
1959
|
+
},
|
|
1960
|
+
"700": {
|
|
1961
|
+
"italic": {
|
|
1962
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QNAZ6Vc.ttf"
|
|
1963
|
+
},
|
|
1964
|
+
"normal": {
|
|
1965
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAaBN9d.ttf"
|
|
1966
|
+
}
|
|
1967
|
+
},
|
|
1968
|
+
"800": {
|
|
1969
|
+
"italic": {
|
|
1970
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QLcZ6Vc.ttf"
|
|
1971
|
+
},
|
|
1972
|
+
"normal": {
|
|
1973
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyB9BN9d.ttf"
|
|
1974
|
+
}
|
|
1975
|
+
},
|
|
1976
|
+
"900": {
|
|
1977
|
+
"italic": {
|
|
1978
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QJ4Z6Vc.ttf"
|
|
1979
|
+
},
|
|
1980
|
+
"normal": {
|
|
1981
|
+
"latin": "https://fonts.gstatic.com/s/notosans/v42/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyBUBN9d.ttf"
|
|
1982
|
+
}
|
|
1983
|
+
}
|
|
1984
|
+
}
|
|
1985
|
+
},
|
|
1986
|
+
"notoserif": {
|
|
1987
|
+
"family": "Noto Serif",
|
|
1988
|
+
"id": "noto-serif",
|
|
1989
|
+
"variants": {
|
|
1990
|
+
"100": {
|
|
1991
|
+
"italic": {
|
|
1992
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBNLgscP.ttf"
|
|
1993
|
+
},
|
|
1994
|
+
"normal": {
|
|
1995
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFGjwA.ttf"
|
|
1996
|
+
}
|
|
1997
|
+
},
|
|
1998
|
+
"200": {
|
|
1999
|
+
"italic": {
|
|
2000
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPLg8cP.ttf"
|
|
2001
|
+
},
|
|
2002
|
+
"normal": {
|
|
2003
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZKFCjwA.ttf"
|
|
2004
|
+
}
|
|
2005
|
+
},
|
|
2006
|
+
"300": {
|
|
2007
|
+
"italic": {
|
|
2008
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBMVg8cP.ttf"
|
|
2009
|
+
},
|
|
2010
|
+
"normal": {
|
|
2011
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZ9lCjwA.ttf"
|
|
2012
|
+
}
|
|
2013
|
+
},
|
|
2014
|
+
"400": {
|
|
2015
|
+
"italic": {
|
|
2016
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBNLg8cP.ttf"
|
|
2017
|
+
},
|
|
2018
|
+
"normal": {
|
|
2019
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFCjwA.ttf"
|
|
2020
|
+
}
|
|
2021
|
+
},
|
|
2022
|
+
"500": {
|
|
2023
|
+
"italic": {
|
|
2024
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBN5g8cP.ttf"
|
|
2025
|
+
},
|
|
2026
|
+
"normal": {
|
|
2027
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZmlCjwA.ttf"
|
|
2028
|
+
}
|
|
2029
|
+
},
|
|
2030
|
+
"600": {
|
|
2031
|
+
"italic": {
|
|
2032
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBOVhMcP.ttf"
|
|
2033
|
+
},
|
|
2034
|
+
"normal": {
|
|
2035
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZdlejwA.ttf"
|
|
2036
|
+
}
|
|
2037
|
+
},
|
|
2038
|
+
"700": {
|
|
2039
|
+
"italic": {
|
|
2040
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBOshMcP.ttf"
|
|
2041
|
+
},
|
|
2042
|
+
"normal": {
|
|
2043
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZT1ejwA.ttf"
|
|
2044
|
+
}
|
|
2045
|
+
},
|
|
2046
|
+
"800": {
|
|
2047
|
+
"italic": {
|
|
2048
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPLhMcP.ttf"
|
|
2049
|
+
},
|
|
2050
|
+
"normal": {
|
|
2051
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZKFejwA.ttf"
|
|
2052
|
+
}
|
|
2053
|
+
},
|
|
2054
|
+
"900": {
|
|
2055
|
+
"italic": {
|
|
2056
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPihMcP.ttf"
|
|
2057
|
+
},
|
|
2058
|
+
"normal": {
|
|
2059
|
+
"latin": "https://fonts.gstatic.com/s/notoserif/v33/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZAVejwA.ttf"
|
|
2060
|
+
}
|
|
2061
|
+
}
|
|
2062
|
+
}
|
|
2063
|
+
},
|
|
2064
|
+
"nunito": {
|
|
2065
|
+
"family": "Nunito",
|
|
2066
|
+
"id": "nunito",
|
|
2067
|
+
"variants": {
|
|
2068
|
+
"200": {
|
|
2069
|
+
"italic": {
|
|
2070
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXA3ig.ttf"
|
|
2071
|
+
},
|
|
2072
|
+
"normal": {
|
|
2073
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshRTM.ttf"
|
|
2074
|
+
}
|
|
2075
|
+
},
|
|
2076
|
+
"300": {
|
|
2077
|
+
"italic": {
|
|
2078
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83A3ig.ttf"
|
|
2079
|
+
},
|
|
2080
|
+
"normal": {
|
|
2081
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhRTM.ttf"
|
|
2082
|
+
}
|
|
2083
|
+
},
|
|
2084
|
+
"400": {
|
|
2085
|
+
"italic": {
|
|
2086
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3ig.ttf"
|
|
2087
|
+
},
|
|
2088
|
+
"normal": {
|
|
2089
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM.ttf"
|
|
2090
|
+
}
|
|
2091
|
+
},
|
|
2092
|
+
"500": {
|
|
2093
|
+
"italic": {
|
|
2094
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNin3A3ig.ttf"
|
|
2095
|
+
},
|
|
2096
|
+
"normal": {
|
|
2097
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTM.ttf"
|
|
2098
|
+
}
|
|
2099
|
+
},
|
|
2100
|
+
"600": {
|
|
2101
|
+
"italic": {
|
|
2102
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3c3ig.ttf"
|
|
2103
|
+
},
|
|
2104
|
+
"normal": {
|
|
2105
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM.ttf"
|
|
2106
|
+
}
|
|
2107
|
+
},
|
|
2108
|
+
"700": {
|
|
2109
|
+
"italic": {
|
|
2110
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSnc3ig.ttf"
|
|
2111
|
+
},
|
|
2112
|
+
"normal": {
|
|
2113
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM.ttf"
|
|
2114
|
+
}
|
|
2115
|
+
},
|
|
2116
|
+
"800": {
|
|
2117
|
+
"italic": {
|
|
2118
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXc3ig.ttf"
|
|
2119
|
+
},
|
|
2120
|
+
"normal": {
|
|
2121
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTM.ttf"
|
|
2122
|
+
}
|
|
2123
|
+
},
|
|
2124
|
+
"900": {
|
|
2125
|
+
"italic": {
|
|
2126
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3ig.ttf"
|
|
2127
|
+
},
|
|
2128
|
+
"normal": {
|
|
2129
|
+
"latin": "https://fonts.gstatic.com/s/nunito/v32/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTM.ttf"
|
|
2130
|
+
}
|
|
2131
|
+
}
|
|
2132
|
+
}
|
|
2133
|
+
},
|
|
2134
|
+
"oldstandardtt": {
|
|
2135
|
+
"family": "Old Standard TT",
|
|
2136
|
+
"id": "old-standard-tt",
|
|
2137
|
+
"variants": {
|
|
2138
|
+
"400": {
|
|
2139
|
+
"italic": {
|
|
2140
|
+
"latin": "https://fonts.gstatic.com/s/oldstandardtt/v22/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9.ttf"
|
|
2141
|
+
},
|
|
2142
|
+
"normal": {
|
|
2143
|
+
"latin": "https://fonts.gstatic.com/s/oldstandardtt/v22/MwQubh3o1vLImiwAVvYawgcf2eVurQ.ttf"
|
|
2144
|
+
}
|
|
2145
|
+
},
|
|
2146
|
+
"700": {
|
|
2147
|
+
"normal": {
|
|
2148
|
+
"latin": "https://fonts.gstatic.com/s/oldstandardtt/v22/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTA.ttf"
|
|
2149
|
+
}
|
|
2150
|
+
}
|
|
2151
|
+
}
|
|
2152
|
+
},
|
|
2153
|
+
"opensans": {
|
|
2154
|
+
"family": "Open Sans",
|
|
2155
|
+
"id": "open-sans",
|
|
2156
|
+
"variants": {
|
|
2157
|
+
"300": {
|
|
2158
|
+
"italic": {
|
|
2159
|
+
"latin": "https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVc.ttf"
|
|
2160
|
+
},
|
|
2161
|
+
"normal": {
|
|
2162
|
+
"latin": "https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4n.ttf"
|
|
2163
|
+
}
|
|
2164
|
+
},
|
|
2165
|
+
"400": {
|
|
2166
|
+
"italic": {
|
|
2167
|
+
"latin": "https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVc.ttf"
|
|
2168
|
+
},
|
|
2169
|
+
"normal": {
|
|
2170
|
+
"latin": "https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4n.ttf"
|
|
2171
|
+
}
|
|
2172
|
+
},
|
|
2173
|
+
"500": {
|
|
2174
|
+
"italic": {
|
|
2175
|
+
"latin": "https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVc.ttf"
|
|
2176
|
+
},
|
|
2177
|
+
"normal": {
|
|
2178
|
+
"latin": "https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4n.ttf"
|
|
2179
|
+
}
|
|
2180
|
+
},
|
|
2181
|
+
"600": {
|
|
2182
|
+
"italic": {
|
|
2183
|
+
"latin": "https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVc.ttf"
|
|
2184
|
+
},
|
|
2185
|
+
"normal": {
|
|
2186
|
+
"latin": "https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4n.ttf"
|
|
2187
|
+
}
|
|
2188
|
+
},
|
|
2189
|
+
"700": {
|
|
2190
|
+
"italic": {
|
|
2191
|
+
"latin": "https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVc.ttf"
|
|
2192
|
+
},
|
|
2193
|
+
"normal": {
|
|
2194
|
+
"latin": "https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4n.ttf"
|
|
2195
|
+
}
|
|
2196
|
+
},
|
|
2197
|
+
"800": {
|
|
2198
|
+
"italic": {
|
|
2199
|
+
"latin": "https://fonts.gstatic.com/s/opensans/v44/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVc.ttf"
|
|
2200
|
+
},
|
|
2201
|
+
"normal": {
|
|
2202
|
+
"latin": "https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4n.ttf"
|
|
2203
|
+
}
|
|
2204
|
+
}
|
|
2205
|
+
}
|
|
2206
|
+
},
|
|
2207
|
+
"oswald": {
|
|
2208
|
+
"family": "Oswald",
|
|
2209
|
+
"id": "oswald",
|
|
2210
|
+
"variants": {
|
|
2211
|
+
"200": {
|
|
2212
|
+
"normal": {
|
|
2213
|
+
"latin": "https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUE.ttf"
|
|
2214
|
+
}
|
|
2215
|
+
},
|
|
2216
|
+
"300": {
|
|
2217
|
+
"normal": {
|
|
2218
|
+
"latin": "https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUE.ttf"
|
|
2219
|
+
}
|
|
2220
|
+
},
|
|
2221
|
+
"400": {
|
|
2222
|
+
"normal": {
|
|
2223
|
+
"latin": "https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUE.ttf"
|
|
2224
|
+
}
|
|
2225
|
+
},
|
|
2226
|
+
"500": {
|
|
2227
|
+
"normal": {
|
|
2228
|
+
"latin": "https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUE.ttf"
|
|
2229
|
+
}
|
|
2230
|
+
},
|
|
2231
|
+
"600": {
|
|
2232
|
+
"normal": {
|
|
2233
|
+
"latin": "https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUE.ttf"
|
|
2234
|
+
}
|
|
2235
|
+
},
|
|
2236
|
+
"700": {
|
|
2237
|
+
"normal": {
|
|
2238
|
+
"latin": "https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUE.ttf"
|
|
2239
|
+
}
|
|
2240
|
+
}
|
|
2241
|
+
}
|
|
2242
|
+
},
|
|
2243
|
+
"oxygen": {
|
|
2244
|
+
"family": "Oxygen",
|
|
2245
|
+
"id": "oxygen",
|
|
2246
|
+
"variants": {
|
|
2247
|
+
"300": {
|
|
2248
|
+
"normal": {
|
|
2249
|
+
"latin": "https://fonts.gstatic.com/s/oxygen/v16/2sDcZG1Wl4LcnbuCJW8Dbw.ttf"
|
|
2250
|
+
}
|
|
2251
|
+
},
|
|
2252
|
+
"400": {
|
|
2253
|
+
"normal": {
|
|
2254
|
+
"latin": "https://fonts.gstatic.com/s/oxygen/v16/2sDfZG1Wl4Lcnbu6iQ.ttf"
|
|
2255
|
+
}
|
|
2256
|
+
},
|
|
2257
|
+
"700": {
|
|
2258
|
+
"normal": {
|
|
2259
|
+
"latin": "https://fonts.gstatic.com/s/oxygen/v16/2sDcZG1Wl4LcnbuCNWgDbw.ttf"
|
|
2260
|
+
}
|
|
2261
|
+
}
|
|
2262
|
+
}
|
|
2263
|
+
},
|
|
2264
|
+
"pacifico": {
|
|
2265
|
+
"family": "Pacifico",
|
|
2266
|
+
"id": "pacifico",
|
|
2267
|
+
"variants": {
|
|
2268
|
+
"400": {
|
|
2269
|
+
"normal": {
|
|
2270
|
+
"latin": "https://fonts.gstatic.com/s/pacifico/v23/FwZY7-Qmy14u9lezJ96A.ttf"
|
|
2271
|
+
}
|
|
2272
|
+
}
|
|
2273
|
+
}
|
|
2274
|
+
},
|
|
2275
|
+
"palanquin": {
|
|
2276
|
+
"family": "Palanquin",
|
|
2277
|
+
"id": "palanquin",
|
|
2278
|
+
"variants": {
|
|
2279
|
+
"100": {
|
|
2280
|
+
"normal": {
|
|
2281
|
+
"latin": "https://fonts.gstatic.com/s/palanquin/v17/9XUhlJ90n1fBFg7ceXwUEltI.ttf"
|
|
2282
|
+
}
|
|
2283
|
+
},
|
|
2284
|
+
"200": {
|
|
2285
|
+
"normal": {
|
|
2286
|
+
"latin": "https://fonts.gstatic.com/s/palanquin/v17/9XUilJ90n1fBFg7ceXwUvnpoxA.ttf"
|
|
2287
|
+
}
|
|
2288
|
+
},
|
|
2289
|
+
"300": {
|
|
2290
|
+
"normal": {
|
|
2291
|
+
"latin": "https://fonts.gstatic.com/s/palanquin/v17/9XUilJ90n1fBFg7ceXwU2nloxA.ttf"
|
|
2292
|
+
}
|
|
2293
|
+
},
|
|
2294
|
+
"400": {
|
|
2295
|
+
"normal": {
|
|
2296
|
+
"latin": "https://fonts.gstatic.com/s/palanquin/v17/9XUnlJ90n1fBFg7ceXwsdg.ttf"
|
|
2297
|
+
}
|
|
2298
|
+
},
|
|
2299
|
+
"500": {
|
|
2300
|
+
"normal": {
|
|
2301
|
+
"latin": "https://fonts.gstatic.com/s/palanquin/v17/9XUilJ90n1fBFg7ceXwUgnhoxA.ttf"
|
|
2302
|
+
}
|
|
2303
|
+
},
|
|
2304
|
+
"600": {
|
|
2305
|
+
"normal": {
|
|
2306
|
+
"latin": "https://fonts.gstatic.com/s/palanquin/v17/9XUilJ90n1fBFg7ceXwUrn9oxA.ttf"
|
|
2307
|
+
}
|
|
2308
|
+
},
|
|
2309
|
+
"700": {
|
|
2310
|
+
"normal": {
|
|
2311
|
+
"latin": "https://fonts.gstatic.com/s/palanquin/v17/9XUilJ90n1fBFg7ceXwUyn5oxA.ttf"
|
|
2312
|
+
}
|
|
2313
|
+
}
|
|
2314
|
+
}
|
|
2315
|
+
},
|
|
2316
|
+
"palanquindark": {
|
|
2317
|
+
"family": "Palanquin Dark",
|
|
2318
|
+
"id": "palanquin-dark",
|
|
2319
|
+
"variants": {
|
|
2320
|
+
"400": {
|
|
2321
|
+
"normal": {
|
|
2322
|
+
"latin": "https://fonts.gstatic.com/s/palanquindark/v17/xn75YHgl1nqmANMB-26xC7yuF_6O.ttf"
|
|
2323
|
+
}
|
|
2324
|
+
},
|
|
2325
|
+
"500": {
|
|
2326
|
+
"normal": {
|
|
2327
|
+
"latin": "https://fonts.gstatic.com/s/palanquindark/v17/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41.ttf"
|
|
2328
|
+
}
|
|
2329
|
+
},
|
|
2330
|
+
"600": {
|
|
2331
|
+
"normal": {
|
|
2332
|
+
"latin": "https://fonts.gstatic.com/s/palanquindark/v17/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41.ttf"
|
|
2333
|
+
}
|
|
2334
|
+
},
|
|
2335
|
+
"700": {
|
|
2336
|
+
"normal": {
|
|
2337
|
+
"latin": "https://fonts.gstatic.com/s/palanquindark/v17/xn76YHgl1nqmANMB-26xC7yuF8YyY241.ttf"
|
|
2338
|
+
}
|
|
2339
|
+
}
|
|
2340
|
+
}
|
|
2341
|
+
},
|
|
2342
|
+
"play": {
|
|
2343
|
+
"family": "Play",
|
|
2344
|
+
"id": "play",
|
|
2345
|
+
"variants": {
|
|
2346
|
+
"400": {
|
|
2347
|
+
"normal": {
|
|
2348
|
+
"latin": "https://fonts.gstatic.com/s/play/v21/6aez4K2oVqwIjtI.ttf"
|
|
2349
|
+
}
|
|
2350
|
+
},
|
|
2351
|
+
"700": {
|
|
2352
|
+
"normal": {
|
|
2353
|
+
"latin": "https://fonts.gstatic.com/s/play/v21/6ae84K2oVqwItm4TOpc.ttf"
|
|
2354
|
+
}
|
|
2355
|
+
}
|
|
2356
|
+
}
|
|
2357
|
+
},
|
|
2358
|
+
"playfairdisplay": {
|
|
2359
|
+
"family": "Playfair Display",
|
|
2360
|
+
"id": "playfair-display",
|
|
2361
|
+
"variants": {
|
|
2362
|
+
"400": {
|
|
2363
|
+
"italic": {
|
|
2364
|
+
"latin": "https://fonts.gstatic.com/s/playfairdisplay/v40/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtY.ttf"
|
|
2365
|
+
},
|
|
2366
|
+
"normal": {
|
|
2367
|
+
"latin": "https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQ.ttf"
|
|
2368
|
+
}
|
|
2369
|
+
},
|
|
2370
|
+
"500": {
|
|
2371
|
+
"italic": {
|
|
2372
|
+
"latin": "https://fonts.gstatic.com/s/playfairdisplay/v40/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtY.ttf"
|
|
2373
|
+
},
|
|
2374
|
+
"normal": {
|
|
2375
|
+
"latin": "https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQ.ttf"
|
|
2376
|
+
}
|
|
2377
|
+
},
|
|
2378
|
+
"600": {
|
|
2379
|
+
"italic": {
|
|
2380
|
+
"latin": "https://fonts.gstatic.com/s/playfairdisplay/v40/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtY.ttf"
|
|
2381
|
+
},
|
|
2382
|
+
"normal": {
|
|
2383
|
+
"latin": "https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQ.ttf"
|
|
2384
|
+
}
|
|
2385
|
+
},
|
|
2386
|
+
"700": {
|
|
2387
|
+
"italic": {
|
|
2388
|
+
"latin": "https://fonts.gstatic.com/s/playfairdisplay/v40/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtY.ttf"
|
|
2389
|
+
},
|
|
2390
|
+
"normal": {
|
|
2391
|
+
"latin": "https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQ.ttf"
|
|
2392
|
+
}
|
|
2393
|
+
},
|
|
2394
|
+
"800": {
|
|
2395
|
+
"italic": {
|
|
2396
|
+
"latin": "https://fonts.gstatic.com/s/playfairdisplay/v40/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtY.ttf"
|
|
2397
|
+
},
|
|
2398
|
+
"normal": {
|
|
2399
|
+
"latin": "https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQ.ttf"
|
|
2400
|
+
}
|
|
2401
|
+
},
|
|
2402
|
+
"900": {
|
|
2403
|
+
"italic": {
|
|
2404
|
+
"latin": "https://fonts.gstatic.com/s/playfairdisplay/v40/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtY.ttf"
|
|
2405
|
+
},
|
|
2406
|
+
"normal": {
|
|
2407
|
+
"latin": "https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQ.ttf"
|
|
2408
|
+
}
|
|
2409
|
+
}
|
|
2410
|
+
}
|
|
2411
|
+
},
|
|
2412
|
+
"plusjakartasans": {
|
|
2413
|
+
"family": "Plus Jakarta Sans",
|
|
2414
|
+
"id": "plus-jakarta-sans",
|
|
2415
|
+
"variants": {
|
|
2416
|
+
"200": {
|
|
2417
|
+
"italic": {
|
|
2418
|
+
"latin": "https://fonts.gstatic.com/s/plusjakartasans/v12/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lCR_Q.ttf"
|
|
2419
|
+
},
|
|
2420
|
+
"normal": {
|
|
2421
|
+
"latin": "https://fonts.gstatic.com/s/plusjakartasans/v12/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NSg.ttf"
|
|
2422
|
+
}
|
|
2423
|
+
},
|
|
2424
|
+
"300": {
|
|
2425
|
+
"italic": {
|
|
2426
|
+
"latin": "https://fonts.gstatic.com/s/plusjakartasans/v12/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ17CR_Q.ttf"
|
|
2427
|
+
},
|
|
2428
|
+
"normal": {
|
|
2429
|
+
"latin": "https://fonts.gstatic.com/s/plusjakartasans/v12/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_907NSg.ttf"
|
|
2430
|
+
}
|
|
2431
|
+
},
|
|
2432
|
+
"400": {
|
|
2433
|
+
"italic": {
|
|
2434
|
+
"latin": "https://fonts.gstatic.com/s/plusjakartasans/v12/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_Q.ttf"
|
|
2435
|
+
},
|
|
2436
|
+
"normal": {
|
|
2437
|
+
"latin": "https://fonts.gstatic.com/s/plusjakartasans/v12/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NSg.ttf"
|
|
2438
|
+
}
|
|
2439
|
+
},
|
|
2440
|
+
"500": {
|
|
2441
|
+
"italic": {
|
|
2442
|
+
"latin": "https://fonts.gstatic.com/s/plusjakartasans/v12/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_Q.ttf"
|
|
2443
|
+
},
|
|
2444
|
+
"normal": {
|
|
2445
|
+
"latin": "https://fonts.gstatic.com/s/plusjakartasans/v12/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NSg.ttf"
|
|
2446
|
+
}
|
|
2447
|
+
},
|
|
2448
|
+
"600": {
|
|
2449
|
+
"italic": {
|
|
2450
|
+
"latin": "https://fonts.gstatic.com/s/plusjakartasans/v12/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ37Dh_Q.ttf"
|
|
2451
|
+
},
|
|
2452
|
+
"normal": {
|
|
2453
|
+
"latin": "https://fonts.gstatic.com/s/plusjakartasans/v12/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNSg.ttf"
|
|
2454
|
+
}
|
|
2455
|
+
},
|
|
2456
|
+
"700": {
|
|
2457
|
+
"italic": {
|
|
2458
|
+
"latin": "https://fonts.gstatic.com/s/plusjakartasans/v12/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_Q.ttf"
|
|
2459
|
+
},
|
|
2460
|
+
"normal": {
|
|
2461
|
+
"latin": "https://fonts.gstatic.com/s/plusjakartasans/v12/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNSg.ttf"
|
|
2462
|
+
}
|
|
2463
|
+
},
|
|
2464
|
+
"800": {
|
|
2465
|
+
"italic": {
|
|
2466
|
+
"latin": "https://fonts.gstatic.com/s/plusjakartasans/v12/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_Q.ttf"
|
|
2467
|
+
},
|
|
2468
|
+
"normal": {
|
|
2469
|
+
"latin": "https://fonts.gstatic.com/s/plusjakartasans/v12/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNSg.ttf"
|
|
2470
|
+
}
|
|
2471
|
+
}
|
|
2472
|
+
}
|
|
2473
|
+
},
|
|
2474
|
+
"poppins": {
|
|
2475
|
+
"family": "Poppins",
|
|
2476
|
+
"id": "poppins",
|
|
2477
|
+
"variants": {
|
|
2478
|
+
"100": {
|
|
2479
|
+
"italic": {
|
|
2480
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiAyp8kv8JHgFVrJJLmE3tF.ttf"
|
|
2481
|
+
},
|
|
2482
|
+
"normal": {
|
|
2483
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrLPTedw.ttf"
|
|
2484
|
+
}
|
|
2485
|
+
},
|
|
2486
|
+
"200": {
|
|
2487
|
+
"italic": {
|
|
2488
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmv1plEA.ttf"
|
|
2489
|
+
},
|
|
2490
|
+
"normal": {
|
|
2491
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLFj_V1s.ttf"
|
|
2492
|
+
}
|
|
2493
|
+
},
|
|
2494
|
+
"300": {
|
|
2495
|
+
"italic": {
|
|
2496
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLm21llEA.ttf"
|
|
2497
|
+
},
|
|
2498
|
+
"normal": {
|
|
2499
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDz8V1s.ttf"
|
|
2500
|
+
}
|
|
2501
|
+
},
|
|
2502
|
+
"400": {
|
|
2503
|
+
"italic": {
|
|
2504
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrJJLedw.ttf"
|
|
2505
|
+
},
|
|
2506
|
+
"normal": {
|
|
2507
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrFJA.ttf"
|
|
2508
|
+
}
|
|
2509
|
+
},
|
|
2510
|
+
"500": {
|
|
2511
|
+
"italic": {
|
|
2512
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmg1hlEA.ttf"
|
|
2513
|
+
},
|
|
2514
|
+
"normal": {
|
|
2515
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9V1s.ttf"
|
|
2516
|
+
}
|
|
2517
|
+
},
|
|
2518
|
+
"600": {
|
|
2519
|
+
"italic": {
|
|
2520
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmr19lEA.ttf"
|
|
2521
|
+
},
|
|
2522
|
+
"normal": {
|
|
2523
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6V1s.ttf"
|
|
2524
|
+
}
|
|
2525
|
+
},
|
|
2526
|
+
"700": {
|
|
2527
|
+
"italic": {
|
|
2528
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmy15lEA.ttf"
|
|
2529
|
+
},
|
|
2530
|
+
"normal": {
|
|
2531
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLCz7V1s.ttf"
|
|
2532
|
+
}
|
|
2533
|
+
},
|
|
2534
|
+
"800": {
|
|
2535
|
+
"italic": {
|
|
2536
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLm111lEA.ttf"
|
|
2537
|
+
},
|
|
2538
|
+
"normal": {
|
|
2539
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDD4V1s.ttf"
|
|
2540
|
+
}
|
|
2541
|
+
},
|
|
2542
|
+
"900": {
|
|
2543
|
+
"italic": {
|
|
2544
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLm81xlEA.ttf"
|
|
2545
|
+
},
|
|
2546
|
+
"normal": {
|
|
2547
|
+
"latin": "https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLBT5V1s.ttf"
|
|
2548
|
+
}
|
|
2549
|
+
}
|
|
2550
|
+
}
|
|
2551
|
+
},
|
|
2552
|
+
"ptsans": {
|
|
2553
|
+
"family": "PT Sans",
|
|
2554
|
+
"id": "pt-sans",
|
|
2555
|
+
"variants": {
|
|
2556
|
+
"400": {
|
|
2557
|
+
"italic": {
|
|
2558
|
+
"latin": "https://fonts.gstatic.com/s/ptsans/v18/jizYRExUiTo99u79D0eEwA.ttf"
|
|
2559
|
+
},
|
|
2560
|
+
"normal": {
|
|
2561
|
+
"latin": "https://fonts.gstatic.com/s/ptsans/v18/jizaRExUiTo99u79P0U.ttf"
|
|
2562
|
+
}
|
|
2563
|
+
},
|
|
2564
|
+
"700": {
|
|
2565
|
+
"italic": {
|
|
2566
|
+
"latin": "https://fonts.gstatic.com/s/ptsans/v18/jizdRExUiTo99u79D0e8fOytKA.ttf"
|
|
2567
|
+
},
|
|
2568
|
+
"normal": {
|
|
2569
|
+
"latin": "https://fonts.gstatic.com/s/ptsans/v18/jizfRExUiTo99u79B_mh4Ok.ttf"
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
}
|
|
2573
|
+
},
|
|
2574
|
+
"ptsansnarrow": {
|
|
2575
|
+
"family": "PT Sans Narrow",
|
|
2576
|
+
"id": "pt-sans-narrow",
|
|
2577
|
+
"variants": {
|
|
2578
|
+
"400": {
|
|
2579
|
+
"normal": {
|
|
2580
|
+
"latin": "https://fonts.gstatic.com/s/ptsansnarrow/v19/BngRUXNadjH0qYEzV7ab-oWlsYCB.ttf"
|
|
2581
|
+
}
|
|
2582
|
+
},
|
|
2583
|
+
"700": {
|
|
2584
|
+
"normal": {
|
|
2585
|
+
"latin": "https://fonts.gstatic.com/s/ptsansnarrow/v19/BngSUXNadjH0qYEzV7ab-oWlsbg95DiC.ttf"
|
|
2586
|
+
}
|
|
2587
|
+
}
|
|
2588
|
+
}
|
|
2589
|
+
},
|
|
2590
|
+
"ptserif": {
|
|
2591
|
+
"family": "PT Serif",
|
|
2592
|
+
"id": "pt-serif",
|
|
2593
|
+
"variants": {
|
|
2594
|
+
"400": {
|
|
2595
|
+
"italic": {
|
|
2596
|
+
"latin": "https://fonts.gstatic.com/s/ptserif/v19/EJRTQgYoZZY2vCFuvAFTzro.ttf"
|
|
2597
|
+
},
|
|
2598
|
+
"normal": {
|
|
2599
|
+
"latin": "https://fonts.gstatic.com/s/ptserif/v19/EJRVQgYoZZY2vCFuvDFR.ttf"
|
|
2600
|
+
}
|
|
2601
|
+
},
|
|
2602
|
+
"700": {
|
|
2603
|
+
"italic": {
|
|
2604
|
+
"latin": "https://fonts.gstatic.com/s/ptserif/v19/EJRQQgYoZZY2vCFuvAFT9gaQVy4.ttf"
|
|
2605
|
+
},
|
|
2606
|
+
"normal": {
|
|
2607
|
+
"latin": "https://fonts.gstatic.com/s/ptserif/v19/EJRSQgYoZZY2vCFuvAnt65qV.ttf"
|
|
2608
|
+
}
|
|
2609
|
+
}
|
|
2610
|
+
}
|
|
2611
|
+
},
|
|
2612
|
+
"questrial": {
|
|
2613
|
+
"family": "Questrial",
|
|
2614
|
+
"id": "questrial",
|
|
2615
|
+
"variants": {
|
|
2616
|
+
"400": {
|
|
2617
|
+
"normal": {
|
|
2618
|
+
"latin": "https://fonts.gstatic.com/s/questrial/v19/QdVUSTchPBm7nuUeVf7EuQ.ttf"
|
|
2619
|
+
}
|
|
2620
|
+
}
|
|
2621
|
+
}
|
|
2622
|
+
},
|
|
2623
|
+
"quicksand": {
|
|
2624
|
+
"family": "Quicksand",
|
|
2625
|
+
"id": "quicksand",
|
|
2626
|
+
"variants": {
|
|
2627
|
+
"300": {
|
|
2628
|
+
"normal": {
|
|
2629
|
+
"latin": "https://fonts.gstatic.com/s/quicksand/v37/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18E.ttf"
|
|
2630
|
+
}
|
|
2631
|
+
},
|
|
2632
|
+
"400": {
|
|
2633
|
+
"normal": {
|
|
2634
|
+
"latin": "https://fonts.gstatic.com/s/quicksand/v37/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18E.ttf"
|
|
2635
|
+
}
|
|
2636
|
+
},
|
|
2637
|
+
"500": {
|
|
2638
|
+
"normal": {
|
|
2639
|
+
"latin": "https://fonts.gstatic.com/s/quicksand/v37/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18E.ttf"
|
|
2640
|
+
}
|
|
2641
|
+
},
|
|
2642
|
+
"600": {
|
|
2643
|
+
"normal": {
|
|
2644
|
+
"latin": "https://fonts.gstatic.com/s/quicksand/v37/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18E.ttf"
|
|
2645
|
+
}
|
|
2646
|
+
},
|
|
2647
|
+
"700": {
|
|
2648
|
+
"normal": {
|
|
2649
|
+
"latin": "https://fonts.gstatic.com/s/quicksand/v37/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18E.ttf"
|
|
2650
|
+
}
|
|
2651
|
+
}
|
|
2652
|
+
}
|
|
2653
|
+
},
|
|
2654
|
+
"raleway": {
|
|
2655
|
+
"family": "Raleway",
|
|
2656
|
+
"id": "raleway",
|
|
2657
|
+
"variants": {
|
|
2658
|
+
"100": {
|
|
2659
|
+
"italic": {
|
|
2660
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQ.ttf"
|
|
2661
|
+
},
|
|
2662
|
+
"normal": {
|
|
2663
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CP.ttf"
|
|
2664
|
+
}
|
|
2665
|
+
},
|
|
2666
|
+
"200": {
|
|
2667
|
+
"italic": {
|
|
2668
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQ.ttf"
|
|
2669
|
+
},
|
|
2670
|
+
"normal": {
|
|
2671
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCP.ttf"
|
|
2672
|
+
}
|
|
2673
|
+
},
|
|
2674
|
+
"300": {
|
|
2675
|
+
"italic": {
|
|
2676
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQ.ttf"
|
|
2677
|
+
},
|
|
2678
|
+
"normal": {
|
|
2679
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCP.ttf"
|
|
2680
|
+
}
|
|
2681
|
+
},
|
|
2682
|
+
"400": {
|
|
2683
|
+
"italic": {
|
|
2684
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQ.ttf"
|
|
2685
|
+
},
|
|
2686
|
+
"normal": {
|
|
2687
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCP.ttf"
|
|
2688
|
+
}
|
|
2689
|
+
},
|
|
2690
|
+
"500": {
|
|
2691
|
+
"italic": {
|
|
2692
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQ.ttf"
|
|
2693
|
+
},
|
|
2694
|
+
"normal": {
|
|
2695
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCP.ttf"
|
|
2696
|
+
}
|
|
2697
|
+
},
|
|
2698
|
+
"600": {
|
|
2699
|
+
"italic": {
|
|
2700
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQ.ttf"
|
|
2701
|
+
},
|
|
2702
|
+
"normal": {
|
|
2703
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCP.ttf"
|
|
2704
|
+
}
|
|
2705
|
+
},
|
|
2706
|
+
"700": {
|
|
2707
|
+
"italic": {
|
|
2708
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQ.ttf"
|
|
2709
|
+
},
|
|
2710
|
+
"normal": {
|
|
2711
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCP.ttf"
|
|
2712
|
+
}
|
|
2713
|
+
},
|
|
2714
|
+
"800": {
|
|
2715
|
+
"italic": {
|
|
2716
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQ.ttf"
|
|
2717
|
+
},
|
|
2718
|
+
"normal": {
|
|
2719
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCP.ttf"
|
|
2720
|
+
}
|
|
2721
|
+
},
|
|
2722
|
+
"900": {
|
|
2723
|
+
"italic": {
|
|
2724
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQ.ttf"
|
|
2725
|
+
},
|
|
2726
|
+
"normal": {
|
|
2727
|
+
"latin": "https://fonts.gstatic.com/s/raleway/v37/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCP.ttf"
|
|
2728
|
+
}
|
|
2729
|
+
}
|
|
2730
|
+
}
|
|
2731
|
+
},
|
|
2732
|
+
"righteous": {
|
|
2733
|
+
"family": "Righteous",
|
|
2734
|
+
"id": "righteous",
|
|
2735
|
+
"variants": {
|
|
2736
|
+
"400": {
|
|
2737
|
+
"normal": {
|
|
2738
|
+
"latin": "https://fonts.gstatic.com/s/righteous/v18/1cXxaUPXBpj2rGoU7C9mjw.ttf"
|
|
2739
|
+
}
|
|
2740
|
+
}
|
|
2741
|
+
}
|
|
2742
|
+
},
|
|
2743
|
+
"roboto": {
|
|
2744
|
+
"family": "Roboto",
|
|
2745
|
+
"id": "roboto",
|
|
2746
|
+
"variants": {
|
|
2747
|
+
"100": {
|
|
2748
|
+
"italic": {
|
|
2749
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHRiA8.ttf"
|
|
2750
|
+
},
|
|
2751
|
+
"normal": {
|
|
2752
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbGmT.ttf"
|
|
2753
|
+
}
|
|
2754
|
+
},
|
|
2755
|
+
"200": {
|
|
2756
|
+
"italic": {
|
|
2757
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLgHQiA8.ttf"
|
|
2758
|
+
},
|
|
2759
|
+
"normal": {
|
|
2760
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZEbWmT.ttf"
|
|
2761
|
+
}
|
|
2762
|
+
},
|
|
2763
|
+
"300": {
|
|
2764
|
+
"italic": {
|
|
2765
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLt_QiA8.ttf"
|
|
2766
|
+
},
|
|
2767
|
+
"normal": {
|
|
2768
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmT.ttf"
|
|
2769
|
+
}
|
|
2770
|
+
},
|
|
2771
|
+
"400": {
|
|
2772
|
+
"italic": {
|
|
2773
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQiA8.ttf"
|
|
2774
|
+
},
|
|
2775
|
+
"normal": {
|
|
2776
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmT.ttf"
|
|
2777
|
+
}
|
|
2778
|
+
},
|
|
2779
|
+
"500": {
|
|
2780
|
+
"italic": {
|
|
2781
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLrPQiA8.ttf"
|
|
2782
|
+
},
|
|
2783
|
+
"normal": {
|
|
2784
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmT.ttf"
|
|
2785
|
+
}
|
|
2786
|
+
},
|
|
2787
|
+
"600": {
|
|
2788
|
+
"italic": {
|
|
2789
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLl_XiA8.ttf"
|
|
2790
|
+
},
|
|
2791
|
+
"normal": {
|
|
2792
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYaammT.ttf"
|
|
2793
|
+
}
|
|
2794
|
+
},
|
|
2795
|
+
"700": {
|
|
2796
|
+
"italic": {
|
|
2797
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLmbXiA8.ttf"
|
|
2798
|
+
},
|
|
2799
|
+
"normal": {
|
|
2800
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammT.ttf"
|
|
2801
|
+
}
|
|
2802
|
+
},
|
|
2803
|
+
"800": {
|
|
2804
|
+
"italic": {
|
|
2805
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLgHXiA8.ttf"
|
|
2806
|
+
},
|
|
2807
|
+
"normal": {
|
|
2808
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZEammT.ttf"
|
|
2809
|
+
}
|
|
2810
|
+
},
|
|
2811
|
+
"900": {
|
|
2812
|
+
"italic": {
|
|
2813
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLijXiA8.ttf"
|
|
2814
|
+
},
|
|
2815
|
+
"normal": {
|
|
2816
|
+
"latin": "https://fonts.gstatic.com/s/roboto/v50/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammT.ttf"
|
|
2817
|
+
}
|
|
2818
|
+
}
|
|
2819
|
+
}
|
|
2820
|
+
},
|
|
2821
|
+
"robotocondensed": {
|
|
2822
|
+
"family": "Roboto Condensed",
|
|
2823
|
+
"id": "roboto-condensed",
|
|
2824
|
+
"variants": {
|
|
2825
|
+
"100": {
|
|
2826
|
+
"italic": {
|
|
2827
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64RgL5Xk.ttf"
|
|
2828
|
+
},
|
|
2829
|
+
"normal": {
|
|
2830
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyo_BJ.ttf"
|
|
2831
|
+
}
|
|
2832
|
+
},
|
|
2833
|
+
"200": {
|
|
2834
|
+
"italic": {
|
|
2835
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64ZgK5Xk.ttf"
|
|
2836
|
+
},
|
|
2837
|
+
"normal": {
|
|
2838
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyUyovBJ.ttf"
|
|
2839
|
+
}
|
|
2840
|
+
},
|
|
2841
|
+
"300": {
|
|
2842
|
+
"italic": {
|
|
2843
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64UYK5Xk.ttf"
|
|
2844
|
+
},
|
|
2845
|
+
"normal": {
|
|
2846
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsovBJ.ttf"
|
|
2847
|
+
}
|
|
2848
|
+
},
|
|
2849
|
+
"400": {
|
|
2850
|
+
"italic": {
|
|
2851
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64RgK5Xk.ttf"
|
|
2852
|
+
},
|
|
2853
|
+
"normal": {
|
|
2854
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyovBJ.ttf"
|
|
2855
|
+
}
|
|
2856
|
+
},
|
|
2857
|
+
"500": {
|
|
2858
|
+
"italic": {
|
|
2859
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64SoK5Xk.ttf"
|
|
2860
|
+
},
|
|
2861
|
+
"normal": {
|
|
2862
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWAovBJ.ttf"
|
|
2863
|
+
}
|
|
2864
|
+
},
|
|
2865
|
+
"600": {
|
|
2866
|
+
"italic": {
|
|
2867
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64cYN5Xk.ttf"
|
|
2868
|
+
},
|
|
2869
|
+
"normal": {
|
|
2870
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVspfBJ.ttf"
|
|
2871
|
+
}
|
|
2872
|
+
},
|
|
2873
|
+
"700": {
|
|
2874
|
+
"italic": {
|
|
2875
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64f8N5Xk.ttf"
|
|
2876
|
+
},
|
|
2877
|
+
"normal": {
|
|
2878
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpfBJ.ttf"
|
|
2879
|
+
}
|
|
2880
|
+
},
|
|
2881
|
+
"800": {
|
|
2882
|
+
"italic": {
|
|
2883
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64ZgN5Xk.ttf"
|
|
2884
|
+
},
|
|
2885
|
+
"normal": {
|
|
2886
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyUypfBJ.ttf"
|
|
2887
|
+
}
|
|
2888
|
+
},
|
|
2889
|
+
"900": {
|
|
2890
|
+
"italic": {
|
|
2891
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVW2ZhZI2eCN5jzbjEETS9weq8-19ehAyvMum7nfDB64bEN5Xk.ttf"
|
|
2892
|
+
},
|
|
2893
|
+
"normal": {
|
|
2894
|
+
"latin": "https://fonts.gstatic.com/s/robotocondensed/v31/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyUbpfBJ.ttf"
|
|
2895
|
+
}
|
|
2896
|
+
}
|
|
2897
|
+
}
|
|
2898
|
+
},
|
|
2899
|
+
"robotomono": {
|
|
2900
|
+
"family": "Roboto Mono",
|
|
2901
|
+
"id": "roboto-mono",
|
|
2902
|
+
"variants": {
|
|
2903
|
+
"100": {
|
|
2904
|
+
"italic": {
|
|
2905
|
+
"latin": "https://fonts.gstatic.com/s/robotomono/v31/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9.ttf"
|
|
2906
|
+
},
|
|
2907
|
+
"normal": {
|
|
2908
|
+
"latin": "https://fonts.gstatic.com/s/robotomono/v31/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQw.ttf"
|
|
2909
|
+
}
|
|
2910
|
+
},
|
|
2911
|
+
"200": {
|
|
2912
|
+
"italic": {
|
|
2913
|
+
"latin": "https://fonts.gstatic.com/s/robotomono/v31/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9.ttf"
|
|
2914
|
+
},
|
|
2915
|
+
"normal": {
|
|
2916
|
+
"latin": "https://fonts.gstatic.com/s/robotomono/v31/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQw.ttf"
|
|
2917
|
+
}
|
|
2918
|
+
},
|
|
2919
|
+
"300": {
|
|
2920
|
+
"italic": {
|
|
2921
|
+
"latin": "https://fonts.gstatic.com/s/robotomono/v31/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9.ttf"
|
|
2922
|
+
},
|
|
2923
|
+
"normal": {
|
|
2924
|
+
"latin": "https://fonts.gstatic.com/s/robotomono/v31/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQw.ttf"
|
|
2925
|
+
}
|
|
2926
|
+
},
|
|
2927
|
+
"400": {
|
|
2928
|
+
"italic": {
|
|
2929
|
+
"latin": "https://fonts.gstatic.com/s/robotomono/v31/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9.ttf"
|
|
2930
|
+
},
|
|
2931
|
+
"normal": {
|
|
2932
|
+
"latin": "https://fonts.gstatic.com/s/robotomono/v31/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQw.ttf"
|
|
2933
|
+
}
|
|
2934
|
+
},
|
|
2935
|
+
"500": {
|
|
2936
|
+
"italic": {
|
|
2937
|
+
"latin": "https://fonts.gstatic.com/s/robotomono/v31/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9.ttf"
|
|
2938
|
+
},
|
|
2939
|
+
"normal": {
|
|
2940
|
+
"latin": "https://fonts.gstatic.com/s/robotomono/v31/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQw.ttf"
|
|
2941
|
+
}
|
|
2942
|
+
},
|
|
2943
|
+
"600": {
|
|
2944
|
+
"italic": {
|
|
2945
|
+
"latin": "https://fonts.gstatic.com/s/robotomono/v31/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9.ttf"
|
|
2946
|
+
},
|
|
2947
|
+
"normal": {
|
|
2948
|
+
"latin": "https://fonts.gstatic.com/s/robotomono/v31/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQw.ttf"
|
|
2949
|
+
}
|
|
2950
|
+
},
|
|
2951
|
+
"700": {
|
|
2952
|
+
"italic": {
|
|
2953
|
+
"latin": "https://fonts.gstatic.com/s/robotomono/v31/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9.ttf"
|
|
2954
|
+
},
|
|
2955
|
+
"normal": {
|
|
2956
|
+
"latin": "https://fonts.gstatic.com/s/robotomono/v31/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQw.ttf"
|
|
2957
|
+
}
|
|
2958
|
+
}
|
|
2959
|
+
}
|
|
2960
|
+
},
|
|
2961
|
+
"robotoslab": {
|
|
2962
|
+
"family": "Roboto Slab",
|
|
2963
|
+
"id": "roboto-slab",
|
|
2964
|
+
"variants": {
|
|
2965
|
+
"100": {
|
|
2966
|
+
"normal": {
|
|
2967
|
+
"latin": "https://fonts.gstatic.com/s/robotoslab/v36/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaA.ttf"
|
|
2968
|
+
}
|
|
2969
|
+
},
|
|
2970
|
+
"200": {
|
|
2971
|
+
"normal": {
|
|
2972
|
+
"latin": "https://fonts.gstatic.com/s/robotoslab/v36/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaA.ttf"
|
|
2973
|
+
}
|
|
2974
|
+
},
|
|
2975
|
+
"300": {
|
|
2976
|
+
"normal": {
|
|
2977
|
+
"latin": "https://fonts.gstatic.com/s/robotoslab/v36/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaA.ttf"
|
|
2978
|
+
}
|
|
2979
|
+
},
|
|
2980
|
+
"400": {
|
|
2981
|
+
"normal": {
|
|
2982
|
+
"latin": "https://fonts.gstatic.com/s/robotoslab/v36/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaA.ttf"
|
|
2983
|
+
}
|
|
2984
|
+
},
|
|
2985
|
+
"500": {
|
|
2986
|
+
"normal": {
|
|
2987
|
+
"latin": "https://fonts.gstatic.com/s/robotoslab/v36/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaA.ttf"
|
|
2988
|
+
}
|
|
2989
|
+
},
|
|
2990
|
+
"600": {
|
|
2991
|
+
"normal": {
|
|
2992
|
+
"latin": "https://fonts.gstatic.com/s/robotoslab/v36/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaA.ttf"
|
|
2993
|
+
}
|
|
2994
|
+
},
|
|
2995
|
+
"700": {
|
|
2996
|
+
"normal": {
|
|
2997
|
+
"latin": "https://fonts.gstatic.com/s/robotoslab/v36/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaA.ttf"
|
|
2998
|
+
}
|
|
2999
|
+
},
|
|
3000
|
+
"800": {
|
|
3001
|
+
"normal": {
|
|
3002
|
+
"latin": "https://fonts.gstatic.com/s/robotoslab/v36/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaA.ttf"
|
|
3003
|
+
}
|
|
3004
|
+
},
|
|
3005
|
+
"900": {
|
|
3006
|
+
"normal": {
|
|
3007
|
+
"latin": "https://fonts.gstatic.com/s/robotoslab/v36/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaA.ttf"
|
|
3008
|
+
}
|
|
3009
|
+
}
|
|
3010
|
+
}
|
|
3011
|
+
},
|
|
3012
|
+
"rokkitt": {
|
|
3013
|
+
"family": "Rokkitt",
|
|
3014
|
+
"id": "rokkitt",
|
|
3015
|
+
"variants": {
|
|
3016
|
+
"100": {
|
|
3017
|
+
"italic": {
|
|
3018
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiJGbo.ttf"
|
|
3019
|
+
},
|
|
3020
|
+
"normal": {
|
|
3021
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDL.ttf"
|
|
3022
|
+
}
|
|
3023
|
+
},
|
|
3024
|
+
"200": {
|
|
3025
|
+
"italic": {
|
|
3026
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiIGbo.ttf"
|
|
3027
|
+
},
|
|
3028
|
+
"normal": {
|
|
3029
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DL.ttf"
|
|
3030
|
+
}
|
|
3031
|
+
},
|
|
3032
|
+
"300": {
|
|
3033
|
+
"italic": {
|
|
3034
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NCaIGbo.ttf"
|
|
3035
|
+
},
|
|
3036
|
+
"normal": {
|
|
3037
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DL.ttf"
|
|
3038
|
+
}
|
|
3039
|
+
},
|
|
3040
|
+
"400": {
|
|
3041
|
+
"italic": {
|
|
3042
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiIGbo.ttf"
|
|
3043
|
+
},
|
|
3044
|
+
"normal": {
|
|
3045
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DL.ttf"
|
|
3046
|
+
}
|
|
3047
|
+
},
|
|
3048
|
+
"500": {
|
|
3049
|
+
"italic": {
|
|
3050
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NEqIGbo.ttf"
|
|
3051
|
+
},
|
|
3052
|
+
"normal": {
|
|
3053
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DL.ttf"
|
|
3054
|
+
}
|
|
3055
|
+
},
|
|
3056
|
+
"600": {
|
|
3057
|
+
"italic": {
|
|
3058
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NKaPGbo.ttf"
|
|
3059
|
+
},
|
|
3060
|
+
"normal": {
|
|
3061
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDL.ttf"
|
|
3062
|
+
}
|
|
3063
|
+
},
|
|
3064
|
+
"700": {
|
|
3065
|
+
"italic": {
|
|
3066
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NJ-PGbo.ttf"
|
|
3067
|
+
},
|
|
3068
|
+
"normal": {
|
|
3069
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDL.ttf"
|
|
3070
|
+
}
|
|
3071
|
+
},
|
|
3072
|
+
"800": {
|
|
3073
|
+
"italic": {
|
|
3074
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiPGbo.ttf"
|
|
3075
|
+
},
|
|
3076
|
+
"normal": {
|
|
3077
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDL.ttf"
|
|
3078
|
+
}
|
|
3079
|
+
},
|
|
3080
|
+
"900": {
|
|
3081
|
+
"italic": {
|
|
3082
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NNGPGbo.ttf"
|
|
3083
|
+
},
|
|
3084
|
+
"normal": {
|
|
3085
|
+
"latin": "https://fonts.gstatic.com/s/rokkitt/v39/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDL.ttf"
|
|
3086
|
+
}
|
|
3087
|
+
}
|
|
3088
|
+
}
|
|
3089
|
+
},
|
|
3090
|
+
"rubik": {
|
|
3091
|
+
"family": "Rubik",
|
|
3092
|
+
"id": "rubik",
|
|
3093
|
+
"variants": {
|
|
3094
|
+
"300": {
|
|
3095
|
+
"italic": {
|
|
3096
|
+
"latin": "https://fonts.gstatic.com/s/rubik/v31/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0Uw.ttf"
|
|
3097
|
+
},
|
|
3098
|
+
"normal": {
|
|
3099
|
+
"latin": "https://fonts.gstatic.com/s/rubik/v31/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UA.ttf"
|
|
3100
|
+
}
|
|
3101
|
+
},
|
|
3102
|
+
"400": {
|
|
3103
|
+
"italic": {
|
|
3104
|
+
"latin": "https://fonts.gstatic.com/s/rubik/v31/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0Uw.ttf"
|
|
3105
|
+
},
|
|
3106
|
+
"normal": {
|
|
3107
|
+
"latin": "https://fonts.gstatic.com/s/rubik/v31/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UA.ttf"
|
|
3108
|
+
}
|
|
3109
|
+
},
|
|
3110
|
+
"500": {
|
|
3111
|
+
"italic": {
|
|
3112
|
+
"latin": "https://fonts.gstatic.com/s/rubik/v31/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0Uw.ttf"
|
|
3113
|
+
},
|
|
3114
|
+
"normal": {
|
|
3115
|
+
"latin": "https://fonts.gstatic.com/s/rubik/v31/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UA.ttf"
|
|
3116
|
+
}
|
|
3117
|
+
},
|
|
3118
|
+
"600": {
|
|
3119
|
+
"italic": {
|
|
3120
|
+
"latin": "https://fonts.gstatic.com/s/rubik/v31/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEUw.ttf"
|
|
3121
|
+
},
|
|
3122
|
+
"normal": {
|
|
3123
|
+
"latin": "https://fonts.gstatic.com/s/rubik/v31/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1UA.ttf"
|
|
3124
|
+
}
|
|
3125
|
+
},
|
|
3126
|
+
"700": {
|
|
3127
|
+
"italic": {
|
|
3128
|
+
"latin": "https://fonts.gstatic.com/s/rubik/v31/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEUw.ttf"
|
|
3129
|
+
},
|
|
3130
|
+
"normal": {
|
|
3131
|
+
"latin": "https://fonts.gstatic.com/s/rubik/v31/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UA.ttf"
|
|
3132
|
+
}
|
|
3133
|
+
},
|
|
3134
|
+
"800": {
|
|
3135
|
+
"italic": {
|
|
3136
|
+
"latin": "https://fonts.gstatic.com/s/rubik/v31/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEUw.ttf"
|
|
3137
|
+
},
|
|
3138
|
+
"normal": {
|
|
3139
|
+
"latin": "https://fonts.gstatic.com/s/rubik/v31/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1UA.ttf"
|
|
3140
|
+
}
|
|
3141
|
+
},
|
|
3142
|
+
"900": {
|
|
3143
|
+
"italic": {
|
|
3144
|
+
"latin": "https://fonts.gstatic.com/s/rubik/v31/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEUw.ttf"
|
|
3145
|
+
},
|
|
3146
|
+
"normal": {
|
|
3147
|
+
"latin": "https://fonts.gstatic.com/s/rubik/v31/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1UA.ttf"
|
|
3148
|
+
}
|
|
3149
|
+
}
|
|
3150
|
+
}
|
|
3151
|
+
},
|
|
3152
|
+
"rubikmonoone": {
|
|
3153
|
+
"family": "Rubik Mono One",
|
|
3154
|
+
"id": "rubik-mono-one",
|
|
3155
|
+
"variants": {
|
|
3156
|
+
"400": {
|
|
3157
|
+
"normal": {
|
|
3158
|
+
"latin": "https://fonts.gstatic.com/s/rubikmonoone/v20/UqyJK8kPP3hjw6ANTdfRk9YSN-8w.ttf"
|
|
3159
|
+
}
|
|
3160
|
+
}
|
|
3161
|
+
}
|
|
3162
|
+
},
|
|
3163
|
+
"sacramento": {
|
|
3164
|
+
"family": "Sacramento",
|
|
3165
|
+
"id": "sacramento",
|
|
3166
|
+
"variants": {
|
|
3167
|
+
"400": {
|
|
3168
|
+
"normal": {
|
|
3169
|
+
"latin": "https://fonts.gstatic.com/s/sacramento/v17/buEzpo6gcdjy0EiZMBUG0Co.ttf"
|
|
3170
|
+
}
|
|
3171
|
+
}
|
|
3172
|
+
}
|
|
3173
|
+
},
|
|
3174
|
+
"satisfy": {
|
|
3175
|
+
"family": "Satisfy",
|
|
3176
|
+
"id": "satisfy",
|
|
3177
|
+
"variants": {
|
|
3178
|
+
"400": {
|
|
3179
|
+
"normal": {
|
|
3180
|
+
"latin": "https://fonts.gstatic.com/s/satisfy/v22/rP2Hp2yn6lkG50LoOZQ.ttf"
|
|
3181
|
+
}
|
|
3182
|
+
}
|
|
3183
|
+
}
|
|
3184
|
+
},
|
|
3185
|
+
"signika": {
|
|
3186
|
+
"family": "Signika",
|
|
3187
|
+
"id": "signika",
|
|
3188
|
+
"variants": {
|
|
3189
|
+
"300": {
|
|
3190
|
+
"normal": {
|
|
3191
|
+
"latin": "https://fonts.gstatic.com/s/signika/v29/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r93zuYzQ.ttf"
|
|
3192
|
+
}
|
|
3193
|
+
},
|
|
3194
|
+
"400": {
|
|
3195
|
+
"normal": {
|
|
3196
|
+
"latin": "https://fonts.gstatic.com/s/signika/v29/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r9gTuYzQ.ttf"
|
|
3197
|
+
}
|
|
3198
|
+
},
|
|
3199
|
+
"500": {
|
|
3200
|
+
"normal": {
|
|
3201
|
+
"latin": "https://fonts.gstatic.com/s/signika/v29/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r9szuYzQ.ttf"
|
|
3202
|
+
}
|
|
3203
|
+
},
|
|
3204
|
+
"600": {
|
|
3205
|
+
"normal": {
|
|
3206
|
+
"latin": "https://fonts.gstatic.com/s/signika/v29/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r9XzyYzQ.ttf"
|
|
3207
|
+
}
|
|
3208
|
+
},
|
|
3209
|
+
"700": {
|
|
3210
|
+
"normal": {
|
|
3211
|
+
"latin": "https://fonts.gstatic.com/s/signika/v29/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r9ZjyYzQ.ttf"
|
|
3212
|
+
}
|
|
3213
|
+
}
|
|
3214
|
+
}
|
|
3215
|
+
},
|
|
3216
|
+
"sora": {
|
|
3217
|
+
"family": "Sora",
|
|
3218
|
+
"id": "sora",
|
|
3219
|
+
"variants": {
|
|
3220
|
+
"100": {
|
|
3221
|
+
"normal": {
|
|
3222
|
+
"latin": "https://fonts.gstatic.com/s/sora/v17/xMQOuFFYT72X5wkB_18qmnndmSdSn3-K.ttf"
|
|
3223
|
+
}
|
|
3224
|
+
},
|
|
3225
|
+
"200": {
|
|
3226
|
+
"normal": {
|
|
3227
|
+
"latin": "https://fonts.gstatic.com/s/sora/v17/xMQOuFFYT72X5wkB_18qmnndmSfSnn-K.ttf"
|
|
3228
|
+
}
|
|
3229
|
+
},
|
|
3230
|
+
"300": {
|
|
3231
|
+
"normal": {
|
|
3232
|
+
"latin": "https://fonts.gstatic.com/s/sora/v17/xMQOuFFYT72X5wkB_18qmnndmScMnn-K.ttf"
|
|
3233
|
+
}
|
|
3234
|
+
},
|
|
3235
|
+
"400": {
|
|
3236
|
+
"normal": {
|
|
3237
|
+
"latin": "https://fonts.gstatic.com/s/sora/v17/xMQOuFFYT72X5wkB_18qmnndmSdSnn-K.ttf"
|
|
3238
|
+
}
|
|
3239
|
+
},
|
|
3240
|
+
"500": {
|
|
3241
|
+
"normal": {
|
|
3242
|
+
"latin": "https://fonts.gstatic.com/s/sora/v17/xMQOuFFYT72X5wkB_18qmnndmSdgnn-K.ttf"
|
|
3243
|
+
}
|
|
3244
|
+
},
|
|
3245
|
+
"600": {
|
|
3246
|
+
"normal": {
|
|
3247
|
+
"latin": "https://fonts.gstatic.com/s/sora/v17/xMQOuFFYT72X5wkB_18qmnndmSeMmX-K.ttf"
|
|
3248
|
+
}
|
|
3249
|
+
},
|
|
3250
|
+
"700": {
|
|
3251
|
+
"normal": {
|
|
3252
|
+
"latin": "https://fonts.gstatic.com/s/sora/v17/xMQOuFFYT72X5wkB_18qmnndmSe1mX-K.ttf"
|
|
3253
|
+
}
|
|
3254
|
+
},
|
|
3255
|
+
"800": {
|
|
3256
|
+
"normal": {
|
|
3257
|
+
"latin": "https://fonts.gstatic.com/s/sora/v17/xMQOuFFYT72X5wkB_18qmnndmSfSmX-K.ttf"
|
|
3258
|
+
}
|
|
3259
|
+
}
|
|
3260
|
+
}
|
|
3261
|
+
},
|
|
3262
|
+
"spacegrotesk": {
|
|
3263
|
+
"family": "Space Grotesk",
|
|
3264
|
+
"id": "space-grotesk",
|
|
3265
|
+
"variants": {
|
|
3266
|
+
"300": {
|
|
3267
|
+
"normal": {
|
|
3268
|
+
"latin": "https://fonts.gstatic.com/s/spacegrotesk/v22/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsj.ttf"
|
|
3269
|
+
}
|
|
3270
|
+
},
|
|
3271
|
+
"400": {
|
|
3272
|
+
"normal": {
|
|
3273
|
+
"latin": "https://fonts.gstatic.com/s/spacegrotesk/v22/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsj.ttf"
|
|
3274
|
+
}
|
|
3275
|
+
},
|
|
3276
|
+
"500": {
|
|
3277
|
+
"normal": {
|
|
3278
|
+
"latin": "https://fonts.gstatic.com/s/spacegrotesk/v22/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsj.ttf"
|
|
3279
|
+
}
|
|
3280
|
+
},
|
|
3281
|
+
"600": {
|
|
3282
|
+
"normal": {
|
|
3283
|
+
"latin": "https://fonts.gstatic.com/s/spacegrotesk/v22/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42Vksj.ttf"
|
|
3284
|
+
}
|
|
3285
|
+
},
|
|
3286
|
+
"700": {
|
|
3287
|
+
"normal": {
|
|
3288
|
+
"latin": "https://fonts.gstatic.com/s/spacegrotesk/v22/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksj.ttf"
|
|
3289
|
+
}
|
|
3290
|
+
}
|
|
3291
|
+
}
|
|
3292
|
+
},
|
|
3293
|
+
"spectral": {
|
|
3294
|
+
"family": "Spectral",
|
|
3295
|
+
"id": "spectral",
|
|
3296
|
+
"variants": {
|
|
3297
|
+
"200": {
|
|
3298
|
+
"italic": {
|
|
3299
|
+
"latin": "https://fonts.gstatic.com/s/spectral/v15/rnCu-xNNww_2s0amA9M8qrXHafM.ttf"
|
|
3300
|
+
},
|
|
3301
|
+
"normal": {
|
|
3302
|
+
"latin": "https://fonts.gstatic.com/s/spectral/v15/rnCs-xNNww_2s0amA9v2s13G.ttf"
|
|
3303
|
+
}
|
|
3304
|
+
},
|
|
3305
|
+
"300": {
|
|
3306
|
+
"italic": {
|
|
3307
|
+
"latin": "https://fonts.gstatic.com/s/spectral/v15/rnCu-xNNww_2s0amA9M8qtHEafM.ttf"
|
|
3308
|
+
},
|
|
3309
|
+
"normal": {
|
|
3310
|
+
"latin": "https://fonts.gstatic.com/s/spectral/v15/rnCs-xNNww_2s0amA9uSsF3G.ttf"
|
|
3311
|
+
}
|
|
3312
|
+
},
|
|
3313
|
+
"400": {
|
|
3314
|
+
"italic": {
|
|
3315
|
+
"latin": "https://fonts.gstatic.com/s/spectral/v15/rnCt-xNNww_2s0amA9M8kn0.ttf"
|
|
3316
|
+
},
|
|
3317
|
+
"normal": {
|
|
3318
|
+
"latin": "https://fonts.gstatic.com/s/spectral/v15/rnCr-xNNww_2s0amA-M-.ttf"
|
|
3319
|
+
}
|
|
3320
|
+
},
|
|
3321
|
+
"500": {
|
|
3322
|
+
"italic": {
|
|
3323
|
+
"latin": "https://fonts.gstatic.com/s/spectral/v15/rnCu-xNNww_2s0amA9M8qonFafM.ttf"
|
|
3324
|
+
},
|
|
3325
|
+
"normal": {
|
|
3326
|
+
"latin": "https://fonts.gstatic.com/s/spectral/v15/rnCs-xNNww_2s0amA9vKsV3G.ttf"
|
|
3327
|
+
}
|
|
3328
|
+
},
|
|
3329
|
+
"600": {
|
|
3330
|
+
"italic": {
|
|
3331
|
+
"latin": "https://fonts.gstatic.com/s/spectral/v15/rnCu-xNNww_2s0amA9M8qqXCafM.ttf"
|
|
3332
|
+
},
|
|
3333
|
+
"normal": {
|
|
3334
|
+
"latin": "https://fonts.gstatic.com/s/spectral/v15/rnCs-xNNww_2s0amA9vmtl3G.ttf"
|
|
3335
|
+
}
|
|
3336
|
+
},
|
|
3337
|
+
"700": {
|
|
3338
|
+
"italic": {
|
|
3339
|
+
"latin": "https://fonts.gstatic.com/s/spectral/v15/rnCu-xNNww_2s0amA9M8qsHDafM.ttf"
|
|
3340
|
+
},
|
|
3341
|
+
"normal": {
|
|
3342
|
+
"latin": "https://fonts.gstatic.com/s/spectral/v15/rnCs-xNNww_2s0amA9uCt13G.ttf"
|
|
3343
|
+
}
|
|
3344
|
+
},
|
|
3345
|
+
"800": {
|
|
3346
|
+
"italic": {
|
|
3347
|
+
"latin": "https://fonts.gstatic.com/s/spectral/v15/rnCu-xNNww_2s0amA9M8qt3AafM.ttf"
|
|
3348
|
+
},
|
|
3349
|
+
"normal": {
|
|
3350
|
+
"latin": "https://fonts.gstatic.com/s/spectral/v15/rnCs-xNNww_2s0amA9uetF3G.ttf"
|
|
3351
|
+
}
|
|
3352
|
+
}
|
|
3353
|
+
}
|
|
3354
|
+
},
|
|
3355
|
+
"spectralsc": {
|
|
3356
|
+
"family": "Spectral SC",
|
|
3357
|
+
"id": "spectral-sc",
|
|
3358
|
+
"variants": {
|
|
3359
|
+
"200": {
|
|
3360
|
+
"italic": {
|
|
3361
|
+
"latin": "https://fonts.gstatic.com/s/spectralsc/v15/Ktk2ALCRZonmalTgyPmRfsWg26zWN4M.ttf"
|
|
3362
|
+
},
|
|
3363
|
+
"normal": {
|
|
3364
|
+
"latin": "https://fonts.gstatic.com/s/spectralsc/v15/Ktk0ALCRZonmalTgyPmRfs1qwkTX.ttf"
|
|
3365
|
+
}
|
|
3366
|
+
},
|
|
3367
|
+
"300": {
|
|
3368
|
+
"italic": {
|
|
3369
|
+
"latin": "https://fonts.gstatic.com/s/spectralsc/v15/Ktk2ALCRZonmalTgyPmRfsWg28jVN4M.ttf"
|
|
3370
|
+
},
|
|
3371
|
+
"normal": {
|
|
3372
|
+
"latin": "https://fonts.gstatic.com/s/spectralsc/v15/Ktk0ALCRZonmalTgyPmRfs0OwUTX.ttf"
|
|
3373
|
+
}
|
|
3374
|
+
},
|
|
3375
|
+
"400": {
|
|
3376
|
+
"italic": {
|
|
3377
|
+
"latin": "https://fonts.gstatic.com/s/spectralsc/v15/KtkrALCRZonmalTgyPmRfsWg42Q.ttf"
|
|
3378
|
+
},
|
|
3379
|
+
"normal": {
|
|
3380
|
+
"latin": "https://fonts.gstatic.com/s/spectralsc/v15/KtkpALCRZonmalTgyPmRfvWi.ttf"
|
|
3381
|
+
}
|
|
3382
|
+
},
|
|
3383
|
+
"500": {
|
|
3384
|
+
"italic": {
|
|
3385
|
+
"latin": "https://fonts.gstatic.com/s/spectralsc/v15/Ktk2ALCRZonmalTgyPmRfsWg25DUN4M.ttf"
|
|
3386
|
+
},
|
|
3387
|
+
"normal": {
|
|
3388
|
+
"latin": "https://fonts.gstatic.com/s/spectralsc/v15/Ktk0ALCRZonmalTgyPmRfs1WwETX.ttf"
|
|
3389
|
+
}
|
|
3390
|
+
},
|
|
3391
|
+
"600": {
|
|
3392
|
+
"italic": {
|
|
3393
|
+
"latin": "https://fonts.gstatic.com/s/spectralsc/v15/Ktk2ALCRZonmalTgyPmRfsWg27zTN4M.ttf"
|
|
3394
|
+
},
|
|
3395
|
+
"normal": {
|
|
3396
|
+
"latin": "https://fonts.gstatic.com/s/spectralsc/v15/Ktk0ALCRZonmalTgyPmRfs16x0TX.ttf"
|
|
3397
|
+
}
|
|
3398
|
+
},
|
|
3399
|
+
"700": {
|
|
3400
|
+
"italic": {
|
|
3401
|
+
"latin": "https://fonts.gstatic.com/s/spectralsc/v15/Ktk2ALCRZonmalTgyPmRfsWg29jSN4M.ttf"
|
|
3402
|
+
},
|
|
3403
|
+
"normal": {
|
|
3404
|
+
"latin": "https://fonts.gstatic.com/s/spectralsc/v15/Ktk0ALCRZonmalTgyPmRfs0exkTX.ttf"
|
|
3405
|
+
}
|
|
3406
|
+
},
|
|
3407
|
+
"800": {
|
|
3408
|
+
"italic": {
|
|
3409
|
+
"latin": "https://fonts.gstatic.com/s/spectralsc/v15/Ktk2ALCRZonmalTgyPmRfsWg28TRN4M.ttf"
|
|
3410
|
+
},
|
|
3411
|
+
"normal": {
|
|
3412
|
+
"latin": "https://fonts.gstatic.com/s/spectralsc/v15/Ktk0ALCRZonmalTgyPmRfs0CxUTX.ttf"
|
|
3413
|
+
}
|
|
3414
|
+
}
|
|
3415
|
+
}
|
|
3416
|
+
},
|
|
3417
|
+
"syne": {
|
|
3418
|
+
"family": "Syne",
|
|
3419
|
+
"id": "syne",
|
|
3420
|
+
"variants": {
|
|
3421
|
+
"400": {
|
|
3422
|
+
"normal": {
|
|
3423
|
+
"latin": "https://fonts.gstatic.com/s/syne/v24/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6k.ttf"
|
|
3424
|
+
}
|
|
3425
|
+
},
|
|
3426
|
+
"500": {
|
|
3427
|
+
"normal": {
|
|
3428
|
+
"latin": "https://fonts.gstatic.com/s/syne/v24/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6k.ttf"
|
|
3429
|
+
}
|
|
3430
|
+
},
|
|
3431
|
+
"600": {
|
|
3432
|
+
"normal": {
|
|
3433
|
+
"latin": "https://fonts.gstatic.com/s/syne/v24/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6k.ttf"
|
|
3434
|
+
}
|
|
3435
|
+
},
|
|
3436
|
+
"700": {
|
|
3437
|
+
"normal": {
|
|
3438
|
+
"latin": "https://fonts.gstatic.com/s/syne/v24/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6k.ttf"
|
|
3439
|
+
}
|
|
3440
|
+
},
|
|
3441
|
+
"800": {
|
|
3442
|
+
"normal": {
|
|
3443
|
+
"latin": "https://fonts.gstatic.com/s/syne/v24/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6k.ttf"
|
|
3444
|
+
}
|
|
3445
|
+
}
|
|
3446
|
+
}
|
|
3447
|
+
},
|
|
3448
|
+
"tajawal": {
|
|
3449
|
+
"family": "Tajawal",
|
|
3450
|
+
"id": "tajawal",
|
|
3451
|
+
"variants": {
|
|
3452
|
+
"200": {
|
|
3453
|
+
"normal": {
|
|
3454
|
+
"latin": "https://fonts.gstatic.com/s/tajawal/v12/Iurf6YBj_oCad4k1l_6gLrY.ttf"
|
|
3455
|
+
}
|
|
3456
|
+
},
|
|
3457
|
+
"300": {
|
|
3458
|
+
"normal": {
|
|
3459
|
+
"latin": "https://fonts.gstatic.com/s/tajawal/v12/Iurf6YBj_oCad4k1l5qjLrY.ttf"
|
|
3460
|
+
}
|
|
3461
|
+
},
|
|
3462
|
+
"400": {
|
|
3463
|
+
"normal": {
|
|
3464
|
+
"latin": "https://fonts.gstatic.com/s/tajawal/v12/Iura6YBj_oCad4k1rzY.ttf"
|
|
3465
|
+
}
|
|
3466
|
+
},
|
|
3467
|
+
"500": {
|
|
3468
|
+
"normal": {
|
|
3469
|
+
"latin": "https://fonts.gstatic.com/s/tajawal/v12/Iurf6YBj_oCad4k1l8KiLrY.ttf"
|
|
3470
|
+
}
|
|
3471
|
+
},
|
|
3472
|
+
"700": {
|
|
3473
|
+
"normal": {
|
|
3474
|
+
"latin": "https://fonts.gstatic.com/s/tajawal/v12/Iurf6YBj_oCad4k1l4qkLrY.ttf"
|
|
3475
|
+
}
|
|
3476
|
+
},
|
|
3477
|
+
"800": {
|
|
3478
|
+
"normal": {
|
|
3479
|
+
"latin": "https://fonts.gstatic.com/s/tajawal/v12/Iurf6YBj_oCad4k1l5anLrY.ttf"
|
|
3480
|
+
}
|
|
3481
|
+
},
|
|
3482
|
+
"900": {
|
|
3483
|
+
"normal": {
|
|
3484
|
+
"latin": "https://fonts.gstatic.com/s/tajawal/v12/Iurf6YBj_oCad4k1l7KmLrY.ttf"
|
|
3485
|
+
}
|
|
3486
|
+
}
|
|
3487
|
+
}
|
|
3488
|
+
},
|
|
3489
|
+
"teko": {
|
|
3490
|
+
"family": "Teko",
|
|
3491
|
+
"id": "teko",
|
|
3492
|
+
"variants": {
|
|
3493
|
+
"300": {
|
|
3494
|
+
"normal": {
|
|
3495
|
+
"latin": "https://fonts.gstatic.com/s/teko/v23/LYjYdG7kmE0gV69VVPPdFl06VN9JG7Sy.ttf"
|
|
3496
|
+
}
|
|
3497
|
+
},
|
|
3498
|
+
"400": {
|
|
3499
|
+
"normal": {
|
|
3500
|
+
"latin": "https://fonts.gstatic.com/s/teko/v23/LYjYdG7kmE0gV69VVPPdFl06VN8XG7Sy.ttf"
|
|
3501
|
+
}
|
|
3502
|
+
},
|
|
3503
|
+
"500": {
|
|
3504
|
+
"normal": {
|
|
3505
|
+
"latin": "https://fonts.gstatic.com/s/teko/v23/LYjYdG7kmE0gV69VVPPdFl06VN8lG7Sy.ttf"
|
|
3506
|
+
}
|
|
3507
|
+
},
|
|
3508
|
+
"600": {
|
|
3509
|
+
"normal": {
|
|
3510
|
+
"latin": "https://fonts.gstatic.com/s/teko/v23/LYjYdG7kmE0gV69VVPPdFl06VN_JHLSy.ttf"
|
|
3511
|
+
}
|
|
3512
|
+
},
|
|
3513
|
+
"700": {
|
|
3514
|
+
"normal": {
|
|
3515
|
+
"latin": "https://fonts.gstatic.com/s/teko/v23/LYjYdG7kmE0gV69VVPPdFl06VN_wHLSy.ttf"
|
|
3516
|
+
}
|
|
3517
|
+
}
|
|
3518
|
+
}
|
|
3519
|
+
},
|
|
3520
|
+
"tinos": {
|
|
3521
|
+
"family": "Tinos",
|
|
3522
|
+
"id": "tinos",
|
|
3523
|
+
"variants": {
|
|
3524
|
+
"400": {
|
|
3525
|
+
"italic": {
|
|
3526
|
+
"latin": "https://fonts.gstatic.com/s/tinos/v25/buE2poGnedXvwjX-fmE.ttf"
|
|
3527
|
+
},
|
|
3528
|
+
"normal": {
|
|
3529
|
+
"latin": "https://fonts.gstatic.com/s/tinos/v25/buE4poGnedXvwgX8.ttf"
|
|
3530
|
+
}
|
|
3531
|
+
},
|
|
3532
|
+
"700": {
|
|
3533
|
+
"italic": {
|
|
3534
|
+
"latin": "https://fonts.gstatic.com/s/tinos/v25/buEzpoGnedXvwjX-Rt1s0Co.ttf"
|
|
3535
|
+
},
|
|
3536
|
+
"normal": {
|
|
3537
|
+
"latin": "https://fonts.gstatic.com/s/tinos/v25/buE1poGnedXvwj1AW0Fp.ttf"
|
|
3538
|
+
}
|
|
3539
|
+
}
|
|
3540
|
+
}
|
|
3541
|
+
},
|
|
3542
|
+
"titilliumweb": {
|
|
3543
|
+
"family": "Titillium Web",
|
|
3544
|
+
"id": "titillium-web",
|
|
3545
|
+
"variants": {
|
|
3546
|
+
"200": {
|
|
3547
|
+
"italic": {
|
|
3548
|
+
"latin": "https://fonts.gstatic.com/s/titilliumweb/v19/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZg.ttf"
|
|
3549
|
+
},
|
|
3550
|
+
"normal": {
|
|
3551
|
+
"latin": "https://fonts.gstatic.com/s/titilliumweb/v19/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIw.ttf"
|
|
3552
|
+
}
|
|
3553
|
+
},
|
|
3554
|
+
"300": {
|
|
3555
|
+
"italic": {
|
|
3556
|
+
"latin": "https://fonts.gstatic.com/s/titilliumweb/v19/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZg.ttf"
|
|
3557
|
+
},
|
|
3558
|
+
"normal": {
|
|
3559
|
+
"latin": "https://fonts.gstatic.com/s/titilliumweb/v19/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIw.ttf"
|
|
3560
|
+
}
|
|
3561
|
+
},
|
|
3562
|
+
"400": {
|
|
3563
|
+
"italic": {
|
|
3564
|
+
"latin": "https://fonts.gstatic.com/s/titilliumweb/v19/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCA.ttf"
|
|
3565
|
+
},
|
|
3566
|
+
"normal": {
|
|
3567
|
+
"latin": "https://fonts.gstatic.com/s/titilliumweb/v19/NaPecZTIAOhVxoMyOr9n_E7fRMQ.ttf"
|
|
3568
|
+
}
|
|
3569
|
+
},
|
|
3570
|
+
"600": {
|
|
3571
|
+
"italic": {
|
|
3572
|
+
"latin": "https://fonts.gstatic.com/s/titilliumweb/v19/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZg.ttf"
|
|
3573
|
+
},
|
|
3574
|
+
"normal": {
|
|
3575
|
+
"latin": "https://fonts.gstatic.com/s/titilliumweb/v19/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIw.ttf"
|
|
3576
|
+
}
|
|
3577
|
+
},
|
|
3578
|
+
"700": {
|
|
3579
|
+
"italic": {
|
|
3580
|
+
"latin": "https://fonts.gstatic.com/s/titilliumweb/v19/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZg.ttf"
|
|
3581
|
+
},
|
|
3582
|
+
"normal": {
|
|
3583
|
+
"latin": "https://fonts.gstatic.com/s/titilliumweb/v19/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIw.ttf"
|
|
3584
|
+
}
|
|
3585
|
+
},
|
|
3586
|
+
"900": {
|
|
3587
|
+
"normal": {
|
|
3588
|
+
"latin": "https://fonts.gstatic.com/s/titilliumweb/v19/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIw.ttf"
|
|
3589
|
+
}
|
|
3590
|
+
}
|
|
3591
|
+
}
|
|
3592
|
+
},
|
|
3593
|
+
"ubuntu": {
|
|
3594
|
+
"family": "Ubuntu",
|
|
3595
|
+
"id": "ubuntu",
|
|
3596
|
+
"variants": {
|
|
3597
|
+
"300": {
|
|
3598
|
+
"italic": {
|
|
3599
|
+
"latin": "https://fonts.gstatic.com/s/ubuntu/v21/4iCp6KVjbNBYlgoKejZftWyI.ttf"
|
|
3600
|
+
},
|
|
3601
|
+
"normal": {
|
|
3602
|
+
"latin": "https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoC1CzTtw.ttf"
|
|
3603
|
+
}
|
|
3604
|
+
},
|
|
3605
|
+
"400": {
|
|
3606
|
+
"italic": {
|
|
3607
|
+
"latin": "https://fonts.gstatic.com/s/ubuntu/v21/4iCu6KVjbNBYlgoKeg7z.ttf"
|
|
3608
|
+
},
|
|
3609
|
+
"normal": {
|
|
3610
|
+
"latin": "https://fonts.gstatic.com/s/ubuntu/v21/4iCs6KVjbNBYlgo6eA.ttf"
|
|
3611
|
+
}
|
|
3612
|
+
},
|
|
3613
|
+
"500": {
|
|
3614
|
+
"italic": {
|
|
3615
|
+
"latin": "https://fonts.gstatic.com/s/ubuntu/v21/4iCp6KVjbNBYlgoKejYHtGyI.ttf"
|
|
3616
|
+
},
|
|
3617
|
+
"normal": {
|
|
3618
|
+
"latin": "https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoCjC3Ttw.ttf"
|
|
3619
|
+
}
|
|
3620
|
+
},
|
|
3621
|
+
"700": {
|
|
3622
|
+
"italic": {
|
|
3623
|
+
"latin": "https://fonts.gstatic.com/s/ubuntu/v21/4iCp6KVjbNBYlgoKejZPsmyI.ttf"
|
|
3624
|
+
},
|
|
3625
|
+
"normal": {
|
|
3626
|
+
"latin": "https://fonts.gstatic.com/s/ubuntu/v21/4iCv6KVjbNBYlgoCxCvTtw.ttf"
|
|
3627
|
+
}
|
|
3628
|
+
}
|
|
3629
|
+
}
|
|
3630
|
+
},
|
|
3631
|
+
"urbanist": {
|
|
3632
|
+
"family": "Urbanist",
|
|
3633
|
+
"id": "urbanist",
|
|
3634
|
+
"variants": {
|
|
3635
|
+
"100": {
|
|
3636
|
+
"italic": {
|
|
3637
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VJmv.ttf"
|
|
3638
|
+
},
|
|
3639
|
+
"normal": {
|
|
3640
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx8fFg.ttf"
|
|
3641
|
+
}
|
|
3642
|
+
},
|
|
3643
|
+
"200": {
|
|
3644
|
+
"italic": {
|
|
3645
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113VZmv.ttf"
|
|
3646
|
+
},
|
|
3647
|
+
"normal": {
|
|
3648
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSx4fFg.ttf"
|
|
3649
|
+
}
|
|
3650
|
+
},
|
|
3651
|
+
"300": {
|
|
3652
|
+
"italic": {
|
|
3653
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA12pVZmv.ttf"
|
|
3654
|
+
},
|
|
3655
|
+
"normal": {
|
|
3656
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDlR4fFg.ttf"
|
|
3657
|
+
}
|
|
3658
|
+
},
|
|
3659
|
+
"400": {
|
|
3660
|
+
"italic": {
|
|
3661
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VZmv.ttf"
|
|
3662
|
+
},
|
|
3663
|
+
"normal": {
|
|
3664
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fFg.ttf"
|
|
3665
|
+
}
|
|
3666
|
+
},
|
|
3667
|
+
"500": {
|
|
3668
|
+
"italic": {
|
|
3669
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA13FVZmv.ttf"
|
|
3670
|
+
},
|
|
3671
|
+
"normal": {
|
|
3672
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fFg.ttf"
|
|
3673
|
+
}
|
|
3674
|
+
},
|
|
3675
|
+
"600": {
|
|
3676
|
+
"italic": {
|
|
3677
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10pUpmv.ttf"
|
|
3678
|
+
},
|
|
3679
|
+
"normal": {
|
|
3680
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFg.ttf"
|
|
3681
|
+
}
|
|
3682
|
+
},
|
|
3683
|
+
"700": {
|
|
3684
|
+
"italic": {
|
|
3685
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmv.ttf"
|
|
3686
|
+
},
|
|
3687
|
+
"normal": {
|
|
3688
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfFg.ttf"
|
|
3689
|
+
}
|
|
3690
|
+
},
|
|
3691
|
+
"800": {
|
|
3692
|
+
"italic": {
|
|
3693
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113Upmv.ttf"
|
|
3694
|
+
},
|
|
3695
|
+
"normal": {
|
|
3696
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSxkfFg.ttf"
|
|
3697
|
+
}
|
|
3698
|
+
},
|
|
3699
|
+
"900": {
|
|
3700
|
+
"italic": {
|
|
3701
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmv.ttf"
|
|
3702
|
+
},
|
|
3703
|
+
"normal": {
|
|
3704
|
+
"latin": "https://fonts.gstatic.com/s/urbanist/v18/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfFg.ttf"
|
|
3705
|
+
}
|
|
3706
|
+
}
|
|
3707
|
+
}
|
|
3708
|
+
},
|
|
3709
|
+
"varelaround": {
|
|
3710
|
+
"family": "Varela Round",
|
|
3711
|
+
"id": "varela-round",
|
|
3712
|
+
"variants": {
|
|
3713
|
+
"400": {
|
|
3714
|
+
"normal": {
|
|
3715
|
+
"latin": "https://fonts.gstatic.com/s/varelaround/v21/w8gdH283Tvk__Lua32TysjIvoA.ttf"
|
|
3716
|
+
}
|
|
3717
|
+
}
|
|
3718
|
+
}
|
|
3719
|
+
},
|
|
3720
|
+
"worksans": {
|
|
3721
|
+
"family": "Work Sans",
|
|
3722
|
+
"id": "work-sans",
|
|
3723
|
+
"variants": {
|
|
3724
|
+
"100": {
|
|
3725
|
+
"italic": {
|
|
3726
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJow.ttf"
|
|
3727
|
+
},
|
|
3728
|
+
"normal": {
|
|
3729
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNig.ttf"
|
|
3730
|
+
}
|
|
3731
|
+
},
|
|
3732
|
+
"200": {
|
|
3733
|
+
"italic": {
|
|
3734
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJow.ttf"
|
|
3735
|
+
},
|
|
3736
|
+
"normal": {
|
|
3737
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNig.ttf"
|
|
3738
|
+
}
|
|
3739
|
+
},
|
|
3740
|
+
"300": {
|
|
3741
|
+
"italic": {
|
|
3742
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJow.ttf"
|
|
3743
|
+
},
|
|
3744
|
+
"normal": {
|
|
3745
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNig.ttf"
|
|
3746
|
+
}
|
|
3747
|
+
},
|
|
3748
|
+
"400": {
|
|
3749
|
+
"italic": {
|
|
3750
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJow.ttf"
|
|
3751
|
+
},
|
|
3752
|
+
"normal": {
|
|
3753
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNig.ttf"
|
|
3754
|
+
}
|
|
3755
|
+
},
|
|
3756
|
+
"500": {
|
|
3757
|
+
"italic": {
|
|
3758
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJow.ttf"
|
|
3759
|
+
},
|
|
3760
|
+
"normal": {
|
|
3761
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNig.ttf"
|
|
3762
|
+
}
|
|
3763
|
+
},
|
|
3764
|
+
"600": {
|
|
3765
|
+
"italic": {
|
|
3766
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJow.ttf"
|
|
3767
|
+
},
|
|
3768
|
+
"normal": {
|
|
3769
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNig.ttf"
|
|
3770
|
+
}
|
|
3771
|
+
},
|
|
3772
|
+
"700": {
|
|
3773
|
+
"italic": {
|
|
3774
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJow.ttf"
|
|
3775
|
+
},
|
|
3776
|
+
"normal": {
|
|
3777
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNig.ttf"
|
|
3778
|
+
}
|
|
3779
|
+
},
|
|
3780
|
+
"800": {
|
|
3781
|
+
"italic": {
|
|
3782
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJow.ttf"
|
|
3783
|
+
},
|
|
3784
|
+
"normal": {
|
|
3785
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNig.ttf"
|
|
3786
|
+
}
|
|
3787
|
+
},
|
|
3788
|
+
"900": {
|
|
3789
|
+
"italic": {
|
|
3790
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJow.ttf"
|
|
3791
|
+
},
|
|
3792
|
+
"normal": {
|
|
3793
|
+
"latin": "https://fonts.gstatic.com/s/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNig.ttf"
|
|
3794
|
+
}
|
|
3795
|
+
}
|
|
3796
|
+
}
|
|
3797
|
+
},
|
|
3798
|
+
"zillaslab": {
|
|
3799
|
+
"family": "Zilla Slab",
|
|
3800
|
+
"id": "zilla-slab",
|
|
3801
|
+
"variants": {
|
|
3802
|
+
"300": {
|
|
3803
|
+
"italic": {
|
|
3804
|
+
"latin": "https://fonts.gstatic.com/s/zillaslab/v12/dFanZfeM_74wlPZtksIFaj8CVHapXg.ttf"
|
|
3805
|
+
},
|
|
3806
|
+
"normal": {
|
|
3807
|
+
"latin": "https://fonts.gstatic.com/s/zillaslab/v12/dFa5ZfeM_74wlPZtksIFYpEY2HQ.ttf"
|
|
3808
|
+
}
|
|
3809
|
+
},
|
|
3810
|
+
"400": {
|
|
3811
|
+
"italic": {
|
|
3812
|
+
"latin": "https://fonts.gstatic.com/s/zillaslab/v12/dFa4ZfeM_74wlPZtksIFaj86-A.ttf"
|
|
3813
|
+
},
|
|
3814
|
+
"normal": {
|
|
3815
|
+
"latin": "https://fonts.gstatic.com/s/zillaslab/v12/dFa6ZfeM_74wlPZtksIFWj0.ttf"
|
|
3816
|
+
}
|
|
3817
|
+
},
|
|
3818
|
+
"500": {
|
|
3819
|
+
"italic": {
|
|
3820
|
+
"latin": "https://fonts.gstatic.com/s/zillaslab/v12/dFanZfeM_74wlPZtksIFaj8CDHepXg.ttf"
|
|
3821
|
+
},
|
|
3822
|
+
"normal": {
|
|
3823
|
+
"latin": "https://fonts.gstatic.com/s/zillaslab/v12/dFa5ZfeM_74wlPZtksIFYskZ2HQ.ttf"
|
|
3824
|
+
}
|
|
3825
|
+
},
|
|
3826
|
+
"600": {
|
|
3827
|
+
"italic": {
|
|
3828
|
+
"latin": "https://fonts.gstatic.com/s/zillaslab/v12/dFanZfeM_74wlPZtksIFaj8CIHCpXg.ttf"
|
|
3829
|
+
},
|
|
3830
|
+
"normal": {
|
|
3831
|
+
"latin": "https://fonts.gstatic.com/s/zillaslab/v12/dFa5ZfeM_74wlPZtksIFYuUe2HQ.ttf"
|
|
3832
|
+
}
|
|
3833
|
+
},
|
|
3834
|
+
"700": {
|
|
3835
|
+
"italic": {
|
|
3836
|
+
"latin": "https://fonts.gstatic.com/s/zillaslab/v12/dFanZfeM_74wlPZtksIFaj8CRHGpXg.ttf"
|
|
3837
|
+
},
|
|
3838
|
+
"normal": {
|
|
3839
|
+
"latin": "https://fonts.gstatic.com/s/zillaslab/v12/dFa5ZfeM_74wlPZtksIFYoEf2HQ.ttf"
|
|
3840
|
+
}
|
|
3841
|
+
}
|
|
3842
|
+
}
|
|
3843
|
+
}
|
|
3844
|
+
}
|