From 6288451b27f59df937f72aa3af1ec4276a358e8c Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 9 May 2023 14:32:47 -0300 Subject: [PATCH 001/116] adding a mockup of the font library --- .../fonts-api/class-wp-fonts-library.php | 96 +++++++++++++++++++ lib/experimental/fonts-api/fonts-api.php | 8 ++ lib/load.php | 1 + 3 files changed, 105 insertions(+) create mode 100644 lib/experimental/fonts-api/class-wp-fonts-library.php diff --git a/lib/experimental/fonts-api/class-wp-fonts-library.php b/lib/experimental/fonts-api/class-wp-fonts-library.php new file mode 100644 index 0000000000000..9f2dea695b644 --- /dev/null +++ b/lib/experimental/fonts-api/class-wp-fonts-library.php @@ -0,0 +1,96 @@ +rest_base = 'fonts_library'; + $this->namespace = 'wp/v2'; + + $this->post_type = 'wp_fonts_library'; + $this->post_name = 'wp_fonts_library'; + $this->post_title = 'Fonts Library'; // Do not translate + $this->post_status = 'publish'; + + $this->base_post_query = array ( + 'post_type' => $this->post_type, + 'post_title' => $this->post_title, + 'post_status' => $this->post_status, + ); + } + + + function register_routes () { + + register_rest_route( + $this->namespace, + '/' . $this->rest_base, + array( + array( + 'methods' => WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_fonts_library' ), + 'permission_callback' => array( $this, 'get_fonts_library_permissions_check' ), + ), + ) + ); + + register_rest_route( + $this->namespace, + '/' . $this->rest_base, + array( + array( + 'methods' => WP_REST_Server::EDITABLE, + 'callback' => array( $this, 'update_fonts_library' ), + 'permission_callback' => array( $this, 'update_fonts_library_permissions_check' ), + ), + ) + ); + + } + + function get_fonts_library_permissions_check () { + return true; + // return current_user_can( 'edit_posts' ); + } + + function update_fonts_library_permissions_check () { + return true; + // return current_user_can( 'edit_posts' ); + } + + function get_fonts_library () { + $post = $this->get_fonts_library_post(); + return new WP_REST_Response( $post ); + } + + private function get_fonts_library_post () { + // Try to get the fonts library post + $args = $this->base_post_query; + $args['posts_per_page'] = 1; + $args['name'] = $this->post_name; + + $wp_fonts_library_query = new WP_Query( $args ); + if ( $wp_fonts_library_query->have_posts() ) { + $post = $wp_fonts_library_query->posts[0]; + return $post; + } + + // Create empty post if there are no post + $post_data = $this->base_post_query; + $post_data['post_name'] = $this->post_name; + $post = wp_insert_post( $post_data ); + return $post; + } + + function update_fonts_library ( $request ) { + $post = $this->get_fonts_library_post(); + $new_content = $request->get_json_params(); + $updated_post_data = array ( + 'ID' => $post->ID, + 'post_content' => json_encode( $new_content ), + ); + $updated_post = wp_update_post( $updated_post_data ); + $new_post = $this->get_fonts_library_post(); + return new WP_REST_Response( $new_post ); + } + +} \ No newline at end of file diff --git a/lib/experimental/fonts-api/fonts-api.php b/lib/experimental/fonts-api/fonts-api.php index 87fb951f0be3a..0d19c43db5e68 100644 --- a/lib/experimental/fonts-api/fonts-api.php +++ b/lib/experimental/fonts-api/fonts-api.php @@ -214,3 +214,11 @@ function( $mime_types ) { return $mime_types; } ); + + +function fonts_library_register_routes () { + $fonts_library = new WP_Fonts_Library(); + $fonts_library->register_routes(); +} + +add_action( 'rest_api_init', 'fonts_library_register_routes' ); diff --git a/lib/load.php b/lib/load.php index ac4941cb0e96a..d8b2aef66fc7b 100644 --- a/lib/load.php +++ b/lib/load.php @@ -113,6 +113,7 @@ function gutenberg_is_experiment_enabled( $name ) { require __DIR__ . '/experimental/fonts-api/class-wp-fonts.php'; require __DIR__ . '/experimental/fonts-api/class-wp-fonts-provider-local.php'; require __DIR__ . '/experimental/fonts-api/fonts-api.php'; + require __DIR__ . '/experimental/fonts-api/class-wp-fonts-library.php'; // BC Layer files, which will not be backported to WP Core. require __DIR__ . '/experimental/fonts-api/bc-layer/class-gutenberg-fonts-api-bc-layer.php'; require __DIR__ . '/experimental/fonts-api/bc-layer/webfonts-deprecations.php'; From 2306a484e3eab050ff554ea8e11550a0ca0239ec Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 10 May 2023 17:16:47 -0300 Subject: [PATCH 002/116] adding endpoint for google fonts api font list --- .../fonts-api/class-wp-fonts-library.php | 20 + lib/experimental/fonts-api/google-fonts.json | 28410 ++++++++++++++++ 2 files changed, 28430 insertions(+) create mode 100644 lib/experimental/fonts-api/google-fonts.json diff --git a/lib/experimental/fonts-api/class-wp-fonts-library.php b/lib/experimental/fonts-api/class-wp-fonts-library.php index 9f2dea695b644..dec71e12dde4a 100644 --- a/lib/experimental/fonts-api/class-wp-fonts-library.php +++ b/lib/experimental/fonts-api/class-wp-fonts-library.php @@ -45,6 +45,18 @@ function register_routes () { ) ); + register_rest_route( + $this->namespace, + '/' . $this->rest_base . '/google_fonts', + array( + array( + 'methods' => WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_google_fonts' ), + 'permission_callback' => array( $this, 'get_fonts_library_permissions_check' ), + ), + ) + ); + } function get_fonts_library_permissions_check () { @@ -93,4 +105,12 @@ function update_fonts_library ( $request ) { return new WP_REST_Response( $new_post ); } + function get_google_fonts () { + $file = file_get_contents( + path_join ( dirname(__FILE__),"google-fonts.json" ) + ); + $data = json_decode($file, true); + return new WP_REST_Response( $data ); + } + } \ No newline at end of file diff --git a/lib/experimental/fonts-api/google-fonts.json b/lib/experimental/fonts-api/google-fonts.json new file mode 100644 index 0000000000000..bdf9bb88781f4 --- /dev/null +++ b/lib/experimental/fonts-api/google-fonts.json @@ -0,0 +1,28410 @@ +{ + "kind": "webfonts#webfontList", + "items": [ + { + "family": "ABeeZee", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN6tKukbcHCpE.ttf", + "italic": "http://fonts.gstatic.com/s/abeezee/v22/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN2tOklQ.ttf" + }, + { + "family": "Abel", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6VhLPJp6qGI.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE2VlBOA.ttf" + }, + { + "family": "Abhaya Libre", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "latin", "latin-ext", "sinhala" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf", + "600": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf", + "700": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf", + "800": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf", + "regular": "http://fonts.gstatic.com/s/abhayalibre/v14/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/abhayalibre/v14/e3tmeuGtX-Co5MNzeAOqinEQeknS.ttf" + }, + { + "family": "Aboreto", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8blKTeA2yuxSY.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8bpKXUBw.ttf" + }, + { + "family": "Abril Fatface", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/abrilfatface/v19/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/abrilfatface/v19/zOL64pLDlL1D99S8g8PtiKchq-FmiA.ttf" + }, + { + "family": "Abyssinica SIL", + "variants": [ "regular" ], + "subsets": [ "ethiopic", "latin", "latin-ext" ], + "version": "v5", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/abyssinicasil/v5/oY1H8ezOqK7iI3rK_45WKoc8J6UZBFOVAXuI.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/abyssinicasil/v5/oY1H8ezOqK7iI3rK_45WKoc8J5UYDlc.ttf" + }, + { + "family": "Aclonica", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/aclonica/v18/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/aclonica/v18/K2FyfZJVlfNNSEBXGY7SAoo.ttf" + }, + { + "family": "Acme", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/acme/v21/RrQfboBx-C5_bx3Lb23lzLk.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/acme/v21/RrQfboBx-C5_XxzBaw.ttf" + }, + { + "family": "Actor", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO3ekXygtUMIO.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO0elVSw.ttf" + }, + { + "family": "Adamina", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-04-20", + "files": { + "regular": "http://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwi-vUFQ.ttf" + }, + { + "family": "Advent Pro", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext" + ], + "version": "v20", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyJPTJoonw1aBA.ttf", + "200": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyNPTJoonw1aBA.ttf", + "300": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLHSNPTJoonw1aBA.ttf", + "500": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLcSNPTJoonw1aBA.ttf", + "600": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLnSRPTJoonw1aBA.ttf", + "700": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLpCRPTJoonw1aBA.ttf", + "800": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyRPTJoonw1aBA.ttf", + "900": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpL6iRPTJoonw1aBA.ttf", + "regular": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyNPTJoonw1aBA.ttf", + "100italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnDpAsvQhKBH4C.ttf", + "200italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnD5AsvQhKBH4C.ttf", + "300italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2D5D5AsvQhKBH4C.ttf", + "italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnD5AsvQhKBH4C.ttf", + "500italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CVD5AsvQhKBH4C.ttf", + "600italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2B5CJAsvQhKBH4C.ttf", + "700italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2BACJAsvQhKBH4C.ttf", + "800italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnCJAsvQhKBH4C.ttf", + "900italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AOCJAsvQhKBH4C.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyN_TZAs.ttf" + }, + { + "family": "Aguafina Script", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/aguafinascript/v17/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/aguafinascript/v17/If2QXTv_ZzSxGIO30LemWEOmt1b3q8Qt.ttf" + }, + { + "family": "Akaya Kanadaka", + "variants": [ "regular" ], + "subsets": [ "kannada", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/akayakanadaka/v16/N0bM2S5CPO5oOQqvazoRRb-8-PfRS5VBBSSF.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/akayakanadaka/v16/N0bM2S5CPO5oOQqvazoRRb-8-MfQQZE.ttf" + }, + { + "family": "Akaya Telivigala", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "telugu" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/akayatelivigala/v22/lJwc-oo_iG9wXqU3rCTD395tp0uifdLdsIH0YH8.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/akayatelivigala/v22/lJwc-oo_iG9wXqU3rCTD395tp0uiTdPXtA.ttf" + }, + { + "family": "Akronim", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRpygF7lA.ttf" + }, + { + "family": "Akshar", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v9", + "lastModified": "2023-03-21", + "files": { + "300": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSSgFy9CY94XsnPc.ttf", + "500": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSUQFy9CY94XsnPc.ttf", + "600": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSagCy9CY94XsnPc.ttf", + "700": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSZECy9CY94XsnPc.ttf", + "regular": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSXYFy9CY94XsnPc.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSXYF-9GS8w.ttf" + }, + { + "family": "Aladin", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/aladin/v19/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/aladin/v19/ZgNSjPJFPrvJV5fF6C38.ttf" + }, + { + "family": "Alata", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v9", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/alata/v9/PbytFmztEwbIofe6xKcRQEOX.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alata/v9/PbytFmztEwbIoce7zqM.ttf" + }, + { + "family": "Alatsi", + "variants": [ "regular" ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], + "version": "v11", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/alatsi/v11/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alatsi/v11/TK3iWkUJAxQ2nLN2Hz8D.ttf" + }, + { + "family": "Albert Sans", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v1", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5L_rI32TxAj1g.ttf", + "200": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5P_rI32TxAj1g.ttf", + "300": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSH9ZP_rI32TxAj1g.ttf", + "500": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHmZP_rI32TxAj1g.ttf", + "600": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_rI32TxAj1g.ttf", + "700": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_rI32TxAj1g.ttf", + "800": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5T_rI32TxAj1g.ttf", + "900": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHApT_rI32TxAj1g.ttf", + "regular": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_rI32TxAj1g.ttf", + "100italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX7ofybRUz1r5t.ttf", + "200italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX74fybRUz1r5t.ttf", + "300italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9BJ74fybRUz1r5t.ttf", + "italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX74fybRUz1r5t.ttf", + "500italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", + "600italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", + "700italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", + "800italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", + "900italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9C-6IfybRUz1r5t.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5PPrYfy.ttf" + }, + { + "family": "Aldrich", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/aldrich/v17/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/aldrich/v17/MCoTzAn-1s3IGyJMVaEY2g.ttf" + }, + { + "family": "Alef", + "variants": [ "regular", "700" ], + "subsets": [ "hebrew", "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/alef/v21/FeVQS0NQpLYglo50L5la2bxii28.ttf", + "regular": "http://fonts.gstatic.com/s/alef/v21/FeVfS0NQpLYgrjJbC5FxxbU.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alef/v21/FeVfS0NQpLYgnjNRDw.ttf" + }, + { + "family": "Alegreya", + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v35", + "lastModified": "2023-03-21", + "files": { + "500": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBUI_KCisSGVrw.ttf", + "600": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGKBII_KCisSGVrw.ttf", + "700": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERII_KCisSGVrw.ttf", + "800": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhII_KCisSGVrw.ttf", + "900": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxII_KCisSGVrw.ttf", + "regular": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI_KCisSGVrw.ttf", + "italic": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbgv6qmkySFr9V9.ttf", + "500italic": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbSv6qmkySFr9V9.ttf", + "600italic": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlY-uKqmkySFr9V9.ttf", + "700italic": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlYHuKqmkySFr9V9.ttf", + "800italic": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZguKqmkySFr9V9.ttf", + "900italic": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZJuKqmkySFr9V9.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hU4_aqm.ttf" + }, + { + "family": "Alegreya SC", + "variants": [ + "regular", + "italic", + "500", + "500italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v25", + "lastModified": "2022-12-08", + "files": { + "500": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf", + "700": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf", + "800": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf", + "900": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf", + "regular": "http://fonts.gstatic.com/s/alegreyasc/v25/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf", + "italic": "http://fonts.gstatic.com/s/alegreyasc/v25/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf", + "500italic": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf", + "700italic": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf", + "800italic": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf", + "900italic": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alegreyasc/v25/taiOGmRtCJ62-O0HhNEa-Z6p2ZU.ttf" + }, + { + "family": "Alegreya Sans", + "variants": [ + "100", + "100italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v24", + "lastModified": "2022-12-08", + "files": { + "100": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf", + "300": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf", + "500": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf", + "700": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf", + "800": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf", + "900": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf", + "100italic": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf", + "300italic": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf", + "regular": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf", + "italic": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf", + "500italic": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf", + "700italic": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf", + "800italic": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf", + "900italic": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUz9_-1phKLFgshYDvh6Vwt7VxtuA.ttf" + }, + { + "family": "Alegreya Sans SC", + "variants": [ + "100", + "100italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v23", + "lastModified": "2022-12-08", + "files": { + "100": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf", + "300": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf", + "500": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf", + "700": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf", + "800": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf", + "900": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf", + "100italic": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf", + "300italic": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf", + "regular": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf", + "italic": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf", + "500italic": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf", + "700italic": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf", + "800italic": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf", + "900italic": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Bk9l8g.ttf" + }, + { + "family": "Aleo", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syKbr9DVDno985KM.ttf", + "700": "http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syLbs9DVDno985KM.ttf", + "300italic": "http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf", + "regular": "http://fonts.gstatic.com/s/aleo/v11/c4mv1nF8G8_s8ArD0D1ogoY.ttf", + "italic": "http://fonts.gstatic.com/s/aleo/v11/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf", + "700italic": "http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/aleo/v11/c4mv1nF8G8_swAvJ1A.ttf" + }, + { + "family": "Alex Brush", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EhUPz6A.ttf" + }, + { + "family": "Alexandria", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", + "200": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", + "300": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", + "500": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", + "600": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", + "700": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", + "800": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", + "900": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", + "regular": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7TpbGFps.ttf" + }, + { + "family": "Alfa Slab One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/alfaslabone/v17/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alfaslabone/v17/6NUQ8FmMKwSEKjnm5-4v-4Jh2dRhfg.ttf" + }, + { + "family": "Alice", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6FcJpA_chzJ0.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6GcIrgs.ttf" + }, + { + "family": "Alike", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-04-20", + "files": { + "regular": "http://fonts.gstatic.com/s/alike/v20/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alike/v20/HI_EiYEYI6BIoHjAQ5E.ttf" + }, + { + "family": "Alike Angular", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-04-20", + "files": { + "regular": "http://fonts.gstatic.com/s/alikeangular/v20/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alikeangular/v20/3qTrojWunjGQtEBlIcwMbSoI7kIwaA.ttf" + }, + { + "family": "Alkalami", + "variants": [ "regular" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v7", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/alkalami/v7/zOL_4pfDmqRL95WXi5eLw8BMuvhH.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alkalami/v7/zOL_4pfDmqRL95WXi6eKycQ.ttf" + }, + { + "family": "Alkatra", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ + "bengali", + "devanagari", + "latin", + "latin-ext", + "oriya" + ], + "version": "v3", + "lastModified": "2023-03-21", + "files": { + "500": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedzngUu7cPrNDVemxE.ttf", + "600": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medznj4vLcPrNDVemxE.ttf", + "700": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedznjBvLcPrNDVemxE.ttf", + "regular": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medzngmu7cPrNDVemxE.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medzngmu4cOptQ.ttf" + }, + { + "family": "Allan", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/allan/v21/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf", + "regular": "http://fonts.gstatic.com/s/allan/v21/ea8XadU7WuTxEtb2P9SF8nZE.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/allan/v21/ea8XadU7WuTxEub3NdA.ttf" + }, + { + "family": "Allerta", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940YnAXTQ.ttf" + }, + { + "family": "Allerta Stencil", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/allertastencil/v18/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/allertastencil/v18/HTx0L209KT-LmIE9N7OR6eiycOe1-jbz.ttf" + }, + { + "family": "Allison", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v9", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/allison/v9/X7nl4b88AP2nkbvZOCaQ4MTgAgk.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/allison/v9/X7nl4b88AP2nkbvZCCea5A.ttf" + }, + { + "family": "Allura", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v19", + "lastModified": "2023-01-18", + "files": { + "regular": "http://fonts.gstatic.com/s/allura/v19/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/allura/v19/9oRPNYsQpS4zjuA_jQgT.ttf" + }, + { + "family": "Almarai", + "variants": [ "300", "regular", "700", "800" ], + "subsets": [ "arabic" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf", + "700": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf", + "800": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf", + "regular": "http://fonts.gstatic.com/s/almarai/v12/tsstApxBaigK_hnnc1qPonC3vqc.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/almarai/v12/tsstApxBaigK_hnnQ1uFpg.ttf" + }, + { + "family": "Almendra", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/almendra/v23/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf", + "regular": "http://fonts.gstatic.com/s/almendra/v23/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf", + "italic": "http://fonts.gstatic.com/s/almendra/v23/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf", + "700italic": "http://fonts.gstatic.com/s/almendra/v23/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/almendra/v23/H4ckBXKAlMnTn0CskxY7yLs.ttf" + }, + { + "family": "Almendra Display", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v26", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/almendradisplay/v26/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/almendradisplay/v26/0FlPVOGWl1Sb4O3tETtADHRRlZhzbS7USw.ttf" + }, + { + "family": "Almendra SC", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v25", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/almendrasc/v25/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/almendrasc/v25/Iure6Yx284eebowr7hbyTaZIrLE.ttf" + }, + { + "family": "Alumni Sans", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v16", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO5QqFsJ3C8qng.ttf", + "200": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uO9QqFsJ3C8qng.ttf", + "300": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Zu9QqFsJ3C8qng.ttf", + "500": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Cu9QqFsJ3C8qng.ttf", + "600": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd95uhQqFsJ3C8qng.ttf", + "700": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd93-hQqFsJ3C8qng.ttf", + "800": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uOhQqFsJ3C8qng.ttf", + "900": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9kehQqFsJ3C8qng.ttf", + "regular": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9QqFsJ3C8qng.ttf", + "100italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky46lEN_io6npfB.ttf", + "200italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", + "300italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", + "italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", + "500italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", + "600italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", + "700italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", + "800italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", + "900italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9gqVEN.ttf" + }, + { + "family": "Alumni Sans Collegiate One", + "variants": [ "regular", "italic" ], + "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhjdayDiPw2ta.ttf", + "italic": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpD-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhgdYwjytxntaDFU.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhgdbwjw.ttf" + }, + { + "family": "Alumni Sans Inline One", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpD3AZcr7xbYw.ttf", + "italic": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQDbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpP3ITdpz0fYxcrQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpP3ETdg.ttf" + }, + { + "family": "Alumni Sans Pinstripe", + "variants": [ "regular", "italic" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v2", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObhezYrVIpcDA5w.ttf", + "italic": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNDjOFFPq_AUJD1umyS30W-Xub8zD1ObheDYL9Mh8XQ5_cY.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObheDY79M.ttf" + }, + { + "family": "Amarante", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/amarante/v23/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/amarante/v23/xMQXuF1KTa6EvGx9bp-2AX4.ttf" + }, + { + "family": "Amaranth", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/amaranth/v18/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf", + "regular": "http://fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zPnCF9GqwnzW.ttf", + "italic": "http://fonts.gstatic.com/s/amaranth/v18/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf", + "700italic": "http://fonts.gstatic.com/s/amaranth/v18/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zMnDHdU.ttf" + }, + { + "family": "Amatic SC", + "variants": [ "regular", "700" ], + "subsets": [ + "cyrillic", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/amaticsc/v24/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf", + "regular": "http://fonts.gstatic.com/s/amaticsc/v24/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/amaticsc/v24/TUZyzwprpvBS1izr_vOEDOSa.ttf" + }, + { + "family": "Amethysta", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-04-20", + "files": { + "regular": "http://fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfW4GT-G.ttf" + }, + { + "family": "Amiko", + "variants": [ "regular", "600", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "600": "http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf", + "700": "http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf", + "regular": "http://fonts.gstatic.com/s/amiko/v12/WwkQxPq1DFK04tqlc17MMZgJ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/amiko/v12/WwkQxPq1DFK04uqkeVo.ttf" + }, + { + "family": "Amiri", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v27", + "lastModified": "2023-01-10", + "files": { + "700": "http://fonts.gstatic.com/s/amiri/v27/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf", + "regular": "http://fonts.gstatic.com/s/amiri/v27/J7aRnpd8CGxBHqUpvrIw74NL.ttf", + "italic": "http://fonts.gstatic.com/s/amiri/v27/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf", + "700italic": "http://fonts.gstatic.com/s/amiri/v27/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/amiri/v27/J7aRnpd8CGxBHpUotLY.ttf" + }, + { + "family": "Amiri Quran", + "variants": [ "regular" ], + "subsets": [ "arabic", "latin" ], + "version": "v7", + "lastModified": "2022-09-14", + "files": { + "regular": "http://fonts.gstatic.com/s/amiriquran/v7/_Xmo-Hk0rD6DbUL4_vH8Zq5t7Cycsu-2.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/amiriquran/v7/_Xmo-Hk0rD6DbUL4_vH8Zp5s5ig.ttf" + }, + { + "family": "Amita", + "variants": [ "regular", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/amita/v16/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf", + "regular": "http://fonts.gstatic.com/s/amita/v16/HhyaU5si9Om7PQlvAfSKEZZL.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/amita/v16/HhyaU5si9Om7PTluC_A.ttf" + }, + { + "family": "Anaheim", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/anaheim/v14/8vII7w042Wp87g4G0UTUEE5eK_w.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anaheim/v14/8vII7w042Wp87g4G4UXeFA.ttf" + }, + { + "family": "Andada Pro", + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2023-03-21", + "files": { + "500": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DP7BY8cFLzvIt2S.ttf", + "600": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8cFLzvIt2S.ttf", + "700": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8cFLzvIt2S.ttf", + "800": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DNJAo8cFLzvIt2S.ttf", + "regular": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBY8cFLzvIt2S.ttf", + "italic": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRmdfHrjNJ82Stjw.ttf", + "500italic": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRlVfHrjNJ82Stjw.ttf", + "600italic": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHrjNJ82Stjw.ttf", + "700italic": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHrjNJ82Stjw.ttf", + "800italic": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRudYHrjNJ82Stjw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBb8dHrg.ttf" + }, + { + "family": "Andika", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v24", + "lastModified": "2023-04-27", + "files": { + "700": "http://fonts.gstatic.com/s/andika/v24/mem8Ya6iyW-Lwqg40ZM1UpcaXcl0Aw.ttf", + "regular": "http://fonts.gstatic.com/s/andika/v24/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf", + "italic": "http://fonts.gstatic.com/s/andika/v24/mem9Ya6iyW-Lwqgwb7YVeLkWVNBt.ttf", + "700italic": "http://fonts.gstatic.com/s/andika/v24/mem6Ya6iyW-Lwqgwb46pV50ef8xkA76a.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/andika/v24/mem_Ya6iyW-LwqgwbLYV.ttf" + }, + { + "family": "Anek Bangla", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "subsets": [ "bengali", "latin", "latin-ext" ], + "version": "v4", + "lastModified": "2023-01-06", + "files": { + "100": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9YIocg56yyvt0.ttf", + "200": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9ZIocg56yyvt0.ttf", + "300": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfjFZIocg56yyvt0.ttf", + "500": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofl1ZIocg56yyvt0.ttf", + "600": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfrFeIocg56yyvt0.ttf", + "700": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfoheIocg56yyvt0.ttf", + "800": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9eIocg56yyvt0.ttf", + "regular": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9ZIocg56yyvt0.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9ZEoYq4w.ttf" + }, + { + "family": "Anek Devanagari", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v8", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtk-9nFk0LjZ7E.ttf", + "200": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtku9nFk0LjZ7E.ttf", + "300": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLCzku9nFk0LjZ7E.ttf", + "500": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDfku9nFk0LjZ7E.ttf", + "600": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAzle9nFk0LjZ7E.ttf", + "700": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAKle9nFk0LjZ7E.ttf", + "800": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtle9nFk0LjZ7E.ttf", + "regular": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtku9nFk0LjZ7E.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtkt9mHEk.ttf" + }, + { + "family": "Anek Gujarati", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "subsets": [ "gujarati", "latin", "latin-ext" ], + "version": "v9", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5G7w0KgB7Lm7g.ttf", + "200": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5C7w0KgB7Lm7g.ttf", + "300": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0SZC7w0KgB7Lm7g.ttf", + "500": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0JZC7w0KgB7Lm7g.ttf", + "600": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0yZe7w0KgB7Lm7g.ttf", + "700": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-08Je7w0KgB7Lm7g.ttf", + "800": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5e7w0KgB7Lm7g.ttf", + "regular": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5C7w0KgB7Lm7g.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5CLwkik.ttf" + }, + { + "family": "Anek Gurmukhi", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "subsets": [ "gurmukhi", "latin", "latin-ext" ], + "version": "v8", + "lastModified": "2023-03-09", + "files": { + "100": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5ppXK41H6DjbA.ttf", + "200": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95tpXK41H6DjbA.ttf", + "300": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbKZtpXK41H6DjbA.ttf", + "500": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbRZtpXK41H6DjbA.ttf", + "600": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbqZxpXK41H6DjbA.ttf", + "700": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbkJxpXK41H6DjbA.ttf", + "800": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95xpXK41H6DjbA.ttf", + "regular": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5tpXK41H6DjbA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5tZXaQx.ttf" + }, + { + "family": "Anek Kannada", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "subsets": [ "kannada", "latin", "latin-ext" ], + "version": "v4", + "lastModified": "2023-01-06", + "files": { + "100": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEAukVReA1oef.ttf", + "200": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDEQukVReA1oef.ttf", + "300": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dEdEQukVReA1oef.ttf", + "500": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFxEQukVReA1oef.ttf", + "600": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGdFgukVReA1oef.ttf", + "700": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGkFgukVReA1oef.ttf", + "800": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDFgukVReA1oef.ttf", + "regular": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEQukVReA1oef.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDETulXxM.ttf" + }, + { + "family": "Anek Latin", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v4", + "lastModified": "2023-01-06", + "files": { + "100": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7EZKdClWL3kgw.ttf", + "200": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7AZKdClWL3kgw.ttf", + "300": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuGbAZKdClWL3kgw.ttf", + "500": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PudbAZKdClWL3kgw.ttf", + "600": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PumbcZKdClWL3kgw.ttf", + "700": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuoLcZKdClWL3kgw.ttf", + "800": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7cZKdClWL3kgw.ttf", + "regular": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7AZKdClWL3kgw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7ApKNqh.ttf" + }, + { + "family": "Anek Malayalam", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "subsets": [ "latin", "latin-ext", "malayalam" ], + "version": "v5", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu_HMr5PDO71Qs.ttf", + "200": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu-HMr5PDO71Qs.ttf", + "300": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUcW-HMr5PDO71Qs.ttf", + "500": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUam-HMr5PDO71Qs.ttf", + "600": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUUW5HMr5PDO71Qs.ttf", + "700": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUXy5HMr5PDO71Qs.ttf", + "800": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu5HMr5PDO71Qs.ttf", + "regular": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu-HMr5PDO71Qs.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu-LMvzOA.ttf" + }, + { + "family": "Anek Odia", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "subsets": [ "latin", "latin-ext", "oriya" ], + "version": "v5", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZf63mXZAtm_es.ttf", + "200": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZfq3mXZAtm_es.ttf", + "300": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnnHfq3mXZAtm_es.ttf", + "500": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmrfq3mXZAtm_es.ttf", + "600": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnlHea3mXZAtm_es.ttf", + "700": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnl-ea3mXZAtm_es.ttf", + "800": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZea3mXZAtm_es.ttf", + "regular": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZfq3mXZAtm_es.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZfp3nV5Q.ttf" + }, + { + "family": "Anek Tamil", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "subsets": [ "latin", "latin-ext", "tamil" ], + "version": "v9", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQiZ6q4v4oegjOQ.ttf", + "200": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwid6q4v4oegjOQ.ttf", + "300": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNHCd6q4v4oegjOQ.ttf", + "500": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNcCd6q4v4oegjOQ.ttf", + "600": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNnCB6q4v4oegjOQ.ttf", + "700": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNpSB6q4v4oegjOQ.ttf", + "800": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwiB6q4v4oegjOQ.ttf", + "regular": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQid6q4v4oegjOQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQidKqoH8.ttf" + }, + { + "family": "Anek Telugu", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "subsets": [ "latin", "latin-ext", "telugu" ], + "version": "v8", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y-_oE2G2ep10_8.ttf", + "200": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136--oE2G2ep10_8.ttf", + "300": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i133G-oE2G2ep10_8.ttf", + "500": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13x2-oE2G2ep10_8.ttf", + "600": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13_G5oE2G2ep10_8.ttf", + "700": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i138i5oE2G2ep10_8.ttf", + "800": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136-5oE2G2ep10_8.ttf", + "regular": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y--oE2G2ep10_8.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y--kEyM3Q.ttf" + }, + { + "family": "Angkor", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin" ], + "version": "v28", + "lastModified": "2022-04-20", + "files": { + "regular": "http://fonts.gstatic.com/s/angkor/v28/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/angkor/v28/H4cmBXyAlsPdnlbO8yY6.ttf" + }, + { + "family": "Annie Use Your Telescope", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/annieuseyourtelescope/v18/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/annieuseyourtelescope/v18/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGTlT3F.ttf" + }, + { + "family": "Anonymous Pro", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "cyrillic", "greek", "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf", + "regular": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf", + "italic": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf", + "700italic": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pHl028A.ttf" + }, + { + "family": "Antic", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRaZLodgzydtk.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRZZKq9w.ttf" + }, + { + "family": "Antic Didone", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDSqIEC.ttf" + }, + { + "family": "Antic Slab", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IacNcWQ.ttf" + }, + { + "family": "Anton", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v23", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/anton/v23/1Ptgg87LROyAm0K08i4gS7lu.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anton/v23/1Ptgg87LROyAm3K1-Co.ttf" + }, + { + "family": "Antonio", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8BtIY2DwSXlM.ttf", + "200": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVzx8RtIY2DwSXlM.ttf", + "300": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVwv8RtIY2DwSXlM.ttf", + "500": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxD8RtIY2DwSXlM.ttf", + "600": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyv9htIY2DwSXlM.ttf", + "700": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htIY2DwSXlM.ttf", + "regular": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtIY2DwSXlM.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8StJaWQ.ttf" + }, + { + "family": "Anuphan", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ + "cyrillic-ext", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "version": "v3", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9A4kGmW927Gu.ttf", + "200": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCmY9Q4kGmW927Gu.ttf", + "300": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZClG9Q4kGmW927Gu.ttf", + "500": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkq9Q4kGmW927Gu.ttf", + "600": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCnG8g4kGmW927Gu.ttf", + "700": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCn_8g4kGmW927Gu.ttf", + "regular": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9Q4kGmW927Gu.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9T4lEGE.ttf" + }, + { + "family": "Anybody", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v9", + "lastModified": "2023-04-04", + "files": { + "100": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12HPrsXD_nBPpQ.ttf", + "200": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2DPrsXD_nBPpQ.ttf", + "300": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JiWDPrsXD_nBPpQ.ttf", + "500": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J5WDPrsXD_nBPpQ.ttf", + "600": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JCWfPrsXD_nBPpQ.ttf", + "700": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JMGfPrsXD_nBPpQ.ttf", + "800": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2fPrsXD_nBPpQ.ttf", + "900": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JfmfPrsXD_nBPpQ.ttf", + "regular": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12DPrsXD_nBPpQ.ttf", + "100italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7M_H3HVfpcHY.ttf", + "200italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn7c_H3HVfpcHY.ttf", + "300italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyN57c_H3HVfpcHY.ttf", + "italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7c_H3HVfpcHY.ttf", + "500italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMV7c_H3HVfpcHY.ttf", + "600italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyP56s_H3HVfpcHY.ttf", + "700italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyPA6s_H3HVfpcHY.ttf", + "800italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn6s_H3HVfpcHY.ttf", + "900italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOO6s_H3HVfpcHY.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12D_r8_H.ttf" + }, + { + "family": "Arapey", + "variants": [ "regular", "italic" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf", + "italic": "http://fonts.gstatic.com/s/arapey/v16/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RCKZtoY.ttf" + }, + { + "family": "Arbutus", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/arbutus/v24/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/arbutus/v24/NaPYcZ7dG_5J3pooX9Nnqw.ttf" + }, + { + "family": "Arbutus Slab", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZlaqUZ.ttf" + }, + { + "family": "Architects Daughter", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/architectsdaughter/v18/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/architectsdaughter/v18/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvTY9g5g.ttf" + }, + { + "family": "Archivo", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDJp8B1oJ0vyVQ.ttf", + "200": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDNp8B1oJ0vyVQ.ttf", + "300": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTajNp8B1oJ0vyVQ.ttf", + "500": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTBjNp8B1oJ0vyVQ.ttf", + "600": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp8B1oJ0vyVQ.ttf", + "700": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT0zRp8B1oJ0vyVQ.ttf", + "800": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDRp8B1oJ0vyVQ.ttf", + "900": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTnTRp8B1oJ0vyVQ.ttf", + "regular": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp8B1oJ0vyVQ.ttf", + "100italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBshdsBU7iVdxQ.ttf", + "200italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABsxdsBU7iVdxQ.ttf", + "300italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HDfsxdsBU7iVdxQ.ttf", + "italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBsxdsBU7iVdxQ.ttf", + "500italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCzsxdsBU7iVdxQ.ttf", + "600italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBftBdsBU7iVdxQ.ttf", + "700italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBmtBdsBU7iVdxQ.ttf", + "800italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABtBdsBU7iVdxQ.ttf", + "900italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HAotBdsBU7iVdxQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNZ8Rds.ttf" + }, + { + "family": "Archivo Black", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/archivoblack/v17/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/archivoblack/v17/HTxqL289NzCGg4MzN6KJ7eW6CYqF-w.ttf" + }, + { + "family": "Archivo Narrow", + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v29", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvHlGKpHOtFCQ76Q.ttf", + "600": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhv8laKpHOtFCQ76Q.ttf", + "700": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKpHOtFCQ76Q.ttf", + "regular": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFGKpHOtFCQ76Q.ttf", + "italic": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJi53mpNiEr6T6Y.ttf", + "500italic": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJQ53mpNiEr6T6Y.ttf", + "600italic": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BK84HmpNiEr6T6Y.ttf", + "700italic": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BKF4HmpNiEr6T6Y.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFG6pXmp.ttf" + }, + { + "family": "Are You Serious", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/areyouserious/v10/ll8kK2GVSSr-PtjQ5nONVcNn4306hT9nCGRayg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/areyouserious/v10/ll8kK2GVSSr-PtjQ5nONVcNn430KhDVj.ttf" + }, + { + "family": "Aref Ruqaa", + "variants": [ "regular", "700" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v25", + "lastModified": "2022-12-08", + "files": { + "700": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf", + "regular": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkbxPW1E165rajQKDulIIEoUA.ttf" + }, + { + "family": "Aref Ruqaa Ink", + "variants": [ "regular", "700" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v7", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/arefruqaaink/v7/1q2cY5WOGUFlt84GTOkP6Kdx71xde6WhqWBCyxWn.ttf", + "regular": "http://fonts.gstatic.com/s/arefruqaaink/v7/1q2fY5WOGUFlt84GTOkP6Kdx72ThVIGpgnxL.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/arefruqaaink/v7/1q2fY5WOGUFlt84GTOkP6Kdx71TgXoU.ttf" + }, + { + "family": "Arima", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ + "greek", + "greek-ext", + "latin", + "latin-ext", + "malayalam", + "tamil", + "vietnamese" + ], + "version": "v5", + "lastModified": "2023-04-04", + "files": { + "100": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTE-pQGOyYw2fw.ttf", + "200": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX14TA-pQGOyYw2fw.ttf", + "300": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1PzA-pQGOyYw2fw.ttf", + "500": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1UzA-pQGOyYw2fw.ttf", + "600": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1vzc-pQGOyYw2fw.ttf", + "700": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1hjc-pQGOyYw2fw.ttf", + "regular": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTA-pQGOyYw2fw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTAOpAuK.ttf" + }, + { + "family": "Arimo", + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v28", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsBxDAVQI4aA.ttf", + "600": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3M8tsBxDAVQI4aA.ttf", + "700": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3CstsBxDAVQI4aA.ttf", + "regular": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsBxDAVQI4aA.ttf", + "italic": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-ERBrEdwcoaKww.ttf", + "500italic": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-2RBrEdwcoaKww.ttf", + "600italic": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9aQxrEdwcoaKww.ttf", + "700italic": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9jQxrEdwcoaKww.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxcBhrE.ttf" + }, + { + "family": "Arizonia", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/arizonia/v19/neIIzCemt4A5qa7mv6WGHK06UY30.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/arizonia/v19/neIIzCemt4A5qa7mv5WHFqk.ttf" + }, + { + "family": "Armata", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/armata/v20/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/armata/v20/gokvH63_HV5jQ-ENlTRz.ttf" + }, + { + "family": "Arsenal", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/arsenal/v12/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf", + "regular": "http://fonts.gstatic.com/s/arsenal/v12/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf", + "italic": "http://fonts.gstatic.com/s/arsenal/v12/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf", + "700italic": "http://fonts.gstatic.com/s/arsenal/v12/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/arsenal/v12/wXKrE3kQtZQ4pF3D517cBQ.ttf" + }, + { + "family": "Artifika", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2023-01-10", + "files": { + "regular": "http://fonts.gstatic.com/s/artifika/v21/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/artifika/v21/VEMyRoxzronptCuxu5Ws7DQ.ttf" + }, + { + "family": "Arvo", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/arvo/v20/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf", + "regular": "http://fonts.gstatic.com/s/arvo/v20/tDbD2oWUg0MKmSAa7Lzr7vs.ttf", + "italic": "http://fonts.gstatic.com/s/arvo/v20/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf", + "700italic": "http://fonts.gstatic.com/s/arvo/v20/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/arvo/v20/tDbD2oWUg0MKqSEQ6A.ttf" + }, + { + "family": "Arya", + "variants": [ "regular", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/arya/v19/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf", + "regular": "http://fonts.gstatic.com/s/arya/v19/ga6CawNG-HJd9Ub1-beqdFE.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/arya/v19/ga6CawNG-HJdxUf__Q.ttf" + }, + { + "family": "Asap", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v26", + "lastModified": "2022-11-18", + "files": { + "100": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqQsLmOXoA7Glw.ttf", + "200": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqUsLmOXoA7Glw.ttf", + "300": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYzKUsLmOXoA7Glw.ttf", + "500": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYoKUsLmOXoA7Glw.ttf", + "600": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYTKIsLmOXoA7Glw.ttf", + "700": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYdaIsLmOXoA7Glw.ttf", + "800": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqIsLmOXoA7Glw.ttf", + "900": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYO6IsLmOXoA7Glw.ttf", + "regular": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUsLmOXoA7Glw.ttf", + "100italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbGmTggvWl0Qn.ttf", + "200italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEbWmTggvWl0Qn.ttf", + "300italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmTggvWl0Qn.ttf", + "italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmTggvWl0Qn.ttf", + "500italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmTggvWl0Qn.ttf", + "600italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYaammTggvWl0Qn.ttf", + "700italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammTggvWl0Qn.ttf", + "800italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEammTggvWl0Qn.ttf", + "900italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammTggvWl0Qn.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUcL2mT.ttf" + }, + { + "family": "Asap Condensed", + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v17", + "lastModified": "2023-05-02", + "files": { + "200": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9DSWlEgGqgp-pO.ttf", + "300": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8nSmlEgGqgp-pO.ttf", + "500": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf", + "600": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf", + "700": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf", + "800": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8rTmlEgGqgp-pO.ttf", + "900": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8PT2lEgGqgp-pO.ttf", + "200italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUIFFim6CovpOkXA.ttf", + "300italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOVGim6CovpOkXA.ttf", + "regular": "http://fonts.gstatic.com/s/asapcondensed/v17/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf", + "italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf", + "500italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf", + "600italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf", + "700italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf", + "800italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOlCim6CovpOkXA.ttf", + "900italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUM1Dim6CovpOkXA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/asapcondensed/v17/pxidypY1o9NHyXh3WvSbGSggdOeKaEk.ttf" + }, + { + "family": "Asar", + "variants": [ "regular" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/asar/v22/sZlLdRyI6TBIXkYQDLlTW6E.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/asar/v22/sZlLdRyI6TBIbkcaCA.ttf" + }, + { + "family": "Asset", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/asset/v24/SLXGc1na-mM4cWImRJqExst1.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/asset/v24/SLXGc1na-mM4cVInTp4.ttf" + }, + { + "family": "Assistant", + "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], + "subsets": [ "hebrew", "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZnEGGf3qGuvM4.ttf", + "300": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtrhnEGGf3qGuvM4.ttf", + "500": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", + "600": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", + "700": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", + "800": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZgEGGf3qGuvM4.ttf", + "regular": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnIGCV2g.ttf" + }, + { + "family": "Astloch", + "variants": [ "regular", "700" ], + "subsets": [ "latin" ], + "version": "v26", + "lastModified": "2022-04-20", + "files": { + "700": "http://fonts.gstatic.com/s/astloch/v26/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf", + "regular": "http://fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjm90byA.ttf" + }, + { + "family": "Asul", + "variants": [ "regular", "700" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/asul/v19/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf", + "regular": "http://fonts.gstatic.com/s/asul/v19/VuJ-dNjKxYr46fMFXK78JIg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/asul/v19/VuJ-dNjKxYr42fIPWA.ttf" + }, + { + "family": "Athiti", + "variants": [ "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf", + "300": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf", + "500": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf", + "600": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf", + "700": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf", + "regular": "http://fonts.gstatic.com/s/athiti/v12/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/athiti/v12/pe0vMISdLIZIv1wIDRJS.ttf" + }, + { + "family": "Atkinson Hyperlegible", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt73C1KxNDXMspQ1lPyU89-1h6ONRlW45G8WbcNcy-OZFy-FA.ttf", + "regular": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE5ZgpewSSbQ.ttf", + "italic": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt43C1KxNDXMspQ1lPyU89-1h6ONRlW45G055ItWQGCbUWn.ttf", + "700italic": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt93C1KxNDXMspQ1lPyU89-1h6ONRlW45G056qRdiWKRlmuFH24.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45G05JIt.ttf" + }, + { + "family": "Atma", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "bengali", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf", + "500": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf", + "600": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf", + "700": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf", + "regular": "http://fonts.gstatic.com/s/atma/v16/uK_84rqWc-Eom25bDj8WIv4.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/atma/v16/uK_84rqWc-Eoq29RCg.ttf" + }, + { + "family": "Atomic Age", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v27", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/atomicage/v27/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/atomicage/v27/f0Xz0eug6sdmRFkYZZGL18Dn8Q.ttf" + }, + { + "family": "Aubrey", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v28", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7vugNsCxVEgA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7fuwlo.ttf" + }, + { + "family": "Audiowide", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/audiowide/v16/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/audiowide/v16/l7gdbjpo0cum0ckerWCdkA_L.ttf" + }, + { + "family": "Autour One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/autourone/v24/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/autourone/v24/UqyVK80cP25l3fJgbdfbo5hcUg.ttf" + }, + { + "family": "Average", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/average/v18/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/average/v18/fC1hPYBHe23MxA7rEeN6UQ.ttf" + }, + { + "family": "Average Sans", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJ_BNCe.ttf" + }, + { + "family": "Averia Gruesa Libre", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZYmiDxw.ttf" + }, + { + "family": "Averia Libre", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf", + "700": "http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf", + "300italic": "http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf", + "regular": "http://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf", + "italic": "http://fonts.gstatic.com/s/averialibre/v16/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf", + "700italic": "http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjESA6nN.ttf" + }, + { + "family": "Averia Sans Libre", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf", + "700": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf", + "300italic": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf", + "regular": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf", + "italic": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf", + "700italic": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEdVIEoc.ttf" + }, + { + "family": "Averia Serif Libre", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf", + "700": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf", + "300italic": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf", + "regular": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf", + "italic": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf", + "700italic": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIWzD2ms4wxr6GvjeD0X88SHPyX2xYOpAuK.ttf" + }, + { + "family": "Azeret Mono", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPRh0raa-5s3AA.ttf", + "200": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPVh0raa-5s3AA.ttf", + "300": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfwvVh0raa-5s3AA.ttf", + "500": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh0raa-5s3AA.ttf", + "600": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfQvJh0raa-5s3AA.ttf", + "700": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh0raa-5s3AA.ttf", + "800": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPJh0raa-5s3AA.ttf", + "900": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfNfJh0raa-5s3AA.ttf", + "regular": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh0raa-5s3AA.ttf", + "100italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkLye2Z4nAN7J.ttf", + "200italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJkbye2Z4nAN7J.ttf", + "300italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLbXkbye2Z4nAN7J.ttf", + "italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbye2Z4nAN7J.ttf", + "500italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbye2Z4nAN7J.ttf", + "600italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZXlrye2Z4nAN7J.ttf", + "700italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulrye2Z4nAN7J.ttf", + "800italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJlrye2Z4nAN7J.ttf", + "900italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYglrye2Z4nAN7J.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVR07ye.ttf" + }, + { + "family": "B612", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/b612/v12/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf", + "regular": "http://fonts.gstatic.com/s/b612/v12/3JnySDDxiSz32jm4GDigUXw.ttf", + "italic": "http://fonts.gstatic.com/s/b612/v12/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf", + "700italic": "http://fonts.gstatic.com/s/b612/v12/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/b612/v12/3JnySDDxiSz36jiyHA.ttf" + }, + { + "family": "B612 Mono", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/b612mono/v12/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf", + "regular": "http://fonts.gstatic.com/s/b612mono/v12/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf", + "italic": "http://fonts.gstatic.com/s/b612mono/v12/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf", + "700italic": "http://fonts.gstatic.com/s/b612mono/v12/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/b612mono/v12/kmK_Zq85QVWbN1eW6lJV1g7Y.ttf" + }, + { + "family": "BIZ UDGothic", + "variants": [ "regular", "700" ], + "subsets": [ + "cyrillic", + "greek-ext", + "japanese", + "latin", + "latin-ext" + ], + "version": "v9", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/bizudgothic/v9/daaASTouBF7RUjnbt8p3LuKVCSxZ-xTQZMhbaA.ttf", + "regular": "http://fonts.gstatic.com/s/bizudgothic/v9/daafSTouBF7RUjnbt8p3LuKttQN98z_MbQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bizudgothic/v9/daafSTouBF7RUjnbt8p3LuKdtAl5.ttf" + }, + { + "family": "BIZ UDMincho", + "variants": [ "regular", "700" ], + "subsets": [ + "cyrillic", + "greek-ext", + "japanese", + "latin", + "latin-ext" + ], + "version": "v9", + "lastModified": "2023-01-18", + "files": { + "700": "http://fonts.gstatic.com/s/bizudmincho/v9/EJROQgI6eOxFjBdKs38yhtWNyyvfpeFE-IyCrw.ttf", + "regular": "http://fonts.gstatic.com/s/bizudmincho/v9/EJRRQgI6eOxFjBdKs38yhtW1dwT7rcpY8Q.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bizudmincho/v9/EJRRQgI6eOxFjBdKs38yhtWFdg7_.ttf" + }, + { + "family": "BIZ UDPGothic", + "variants": [ "regular", "700" ], + "subsets": [ + "cyrillic", + "greek-ext", + "japanese", + "latin", + "latin-ext" + ], + "version": "v9", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/bizudpgothic/v9/hESq6X5pHAIBjmS84VL0Bue85skjZWEnTABCSQo.ttf", + "regular": "http://fonts.gstatic.com/s/bizudpgothic/v9/hES36X5pHAIBjmS84VL0Bue83nUMQWkMUAk.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bizudpgothic/v9/hES36X5pHAIBjmS84VL0Bue87nQGRQ.ttf" + }, + { + "family": "BIZ UDPMincho", + "variants": [ "regular", "700" ], + "subsets": [ + "cyrillic", + "greek-ext", + "japanese", + "latin", + "latin-ext" + ], + "version": "v9", + "lastModified": "2023-01-18", + "files": { + "700": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvCbXOBrmYppy7oWWTg1_58pqR3kU7fnZAy57k.ttf", + "regular": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvfbXOBrmYppy7oWWTg1_58nhhYtUb0gZk.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvfbXOBrmYppy7oWWTg1_58rhlSsQ.ttf" + }, + { + "family": "Babylonica", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/babylonica/v2/5aUw9_i2qxWVCAE2aHjTqDJ0-VVMoEw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/babylonica/v2/5aUw9_i2qxWVCAE2aHjTmDN-_Q.ttf" + }, + { + "family": "Bad Script", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin" ], + "version": "v16", + "lastModified": "2022-04-20", + "files": { + "regular": "http://fonts.gstatic.com/s/badscript/v16/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/badscript/v16/6NUT8F6PJgbFWQn47_x7pO0kyQ.ttf" + }, + { + "family": "Bahiana", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/bahiana/v19/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bahiana/v19/uU9PCBUV4YenPWJU3xLR2g.ttf" + }, + { + "family": "Bahianita", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/bahianita/v18/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bahianita/v18/yYLr0hTb3vuqqsBUgxWdxDHR.ttf" + }, + { + "family": "Bai Jamjuree", + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf", + "300": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf", + "500": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf", + "600": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf", + "700": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf", + "200italic": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf", + "300italic": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf", + "regular": "http://fonts.gstatic.com/s/baijamjuree/v11/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf", + "italic": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf", + "500italic": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf", + "600italic": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf", + "700italic": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/baijamjuree/v11/LDI1apSCOBt_aeQQ7ftydoa8WMLO.ttf" + }, + { + "family": "Bakbak One", + "variants": [ "regular" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v6", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/bakbakone/v6/zOL54pXAl6RI-p_ardnuycRuv-hHkOs.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bakbakone/v6/zOL54pXAl6RI-p_ardnu-cVkuw.ttf" + }, + { + "family": "Ballet", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v25", + "lastModified": "2023-03-09", + "files": { + "regular": "http://fonts.gstatic.com/s/ballet/v25/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3C4G-EiAou6Y.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ballet/v25/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3O4C0Fg.ttf" + }, + { + "family": "Baloo 2", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "devanagari", "latin", "latin-ext", "vietnamese" ], + "version": "v16", + "lastModified": "2022-11-09", + "files": { + "500": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgozapv9Fat7WcN.ttf", + "600": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpv9Fat7WcN.ttf", + "700": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpv9Fat7WcN.ttf", + "800": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpv9Fat7WcN.ttf", + "regular": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgazapv9Fat7WcN.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgazZpu_lI.ttf" + }, + { + "family": "Baloo Bhai 2", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "gujarati", "latin", "latin-ext", "vietnamese" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNhohMXeCo-jsZzo.ttf", + "600": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNvYmMXeCo-jsZzo.ttf", + "700": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNs8mMXeCo-jsZzo.ttf", + "800": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNqgmMXeCo-jsZzo.ttf", + "regular": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighMXeCo-jsZzo.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighAXaIpw.ttf" + }, + { + "family": "Baloo Bhaijaan 2", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], + "version": "v14", + "lastModified": "2022-11-09", + "files": { + "500": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyjSqP4L4ppfcyC.ttf", + "600": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TxPTaP4L4ppfcyC.ttf", + "700": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8Tx2TaP4L4ppfcyC.ttf", + "800": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TwRTaP4L4ppfcyC.ttf", + "regular": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSqP4L4ppfcyC.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSpP5JY4.ttf" + }, + { + "family": "Baloo Bhaina 2", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "latin", "latin-ext", "oriya", "vietnamese" ], + "version": "v22", + "lastModified": "2022-11-09", + "files": { + "500": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEgMPvRfRLYWmZSA.ttf", + "600": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEbMTvRfRLYWmZSA.ttf", + "700": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEVcTvRfRLYWmZSA.ttf", + "800": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEMsTvRfRLYWmZSA.ttf", + "regular": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPvRfRLYWmZSA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPfRP5P.ttf" + }, + { + "family": "Baloo Chettan 2", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "latin", "latin-ext", "malayalam", "vietnamese" ], + "version": "v16", + "lastModified": "2022-11-09", + "files": { + "500": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CdCTO1oeH9xI2gc.ttf", + "600": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CTyUO1oeH9xI2gc.ttf", + "700": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CQWUO1oeH9xI2gc.ttf", + "800": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CWKUO1oeH9xI2gc.ttf", + "regular": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTO1oeH9xI2gc.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTC1sUGw.ttf" + }, + { + "family": "Baloo Da 2", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "bengali", "latin", "latin-ext", "vietnamese" ], + "version": "v17", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjA5sTNe55aRa7UE.ttf", + "600": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDVtjNe55aRa7UE.ttf", + "700": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDstjNe55aRa7UE.ttf", + "800": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjCLtjNe55aRa7UE.ttf", + "regular": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsTNe55aRa7UE.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsQNf7ZI.ttf" + }, + { + "family": "Baloo Paaji 2", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "gurmukhi", "latin", "latin-ext", "vietnamese" ], + "version": "v22", + "lastModified": "2022-11-09", + "files": { + "500": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", + "600": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", + "700": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", + "800": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", + "regular": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX74fybRUz1r5t.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX77fzZxE.ttf" + }, + { + "family": "Baloo Tamma 2", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "kannada", "latin", "latin-ext", "vietnamese" ], + "version": "v15", + "lastModified": "2022-11-09", + "files": { + "500": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMsuPp-0IF71SGC5.ttf", + "600": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMvCOZ-0IF71SGC5.ttf", + "700": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMv7OZ-0IF71SGC5.ttf", + "800": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMucOZ-0IF71SGC5.ttf", + "regular": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPp-0IF71SGC5.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPq-1Klo.ttf" + }, + { + "family": "Baloo Tammudu 2", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "latin", "latin-ext", "telugu", "vietnamese" ], + "version": "v22", + "lastModified": "2022-11-09", + "files": { + "500": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jc0e4c6PZSlGmAA.ttf", + "600": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JSEZ4c6PZSlGmAA.ttf", + "700": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JRgZ4c6PZSlGmAA.ttf", + "800": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JX8Z4c6PZSlGmAA.ttf", + "regular": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e4c6PZSlGmAA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e0c-FYQ.ttf" + }, + { + "family": "Baloo Thambi 2", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "latin", "latin-ext", "tamil", "vietnamese" ], + "version": "v16", + "lastModified": "2022-11-09", + "files": { + "500": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbK_8IzaQRG_n4osQ.ttf", + "600": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKE8UzaQRG_n4osQ.ttf", + "700": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKKsUzaQRG_n4osQ.ttf", + "800": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKTcUzaQRG_n4osQ.ttf", + "regular": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIzaQRG_n4osQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIDaA5C.ttf" + }, + { + "family": "Balsamiq Sans", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sZzZiAbNrN8SB3lQQX7PncyWUyBY9mAzLFRQI.ttf", + "regular": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf", + "italic": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sazZiAbNrN8SB3lQQX7PncwdsXJaVIDzvcXA.ttf", + "700italic": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsBxDAVQI4aA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sEzZiAbNrN8SB3lQQX7PncwdgXJQ.ttf" + }, + { + "family": "Balthazar", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEfyB7s.ttf" + }, + { + "family": "Bangers", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v21", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/bangers/v21/FeVQS0BTqb0h60ACL5la2bxii28.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bangers/v21/FeVQS0BTqb0h60ACH5hQ3Q.ttf" + }, + { + "family": "Barlow", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf", + "200": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf", + "300": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf", + "500": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf", + "600": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf", + "700": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf", + "800": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf", + "900": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf", + "100italic": "http://fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf", + "200italic": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf", + "300italic": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf", + "regular": "http://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf", + "italic": "http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf", + "500italic": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf", + "600italic": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf", + "700italic": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf", + "800italic": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf", + "900italic": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7E_Css8.ttf" + }, + { + "family": "Barlow Condensed", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf", + "200": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf", + "300": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf", + "500": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf", + "600": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf", + "700": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf", + "800": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf", + "900": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf", + "100italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf", + "200italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf", + "300italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf", + "regular": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf", + "italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf", + "500italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf", + "600italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf", + "700italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf", + "800italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf", + "900italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B6xfT3w.ttf" + }, + { + "family": "Barlow Semi Condensed", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf", + "200": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf", + "300": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf", + "500": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf", + "600": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf", + "700": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf", + "800": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf", + "900": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf", + "100italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf", + "200italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf", + "300italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf", + "regular": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf", + "italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf", + "500italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf", + "600italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf", + "700italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf", + "800italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf", + "900italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfoqv.ttf" + }, + { + "family": "Barriecito", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/barriecito/v17/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/barriecito/v17/WWXXlj-CbBOSLY2QTuY_GdQoZw.ttf" + }, + { + "family": "Barrio", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/barrio/v19/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/barrio/v19/wEO8EBXBk8hBIDi0dAwl.ttf" + }, + { + "family": "Basic", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKQN34lDVyR7D.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKTN26FQ.ttf" + }, + { + "family": "Baskervville", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-01-18", + "files": { + "regular": "http://fonts.gstatic.com/s/baskervville/v14/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf", + "italic": "http://fonts.gstatic.com/s/baskervville/v14/YA9Kr0yU4l_XOrogbkun3kQQtZmspPPZ9Mlt.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/baskervville/v14/YA9Ur0yU4l_XOrogbkun3kQQtpms.ttf" + }, + { + "family": "Battambang", + "variants": [ "100", "300", "regular", "700", "900" ], + "subsets": [ "khmer", "latin" ], + "version": "v24", + "lastModified": "2022-04-20", + "files": { + "100": "http://fonts.gstatic.com/s/battambang/v24/uk-kEGe7raEw-HjkzZabNhGp5w50_o9T7Q.ttf", + "300": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNtmLxyRa8oZK9I0.ttf", + "700": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf", + "900": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNvGOxyRa8oZK9I0.ttf", + "regular": "http://fonts.gstatic.com/s/battambang/v24/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/battambang/v24/uk-mEGe7raEw-HjkzZabPnSp5w.ttf" + }, + { + "family": "Baumans", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-04-20", + "files": { + "regular": "http://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3Qfpd_s4bg.ttf" + }, + { + "family": "Bayon", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin" ], + "version": "v29", + "lastModified": "2022-04-20", + "files": { + "regular": "http://fonts.gstatic.com/s/bayon/v29/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bayon/v29/9XUrlJNmn0LPFm-oMBI.ttf" + }, + { + "family": "Be Vietnam Pro", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HRUBX8YYbAiah8.ttf", + "200": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HT4JF8yT7wrcwap.ttf", + "300": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HScJ18yT7wrcwap.ttf", + "500": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf", + "600": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf", + "700": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSMIF8yT7wrcwap.ttf", + "800": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSQI18yT7wrcwap.ttf", + "900": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HS0Il8yT7wrcwap.ttf", + "100italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsSZZIneh-waA.ttf", + "200italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczRbgJdhapcUU.ttf", + "300italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwRbgJdhapcUU.ttf", + "regular": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVPSTAyLFyeg_IDWvOJmVES_EwwD3s6ZKAi.ttf", + "italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HwyBX8YYbAiah8.ttf", + "500italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxRbgJdhapcUU.ttf", + "600italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2RbgJdhapcUU.ttf", + "700italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3RbgJdhapcUU.ttf", + "800italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80RbgJdhapcUU.ttf", + "900italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1RbgJdhapcUU.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVPSTAyLFyeg_IDWvOJmVES_HwxBX8.ttf" + }, + { + "family": "Beau Rivage", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUlmg3NZp8K2sL.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUllg2P54.ttf" + }, + { + "family": "Bebas Neue", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v9", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/bebasneue/v9/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bebasneue/v9/JTUSjIg69CK48gW7PXoo9W9hzg.ttf" + }, + { + "family": "Belgrano", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZfMEgL0.ttf" + }, + { + "family": "Bellefair", + "variants": [ "regular" ], + "subsets": [ "hebrew", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/bellefair/v14/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bellefair/v14/kJExBuYY6AAuhiXUxG1N_voy.ttf" + }, + { + "family": "Belleza", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4Bhcf4bw.ttf" + }, + { + "family": "Bellota", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAID55kGMViblPtXs.ttf", + "700": "http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAIC5-kGMViblPtXs.ttf", + "300italic": "http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjHGEfjZtKpXulTQ.ttf", + "regular": "http://fonts.gstatic.com/s/bellota/v16/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf", + "italic": "http://fonts.gstatic.com/s/bellota/v16/MwQ0bhXl3_qEpiwAKJBbsEk7hbBWrA.ttf", + "700italic": "http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjDGYfjZtKpXulTQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bellota/v16/MwQ2bhXl3_qEpiwAKJNbsA.ttf" + }, + { + "family": "Bellota Text", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5VfsqfQXwQy6yxg.ttf", + "700": "http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5RfwqfQXwQy6yxg.ttf", + "300italic": "http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_0YSuixmYK.ttf", + "regular": "http://fonts.gstatic.com/s/bellotatext/v16/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf", + "italic": "http://fonts.gstatic.com/s/bellotatext/v16/0FlNVP2VnlWS4f3-UE9hHXMx-9kKVyv8Sjer.ttf", + "700italic": "http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_0YSuixmYK.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bellotatext/v16/0FlTVP2VnlWS4f3-UE9hHXMx-NkK.ttf" + }, + { + "family": "BenchNine", + "variants": [ "300", "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf", + "700": "http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf", + "regular": "http://fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosbVslx.ttf" + }, + { + "family": "Benne", + "variants": [ "regular" ], + "subsets": [ "kannada", "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/benne/v22/L0xzDFAhn18E6Vjxlt6qTDBN.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/benne/v22/L0xzDFAhn18E6WjwnNo.ttf" + }, + { + "family": "Bentham", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/bentham/v18/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bentham/v18/VdGeAZQPEpYfmHglGW0xDA.ttf" + }, + { + "family": "Berkshire Swash", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/berkshireswash/v16/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/berkshireswash/v16/ptRRTi-cavZOGqCvnNJDl5m5XmN_rM42.ttf" + }, + { + "family": "Besley", + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2023-03-21", + "files": { + "500": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fYTBSdRoFPOl8-E.ttf", + "600": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fWjGSdRoFPOl8-E.ttf", + "700": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fVHGSdRoFPOl8-E.ttf", + "800": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fTbGSdRoFPOl8-E.ttf", + "900": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fR_GSdRoFPOl8-E.ttf", + "regular": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBSdRoFPOl8-E.ttf", + "italic": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CoZdiENGg4-E04A.ttf", + "500italic": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Ck5diENGg4-E04A.ttf", + "600italic": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Cf5BiENGg4-E04A.ttf", + "700italic": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CRpBiENGg4-E04A.ttf", + "800italic": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CIZBiENGg4-E04A.ttf", + "900italic": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CCJBiENGg4-E04A.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBedViEA.ttf" + }, + { + "family": "Beth Ellen", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-04-20", + "files": { + "regular": "http://fonts.gstatic.com/s/bethellen/v17/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bethellen/v17/WwkbxPW2BE-3rb_JNT-qIIEoUA.ttf" + }, + { + "family": "Bevan", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v21", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/bevan/v21/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf", + "italic": "http://fonts.gstatic.com/s/bevan/v21/4iCt6KZ0a9NXjG8YWC7Zs0SJD4U.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bevan/v21/4iCj6KZ0a9NXjG8bWC4.ttf" + }, + { + "family": "BhuTuka Expanded One", + "variants": [ "regular" ], + "subsets": [ "gurmukhi", "latin", "latin-ext" ], + "version": "v3", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/bhutukaexpandedone/v3/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJCyX8pg_RVH1.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bhutukaexpandedone/v3/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJByW-Jw.ttf" + }, + { + "family": "Big Shoulders Display", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v19", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY86JF46SRP4yZQ.ttf", + "200": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ87JF46SRP4yZQ.ttf", + "300": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YddE7JF46SRP4yZQ.ttf", + "500": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0Ydb07JF46SRP4yZQ.ttf", + "600": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdVE8JF46SRP4yZQ.ttf", + "700": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdWg8JF46SRP4yZQ.ttf", + "800": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ88JF46SRP4yZQ.ttf", + "900": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdSY8JF46SRP4yZQ.ttf", + "regular": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87JF46SRP4yZQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87FF8wTQ.ttf" + }, + { + "family": "Big Shoulders Inline Display", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v25", + "lastModified": "2023-03-09", + "files": { + "100": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBEnR5yPc2Huux.ttf", + "200": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBE3R5yPc2Huux.ttf", + "300": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0mfE3R5yPc2Huux.ttf", + "500": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nzE3R5yPc2Huux.ttf", + "600": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kfFHR5yPc2Huux.ttf", + "700": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kmFHR5yPc2Huux.ttf", + "800": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBFHR5yPc2Huux.ttf", + "900": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0loFHR5yPc2Huux.ttf", + "regular": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE3R5yPc2Huux.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE0R4wvM.ttf" + }, + { + "family": "Big Shoulders Inline Text", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v24", + "lastModified": "2023-03-09", + "files": { + "100": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0yqGN7Y6Jsc8c.ttf", + "200": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0y6GN7Y6Jsc8c.ttf", + "300": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgbqy6GN7Y6Jsc8c.ttf", + "500": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgaGy6GN7Y6Jsc8c.ttf", + "600": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZqzKGN7Y6Jsc8c.ttf", + "700": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZTzKGN7Y6Jsc8c.ttf", + "800": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0zKGN7Y6Jsc8c.ttf", + "900": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgYdzKGN7Y6Jsc8c.ttf", + "regular": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y6GN7Y6Jsc8c.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y5GM54o.ttf" + }, + { + "family": "Big Shoulders Stencil Display", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0nPKHznJucP9w.ttf", + "200": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0jPKHznJucP9w.ttf", + "300": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_ZUjPKHznJucP9w.ttf", + "500": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_CUjPKHznJucP9w.ttf", + "600": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_5U_PKHznJucP9w.ttf", + "700": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_3E_PKHznJucP9w.ttf", + "800": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0_PKHznJucP9w.ttf", + "900": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_kk_PKHznJucP9w.ttf", + "regular": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0jPKHznJucP9w.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0j_KXbj.ttf" + }, + { + "family": "Big Shoulders Stencil Text", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04XIGS_Py_AWbQ.ttf", + "200": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4TIGS_Py_AWbQ.ttf", + "300": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRjYTIGS_Py_AWbQ.ttf", + "500": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR4YTIGS_Py_AWbQ.ttf", + "600": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRDYPIGS_Py_AWbQ.ttf", + "700": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRNIPIGS_Py_AWbQ.ttf", + "800": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4PIGS_Py_AWbQ.ttf", + "900": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGReoPIGS_Py_AWbQ.ttf", + "regular": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04TIGS_Py_AWbQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04T4GCXL.ttf" + }, + { + "family": "Big Shoulders Text", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v22", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-r3TIPNl6P2pc.ttf", + "200": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-q3TIPNl6P2pc.ttf", + "300": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3dGq3TIPNl6P2pc.ttf", + "500": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3b2q3TIPNl6P2pc.ttf", + "600": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3VGt3TIPNl6P2pc.ttf", + "700": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Wit3TIPNl6P2pc.ttf", + "800": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-t3TIPNl6P2pc.ttf", + "900": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Sat3TIPNl6P2pc.ttf", + "regular": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q3TIPNl6P2pc.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q7TMFMg.ttf" + }, + { + "family": "Bigelow Rules", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/bigelowrules/v24/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bigelowrules/v24/RrQWboly8iR_I3KWSzeRuN0zf4YIGw.ttf" + }, + { + "family": "Bigshot One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v25", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/bigshotone/v25/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bigshotone/v25/u-470qukhRkkO6BD_7cM_jxvWwY.ttf" + }, + { + "family": "Bilbo", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ210hpIRz4wxE.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ220groA.ttf" + }, + { + "family": "Bilbo Swash Caps", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdmALiog.ttf" + }, + { + "family": "BioRhyme", + "variants": [ "200", "300", "regular", "700", "800" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2023-05-02", + "files": { + "200": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf", + "300": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf", + "700": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf", + "800": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf", + "regular": "http://fonts.gstatic.com/s/biorhyme/v13/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/biorhyme/v13/1cXwaULHBpDMsHYW_ExHr1E.ttf" + }, + { + "family": "BioRhyme Expanded", + "variants": [ "200", "300", "regular", "700", "800" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf", + "300": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf", + "700": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf", + "800": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf", + "regular": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dQIE1zZzytGswgU577CDY9LjbffxSVT3Q.ttf" + }, + { + "family": "Birthstone", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v11", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/birthstone/v11/8AtsGs2xO4yLRhy87sv_HLn5jRfZHzM.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/birthstone/v11/8AtsGs2xO4yLRhy87sv_LLjziQ.ttf" + }, + { + "family": "Birthstone Bounce", + "variants": [ "regular", "500" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v9", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6SaxZF43lIvTWrktHOTBJZGH7dEd29MacQJZP1LmD9.ttf", + "regular": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6XaxZF43lIvTWrktHOTBJZGH7dEeVJGIMYDo_8.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6XaxZF43lIvTWrktHOTBJZGH7dEdVIEoc.ttf" + }, + { + "family": "Biryani", + "variants": [ "200", "300", "regular", "600", "700", "800", "900" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf", + "300": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf", + "600": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf", + "700": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf", + "800": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf", + "900": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf", + "regular": "http://fonts.gstatic.com/s/biryani/v13/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/biryani/v13/hv-WlzNxIFoO84YdfU0TOQ.ttf" + }, + { + "family": "Bitter", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v32", + "lastModified": "2022-12-08", + "files": { + "100": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCL_EXFh2reU.ttf", + "200": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCL_EXFh2reU.ttf", + "300": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCL_EXFh2reU.ttf", + "500": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCL_EXFh2reU.ttf", + "600": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCL_EXFh2reU.ttf", + "700": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL_EXFh2reU.ttf", + "800": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCL_EXFh2reU.ttf", + "900": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCL_EXFh2reU.ttf", + "regular": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL_EXFh2reU.ttf", + "100italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OWHpzveWxBw.ttf", + "200italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOWHpzveWxBw.ttf", + "300italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOWHpzveWxBw.ttf", + "italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWHpzveWxBw.ttf", + "500italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOWHpzveWxBw.ttf", + "600italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOWHpzveWxBw.ttf", + "700italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOWHpzveWxBw.ttf", + "800italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOWHpzveWxBw.ttf", + "900italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOWHpzveWxBw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfOL7OWA.ttf" + }, + { + "family": "Black And White Picture", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/blackandwhitepicture/v22/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/blackandwhitepicture/v22/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqL5GZ8c.ttf" + }, + { + "family": "Black Han Sans", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/blackhansans/v15/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/blackhansans/v15/ea8Aad44WunzF9a-dL6toA8r8kqUK3A.ttf" + }, + { + "family": "Black Ops One", + "variants": [ "regular" ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3aD3bsg.ttf" + }, + { + "family": "Blaka", + "variants": [ "regular" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v5", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/blaka/v5/8vIG7w8722p_6kdr20D2FV5e.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/blaka/v5/8vIG7w8722p_6ndq0UQ.ttf" + }, + { + "family": "Blaka Hollow", + "variants": [ "regular" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v5", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/blakahollow/v5/MCoUzAL91sjRE2FsKsxUtezYB9oFyW_-oA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/blakahollow/v5/MCoUzAL91sjRE2FsKsxUtezoBtAB.ttf" + }, + { + "family": "Blaka Ink", + "variants": [ "regular" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v6", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/blakaink/v6/AlZy_zVVtpj22Znag2chdXf4XB0Tow.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/blakaink/v6/AlZy_zVVtpj22Znag2cRdH38.ttf" + }, + { + "family": "Blinker", + "variants": [ + "100", + "200", + "300", + "regular", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/blinker/v13/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf", + "200": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf", + "300": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf", + "600": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf", + "700": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf", + "800": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf", + "900": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf", + "regular": "http://fonts.gstatic.com/s/blinker/v13/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/blinker/v13/cIf9MaFatEE-VTaP9CihZA.ttf" + }, + { + "family": "Bodoni Moda", + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2023-03-21", + "files": { + "500": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oXzawIBytVjMYwE.ttf", + "600": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oZDdwIBytVjMYwE.ttf", + "700": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIBytVjMYwE.ttf", + "800": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oc7dwIBytVjMYwE.ttf", + "900": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oefdwIBytVjMYwE.ttf", + "regular": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIBytVjMYwE.ttf", + "italic": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4sXrJcwHqoQ.ttf", + "500italic": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZGsN4sXrJcwHqoQ.ttf", + "600italic": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZ9sR4sXrJcwHqoQ.ttf", + "700italic": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZz8R4sXrJcwHqoQ.ttf", + "800italic": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZqMR4sXrJcwHqoQ.ttf", + "900italic": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZgcR4sXrJcwHqoQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7a8IF4sQ.ttf" + }, + { + "family": "Bokor", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin" ], + "version": "v30", + "lastModified": "2022-04-21", + "files": { + "regular": "http://fonts.gstatic.com/s/bokor/v30/m8JcjfpeeaqTiR2WdInbcaxE.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bokor/v30/m8JcjfpeeaqTiS2Xfo0.ttf" + }, + { + "family": "Bona Nova", + "variants": [ "regular", "italic", "700" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/bonanova/v10/B50IF7ZCpX7fcHfvIUBxN4dOFISeJY8GgQ.ttf", + "regular": "http://fonts.gstatic.com/s/bonanova/v10/B50NF7ZCpX7fcHfvIUBJi6hqHK-CLA.ttf", + "italic": "http://fonts.gstatic.com/s/bonanova/v10/B50LF7ZCpX7fcHfvIUB5iaJuPqqSLJYf.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bonanova/v10/B50NF7ZCpX7fcHfvIUB5iqJu.ttf" + }, + { + "family": "Bonbon", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v26", + "lastModified": "2022-04-21", + "files": { + "regular": "http://fonts.gstatic.com/s/bonbon/v26/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bonbon/v26/0FlVVPeVlFec4eePcTsE.ttf" + }, + { + "family": "Bonheur Royale", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v10", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/bonheurroyale/v10/c4m51nt_GMTrtX-b9GcG4-YRmYK_c0f1N5Ij.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bonheurroyale/v10/c4m51nt_GMTrtX-b9GcG4-YRmbK-eUM.ttf" + }, + { + "family": "Boogaloo", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/boogaloo/v19/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/boogaloo/v19/kmK-Zq45GAvOdnaW6y1E9y4.ttf" + }, + { + "family": "Bowlby One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/bowlbyone/v19/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bowlbyone/v19/taiPGmVuC4y96PFeqp8sqo-I-Q.ttf" + }, + { + "family": "Bowlby One SC", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/bowlbyonesc/v20/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bowlbyonesc/v20/DtVlJxerQqQm37tzN3wMug9P_gn2pw.ttf" + }, + { + "family": "Braah One", + "variants": [ "regular" ], + "subsets": [ "gurmukhi", "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/braahone/v2/KFOlCnWUpt6LsxxxiylvAx05IsDqlA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/braahone/v2/KFOlCnWUpt6LsxxxiylfAhc9.ttf" + }, + { + "family": "Brawler", + "variants": [ "regular", "700" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/brawler/v19/xn7lYHE3xXewAscGiryUb932eNaPfk8.ttf", + "regular": "http://fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGggGxTw.ttf" + }, + { + "family": "Bree Serif", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluA96zp4g.ttf" + }, + { + "family": "Bruno Ace", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v1", + "lastModified": "2023-04-20", + "files": { + "regular": "http://fonts.gstatic.com/s/brunoace/v1/WwkcxPa2E06x4trkOj_kMKoMWNMg3Q.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/brunoace/v1/WwkcxPa2E06x4trkOj_UMaAI.ttf" + }, + { + "family": "Bruno Ace SC", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v1", + "lastModified": "2023-04-20", + "files": { + "regular": "http://fonts.gstatic.com/s/brunoacesc/v1/ptROTiycffFLBuiHjdJDl634LSFrpe8uZA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/brunoacesc/v1/ptROTiycffFLBuiHjdJDl63ILCtv.ttf" + }, + { + "family": "Brygada 1918", + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v21", + "lastModified": "2023-01-06", + "files": { + "500": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y12f-V8Wu5O3gbo.ttf", + "600": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y7GY-V8Wu5O3gbo.ttf", + "700": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y4iY-V8Wu5O3gbo.ttf", + "regular": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-f-V8Wu5O3gbo.ttf", + "italic": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcERwcv7GykboaLg.ttf", + "500italic": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcIxwcv7GykboaLg.ttf", + "600italic": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfczxscv7GykboaLg.ttf", + "700italic": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfc9hscv7GykboaLg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-fyV4cvw.ttf" + }, + { + "family": "Bubblegum Sans", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/bubblegumsans/v16/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bubblegumsans/v16/AYCSpXb_Z9EORv1M5QTjEzMEteaGxIc.ttf" + }, + { + "family": "Bubbler One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/bubblerone/v20/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bubblerone/v20/f0Xy0eqj68ppQV9KBLmAotHG0ac.ttf" + }, + { + "family": "Buda", + "variants": [ "300" ], + "subsets": [ "latin" ], + "version": "v25", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/buda/v25/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/buda/v25/GFDqWAN8mnyIJSSrK7QLqw.ttf" + }, + { + "family": "Buenard", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/buenard/v17/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf", + "regular": "http://fonts.gstatic.com/s/buenard/v17/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/buenard/v17/OD5DuM6Cyma8FnnsDzb3rA.ttf" + }, + { + "family": "Bungee", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/bungee/v11/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bungee/v11/N0bU2SZBIuF2PU_0C3Rw.ttf" + }, + { + "family": "Bungee Hairline", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v19", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/bungeehairline/v19/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bungeehairline/v19/snfys0G548t04270a_ljTLUVrv-LYReZ.ttf" + }, + { + "family": "Bungee Inline", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v12", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/bungeeinline/v12/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bungeeinline/v12/Gg8zN58UcgnlCweMrih332VuPGN__A.ttf" + }, + { + "family": "Bungee Outline", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/bungeeoutline/v18/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bungeeoutline/v18/_6_mEDvmVP24UvU2MyiGDslL3Tg2aBY.ttf" + }, + { + "family": "Bungee Shade", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/bungeeshade/v11/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bungeeshade/v11/DtVkJxarWL0t2KdzK3oI_jkc7yjW.ttf" + }, + { + "family": "Bungee Spice", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v8", + "lastModified": "2022-09-14", + "files": { + "regular": "http://fonts.gstatic.com/s/bungeespice/v8/nwpTtK2nIhxE0q-IwgSpZBqCzyI-aMPF7Q.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/bungeespice/v8/nwpTtK2nIhxE0q-IwgSpZBqyzig6.ttf" + }, + { + "family": "Butcherman", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb5zS5rw.ttf" + }, + { + "family": "Butterfly Kids", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/butterflykids/v21/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/butterflykids/v21/ll8lK2CWTjuqAsXDqlnIbMNs5R4bpRU.ttf" + }, + { + "family": "Cabin", + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v26", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7Gvxm7rE_s.ttf", + "600": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Gvxm7rE_s.ttf", + "700": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Gvxm7rE_s.ttf", + "regular": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Gvxm7rE_s.ttf", + "italic": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_KlwkzuA_u1Bg.ttf", + "500italic": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlwkzuA_u1Bg.ttf", + "600italic": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlwkzuA_u1Bg.ttf", + "700italic": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlwkzuA_u1Bg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EH7Clwg.ttf" + }, + { + "family": "Cabin Condensed", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf", + "600": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf", + "700": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf", + "regular": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpMtK6mNhBK2err_hqkYhHRqmwqYeLd.ttf" + }, + { + "family": "Cabin Sketch", + "variants": [ "regular", "700" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/cabinsketch/v19/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf", + "regular": "http://fonts.gstatic.com/s/cabinsketch/v19/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cabinsketch/v19/QGYpz_kZZAGCONcK2A4bGOj8nthI.ttf" + }, + { + "family": "Caesar Dressing", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrRHcLz-.ttf" + }, + { + "family": "Cagliostro", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TvGTONw.ttf" + }, + { + "family": "Cairo", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v28", + "lastModified": "2023-05-02", + "files": { + "200": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA-W1ToLQ-HmkA.ttf", + "300": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hL4-W1ToLQ-HmkA.ttf", + "500": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1ToLQ-HmkA.ttf", + "600": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hD45W1ToLQ-HmkA.ttf", + "700": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1ToLQ-HmkA.ttf", + "800": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA5W1ToLQ-HmkA.ttf", + "900": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hEk5W1ToLQ-HmkA.ttf", + "regular": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1ToLQ-HmkA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-a1XiKQ.ttf" + }, + { + "family": "Cairo Play", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v7", + "lastModified": "2023-04-27", + "files": { + "200": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnYq9yXa8GvzaA.ttf", + "300": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1zHYq9yXa8GvzaA.ttf", + "500": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1oHYq9yXa8GvzaA.ttf", + "600": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1THEq9yXa8GvzaA.ttf", + "700": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1dXEq9yXa8GvzaA.ttf", + "800": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnEq9yXa8GvzaA.ttf", + "900": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1O3Eq9yXa8GvzaA.ttf", + "regular": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1knYq9yXa8GvzaA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1knYa9i_e.ttf" + }, + { + "family": "Caladea", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/caladea/v7/kJE2BugZ7AAjhybUtaNY39oYqO52FZ0.ttf", + "regular": "http://fonts.gstatic.com/s/caladea/v7/kJEzBugZ7AAjhybUjR93-9IztOc.ttf", + "italic": "http://fonts.gstatic.com/s/caladea/v7/kJExBugZ7AAjhybUvR19__A2pOdvDA.ttf", + "700italic": "http://fonts.gstatic.com/s/caladea/v7/kJE0BugZ7AAjhybUvR1FQ98SrMxzBZ2lDA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/caladea/v7/kJEzBugZ7AAjhybUvR59_w.ttf" + }, + { + "family": "Calistoga", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v13", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/calistoga/v13/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/calistoga/v13/6NUU8F2OJg6MeR7l4e0ftcwE.ttf" + }, + { + "family": "Calligraffitti", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vkFYOZI.ttf" + }, + { + "family": "Cambay", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/cambay/v12/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf", + "regular": "http://fonts.gstatic.com/s/cambay/v12/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf", + "italic": "http://fonts.gstatic.com/s/cambay/v12/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf", + "700italic": "http://fonts.gstatic.com/s/cambay/v12/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cambay/v12/SLXJc1rY6H0_ZDs2b76M.ttf" + }, + { + "family": "Cambo", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/cambo/v17/IFSqHeNEk8FJk416ok7xkPm8.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cambo/v17/IFSqHeNEk8FJk717qEo.ttf" + }, + { + "family": "Candal", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8c9ABQN.ttf" + }, + { + "family": "Cantarell", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-11-09", + "files": { + "700": "http://fonts.gstatic.com/s/cantarell/v17/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf", + "regular": "http://fonts.gstatic.com/s/cantarell/v17/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf", + "italic": "http://fonts.gstatic.com/s/cantarell/v17/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf", + "700italic": "http://fonts.gstatic.com/s/cantarell/v17/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cantarell/v17/B50NF7ZDq37KMUvlO015iqJu.ttf" + }, + { + "family": "Cantata One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslWxFvcQ.ttf" + }, + { + "family": "Cantora One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/cantoraone/v19/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cantoraone/v19/gyB4hws1JdgnKy56GB_JX5zcbY8.ttf" + }, + { + "family": "Capriola", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/capriola/v14/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/capriola/v14/wXKoE3YSppcvo1PDlk_9JeQ.ttf" + }, + { + "family": "Caramel", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/caramel/v7/P5sCzZKBbMTf_ShyxCRuiZ-uydg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/caramel/v7/P5sCzZKBbMTf_Shy9CVkjQ.ttf" + }, + { + "family": "Carattere", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/carattere/v7/4iCv6Kp1b9dXlgt_CkvTt2aMH4V_gg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/carattere/v7/4iCv6Kp1b9dXlgt_CkvjtmyI.ttf" + }, + { + "family": "Cardo", + "variants": [ "regular", "italic", "700" ], + "subsets": [ "greek", "greek-ext", "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/cardo/v19/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf", + "regular": "http://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf", + "italic": "http://fonts.gstatic.com/s/cardo/v19/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqhv-3IQ.ttf" + }, + { + "family": "Carlito", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v3", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/carlito/v3/3Jn4SDPw3m-pk039BIykaX0vUuhCyOo.ttf", + "regular": "http://fonts.gstatic.com/s/carlito/v3/3Jn9SDPw3m-pk039PDCLTXUETuE.ttf", + "italic": "http://fonts.gstatic.com/s/carlito/v3/3Jn_SDPw3m-pk039DDKBSVcBXuFb0Q.ttf", + "700italic": "http://fonts.gstatic.com/s/carlito/v3/3Jn6SDPw3m-pk039DDK59XglVspH2OprMQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/carlito/v3/3Jn9SDPw3m-pk039DDGBSQ.ttf" + }, + { + "family": "Carme", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDNjHzrc.ttf" + }, + { + "family": "Carrois Gothic", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9amC1Co.ttf" + }, + { + "family": "Carrois Gothic SC", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-18mPnI.ttf" + }, + { + "family": "Carter One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNExV8gQ.ttf" + }, + { + "family": "Castoro", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/castoro/v19/1q2GY5yMCld3-O4cHYhEzOYenEU.ttf", + "italic": "http://fonts.gstatic.com/s/castoro/v19/1q2EY5yMCld3-O4cLYpOyMQbjEX5fw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/castoro/v19/1q2GY5yMCld3-O4cLYlOyA.ttf" + }, + { + "family": "Castoro Titling", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v3", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/castorotitling/v3/buEupouwccj03leTfjUAhEZWlrNqYgckeo9RMw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/castorotitling/v3/buEupouwccj03leTfjUAhEZWlrNaYw0g.ttf" + }, + { + "family": "Catamaran", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "tamil" ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1anXuluiLyw.ttf", + "200": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1anXuluiLyw.ttf", + "300": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1anXuluiLyw.ttf", + "500": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1anXuluiLyw.ttf", + "600": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1anXuluiLyw.ttf", + "700": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1anXuluiLyw.ttf", + "800": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1anXuluiLyw.ttf", + "900": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1anXuluiLyw.ttf", + "regular": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1anXuluiLyw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd5ajdvg.ttf" + }, + { + "family": "Caudex", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "greek", "greek-ext", "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/caudex/v15/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf", + "regular": "http://fonts.gstatic.com/s/caudex/v15/esDQ311QOP6BJUrIyviAnb4eEw.ttf", + "italic": "http://fonts.gstatic.com/s/caudex/v15/esDS311QOP6BJUr4yPKEv7sOE4in.ttf", + "700italic": "http://fonts.gstatic.com/s/caudex/v15/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/caudex/v15/esDQ311QOP6BJUr4y_KE.ttf" + }, + { + "family": "Caveat", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjcB9SIKjYBxPigs.ttf", + "600": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjSx6SIKjYBxPigs.ttf", + "700": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIKjYBxPigs.ttf", + "regular": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9SIKjYBxPigs.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9eIOpZA.ttf" + }, + { + "family": "Caveat Brush", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXt8WrOX.ttf" + }, + { + "family": "Cedarville Cursive", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_nuJLp1.ttf" + }, + { + "family": "Ceviche One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX5zcbY8.ttf" + }, + { + "family": "Chakra Petch", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v9", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf", + "500": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf", + "600": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf", + "700": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf", + "300italic": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf", + "regular": "http://fonts.gstatic.com/s/chakrapetch/v9/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf", + "italic": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf", + "500italic": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf", + "600italic": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf", + "700italic": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/chakrapetch/v9/cIf6MapbsEk7TDLdtEz1BwkWmapl.ttf" + }, + { + "family": "Changa", + "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "200": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjDp9htf1ZM.ttf", + "300": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjDp9htf1ZM.ttf", + "500": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjDp9htf1ZM.ttf", + "600": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjDp9htf1ZM.ttf", + "700": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjDp9htf1ZM.ttf", + "800": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjDp9htf1ZM.ttf", + "regular": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjDp9htf1ZM.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xcjHj8g.ttf" + }, + { + "family": "Changa One", + "variants": [ "regular", "italic" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/changaone/v18/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf", + "italic": "http://fonts.gstatic.com/s/changaone/v18/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/changaone/v18/xfu00W3wXn3QLUJXhzq42AfivA.ttf" + }, + { + "family": "Chango", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/chango/v22/2V0cKI0OB5U7WaJyz324TFUaAw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/chango/v22/2V0cKI0OB5U7WaJCzne8.ttf" + }, + { + "family": "Charis SIL", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v2", + "lastModified": "2023-04-27", + "files": { + "700": "http://fonts.gstatic.com/s/charissil/v2/oPWJ_kV3l-s-Q8govXvKlEbJRj5dQnSX1ko.ttf", + "regular": "http://fonts.gstatic.com/s/charissil/v2/oPWK_kV3l-s-Q8govXvKrPrmYjZ2Xn0.ttf", + "italic": "http://fonts.gstatic.com/s/charissil/v2/oPWI_kV3l-s-Q8govXvKnPjsZhRzTn2Ozw.ttf", + "700italic": "http://fonts.gstatic.com/s/charissil/v2/oPWX_kV3l-s-Q8govXvKnPjU2jtXRlaSxkrMCQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/charissil/v2/oPWK_kV3l-s-Q8govXvKnPvsZg.ttf" + }, + { + "family": "Charm", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v11", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/charm/v11/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf", + "regular": "http://fonts.gstatic.com/s/charm/v11/7cHmv4oii5K0MeYvIe804WIo.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/charm/v11/7cHmv4oii5K0MdYuK-s.ttf" + }, + { + "family": "Charmonman", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/charmonman/v18/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf", + "regular": "http://fonts.gstatic.com/s/charmonman/v18/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/charmonman/v18/MjQDmiR3vP_nuxDv47jiaJCiuA.ttf" + }, + { + "family": "Chathura", + "variants": [ "100", "300", "regular", "700", "800" ], + "subsets": [ "latin", "telugu" ], + "version": "v20", + "lastModified": "2022-04-21", + "files": { + "100": "http://fonts.gstatic.com/s/chathura/v20/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf", + "300": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf", + "700": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf", + "800": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf", + "regular": "http://fonts.gstatic.com/s/chathura/v20/_gP71R7-rzUuVjim418goUC5S-Zy.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/chathura/v20/_gP71R7-rzUuVjim428hq0Q.ttf" + }, + { + "family": "Chau Philomene One", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf", + "italic": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFcnYZ_.ttf" + }, + { + "family": "Chela One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIC3lHS.ttf" + }, + { + "family": "Chelsea Market", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKChkJgo.ttf" + }, + { + "family": "Chenla", + "variants": [ "regular" ], + "subsets": [ "khmer" ], + "version": "v25", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9uXh3s.ttf" + }, + { + "family": "Cherish", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v8", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/cherish/v8/ll88K2mXUyqsDsTN5iDCI6IJjg8.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cherish/v8/ll88K2mXUyqsDsTN1iHIJw.ttf" + }, + { + "family": "Cherry Cream Soda", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciQd7A9o.ttf" + }, + { + "family": "Cherry Swash", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2022-04-21", + "files": { + "700": "http://fonts.gstatic.com/s/cherryswash/v18/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf", + "regular": "http://fonts.gstatic.com/s/cherryswash/v18/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cherryswash/v18/i7dNIFByZjaNAMxtZcnfAy5MQXK6.ttf" + }, + { + "family": "Chewy", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wk5xIDMfO-ed.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wn5wKjc.ttf" + }, + { + "family": "Chicle", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/chicle/v21/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/chicle/v21/lJwG-pw9i2dqU-BzyGiq.ttf" + }, + { + "family": "Chilanka", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "malayalam" ], + "version": "v20", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/chilanka/v20/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/chilanka/v20/WWXRlj2DZQiMJYaYRoJRKdU.ttf" + }, + { + "family": "Chivo", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v18", + "lastModified": "2022-11-18", + "files": { + "100": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB7ul2DSFXjQiQ.ttf", + "200": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PB_ul2DSFXjQiQ.ttf", + "300": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_4h_ul2DSFXjQiQ.ttf", + "500": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_jh_ul2DSFXjQiQ.ttf", + "600": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Yhjul2DSFXjQiQ.ttf", + "700": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Wxjul2DSFXjQiQ.ttf", + "800": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PBjul2DSFXjQiQ.ttf", + "900": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_FRjul2DSFXjQiQ.ttf", + "regular": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ul2DSFXjQiQ.ttf", + "100italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1WrWN33AiasJ.ttf", + "200italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG1GrWN33AiasJ.ttf", + "300italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFxY1GrWN33AiasJ.ttf", + "italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1GrWN33AiasJ.ttf", + "500italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFw01GrWN33AiasJ.ttf", + "600italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzY02rWN33AiasJ.ttf", + "700italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzh02rWN33AiasJ.ttf", + "800italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG02rWN33AiasJ.ttf", + "900italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyv02rWN33AiasJ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_elmrW.ttf" + }, + { + "family": "Chivo Mono", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v6", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hrqfVKphL03l4.ttf", + "200": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hr6fVKphL03l4.ttf", + "300": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D6_r6fVKphL03l4.ttf", + "500": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7Tr6fVKphL03l4.ttf", + "600": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4_qKfVKphL03l4.ttf", + "700": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4GqKfVKphL03l4.ttf", + "800": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hqKfVKphL03l4.ttf", + "900": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5IqKfVKphL03l4.ttf", + "regular": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr6fVKphL03l4.ttf", + "100italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-XIJxp1ml4imo.ttf", + "200italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-WIJxp1ml4imo.ttf", + "300italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7BGWIJxp1ml4imo.ttf", + "italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-WIJxp1ml4imo.ttf", + "500italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7H2WIJxp1ml4imo.ttf", + "600italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7JGRIJxp1ml4imo.ttf", + "700italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7KiRIJxp1ml4imo.ttf", + "800italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-RIJxp1ml4imo.ttf", + "900italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7OaRIJxp1ml4imo.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr5fUIJw.ttf" + }, + { + "family": "Chonburi", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/chonburi/v10/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/chonburi/v10/8AtqGs-wOpGRTBq66LWbHLk.ttf" + }, + { + "family": "Cinzel", + "variants": [ "regular", "500", "600", "700", "800", "900" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2023-03-21", + "files": { + "500": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-uTnTYrvDE5ZdqU.ttf", + "600": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-gjgTYrvDE5ZdqU.ttf", + "700": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-jHgTYrvDE5ZdqU.ttf", + "800": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-lbgTYrvDE5ZdqU.ttf", + "900": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-n_gTYrvDE5ZdqU.ttf", + "regular": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnTYrvDE5ZdqU.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnfYvlCA.ttf" + }, + { + "family": "Cinzel Decorative", + "variants": [ "regular", "700", "900" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf", + "900": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf", + "regular": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaCSScvJGqLYhG8nNt8KPPswUAPni7VTMk.ttf" + }, + { + "family": "Clicker Script", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq71rZ0T4.ttf" + }, + { + "family": "Climate Crisis", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v4", + "lastModified": "2023-03-21", + "files": { + "regular": "http://fonts.gstatic.com/s/climatecrisis/v4/wEOpEB3AntNeKCPBVW9XOKlmp3AUgWFN1DvIvcM0gFp6jaUrGb7PsQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/climatecrisis/v4/wEOpEB3AntNeKCPBVW9XOKlmp3AUgWFN1DvIvcM0gFpKjK8v.ttf" + }, + { + "family": "Coda", + "variants": [ "regular", "800" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "800": "http://fonts.gstatic.com/s/coda/v21/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf", + "regular": "http://fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8JUIMapaN39I.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8FUMGbg.ttf" + }, + { + "family": "Coda Caption", + "variants": [ "800" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "800": "http://fonts.gstatic.com/s/codacaption/v19/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/codacaption/v19/ieVm2YRII2GMY7SyXSoDRiQGqcxKxvWb.ttf" + }, + { + "family": "Codystar", + "variants": [ "300", "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/codystar/v15/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf", + "regular": "http://fonts.gstatic.com/s/codystar/v15/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/codystar/v15/FwZY7-Q1xVk-40qxOu6B6Mw.ttf" + }, + { + "family": "Coiny", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "tamil", "vietnamese" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PXwbElSvO5Tc.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PUwaGFA.ttf" + }, + { + "family": "Combo", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhj0jDOs.ttf" + }, + { + "family": "Comfortaa", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v40", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", + "500": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", + "600": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", + "700": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", + "regular": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMDrUfJQ.ttf" + }, + { + "family": "Comforter", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/comforter/v5/H4clBXOCl8nQnlaql3Qa6JG8iqeuag.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/comforter/v5/H4clBXOCl8nQnlaql3Qq6Zu4.ttf" + }, + { + "family": "Comforter Brush", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/comforterbrush/v5/Y4GTYa1xVSggrfzZI5WMjxRaOz0jwLL9Th8YYA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/comforterbrush/v5/Y4GTYa1xVSggrfzZI5WMjxRaOz0Twbj5.ttf" + }, + { + "family": "Comic Neue", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "subsets": [ "latin" ], + "version": "v8", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_wHLwpteLwtHJlc.ttf", + "700": "http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_xHMwpteLwtHJlc.ttf", + "300italic": "http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RTplUKylCNlcw_Q.ttf", + "regular": "http://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf", + "italic": "http://fonts.gstatic.com/s/comicneue/v8/4UaFrEJDsxBrF37olUeD96_p4rFwIwJePw.ttf", + "700italic": "http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RXp5UKylCNlcw_Q.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeD96zp4g.ttf" + }, + { + "family": "Coming Soon", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1t-TWDw.ttf" + }, + { + "family": "Comme", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v2", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cBr644fWsRO9w.ttf", + "200": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcFr644fWsRO9w.ttf", + "300": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zu8Fr644fWsRO9w.ttf", + "500": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z18Fr644fWsRO9w.ttf", + "600": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zO8Zr644fWsRO9w.ttf", + "700": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zAsZr644fWsRO9w.ttf", + "800": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcZr644fWsRO9w.ttf", + "900": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zTMZr644fWsRO9w.ttf", + "regular": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cFr644fWsRO9w.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cFb6oQb.ttf" + }, + { + "family": "Commissioner", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v20", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNcGPe7Fu0jUdk.ttf", + "200": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENdGPe7Fu0jUdk.ttf", + "300": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTJ1dGPe7Fu0jUdk.ttf", + "500": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTPFdGPe7Fu0jUdk.ttf", + "600": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTB1aGPe7Fu0jUdk.ttf", + "700": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTCRaGPe7Fu0jUdk.ttf", + "800": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENaGPe7Fu0jUdk.ttf", + "900": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTGpaGPe7Fu0jUdk.ttf", + "regular": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNdGPe7Fu0jUdk.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNdKPaxEg.ttf" + }, + { + "family": "Concert One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/concertone/v17/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/concertone/v17/VEM1Ro9xs5PjtzCu-srDqSTkjPs.ttf" + }, + { + "family": "Condiment", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/condiment/v20/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/condiment/v20/pONk1hggFNmwvXALyH6iqoP8.ttf" + }, + { + "family": "Content", + "variants": [ "regular", "700" ], + "subsets": [ "khmer" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/content/v24/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf", + "regular": "http://fonts.gstatic.com/s/content/v24/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/content/v24/zrfl0HLayePhU_AwYaH4Jg.ttf" + }, + { + "family": "Contrail One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/contrailone/v15/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/contrailone/v15/eLGbP-j_JA-kG0_Zo51noaftZEHp.ttf" + }, + { + "family": "Convergence", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-04-21", + "files": { + "regular": "http://fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYShbu0o.ttf" + }, + { + "family": "Cookie", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/cookie/v17/syky-y18lb0tSbfNlQCT9tPdpw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cookie/v17/syky-y18lb0tSbf9lAqX.ttf" + }, + { + "family": "Copse", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-04-21", + "files": { + "regular": "http://fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb0djHkihUb-A.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb3diFEw.ttf" + }, + { + "family": "Corben", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/corben/v19/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf", + "regular": "http://fonts.gstatic.com/s/corben/v19/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/corben/v19/LYjDdGzzklQtCMpNoQNA.ttf" + }, + { + "family": "Corinthia", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v9", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/corinthia/v9/wEO6EBrAnchaJyPMHE097d8v1GAbgbLXQA.ttf", + "regular": "http://fonts.gstatic.com/s/corinthia/v9/wEO_EBrAnchaJyPMHE0FUfAL3EsHiA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/corinthia/v9/wEO_EBrAnchaJyPMHE01UPoP.ttf" + }, + { + "family": "Cormorant", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v21", + "lastModified": "2023-03-21", + "files": { + "300": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFk9TQ7Rg7A2uwYs.ttf", + "500": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFiNTQ7Rg7A2uwYs.ttf", + "600": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFs9UQ7Rg7A2uwYs.ttf", + "700": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFvZUQ7Rg7A2uwYs.ttf", + "regular": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTQ7Rg7A2uwYs.ttf", + "300italic": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQ9fdq6C-r0YvxdA.ttf", + "italic": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQq_dq6C-r0YvxdA.ttf", + "500italic": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQmfdq6C-r0YvxdA.ttf", + "600italic": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQdfBq6C-r0YvxdA.ttf", + "700italic": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQTPBq6C-r0YvxdA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTc7Vq6A.ttf" + }, + { + "family": "Cormorant Garamond", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf", + "500": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf", + "600": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf", + "700": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf", + "300italic": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf", + "regular": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf", + "italic": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf", + "500italic": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf", + "600italic": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf", + "700italic": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjYr3tP.ttf" + }, + { + "family": "Cormorant Infant", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf", + "500": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf", + "600": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf", + "700": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf", + "300italic": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf", + "regular": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf", + "italic": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf", + "500italic": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf", + "600italic": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf", + "700italic": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyPU44g9vKiM1sORYSiWeAsLN997_EV3A.ttf" + }, + { + "family": "Cormorant SC", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf", + "500": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf", + "600": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf", + "700": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf", + "regular": "http://fonts.gstatic.com/s/cormorantsc/v18/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cormorantsc/v18/0yb5GD4kxqXBmOVLG30OGwsurTA0.ttf" + }, + { + "family": "Cormorant Unicase", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf", + "500": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf", + "600": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf", + "700": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf", + "regular": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX9vSlMc.ttf" + }, + { + "family": "Cormorant Upright", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf", + "500": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf", + "600": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf", + "700": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf", + "regular": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y1vUhDA.ttf" + }, + { + "family": "Courgette", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/courgette/v13/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/courgette/v13/wEO_EBrAnc9BLjLQAUk1UPoP.ttf" + }, + { + "family": "Courier Prime", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/courierprime/v7/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-fVqvHoJXw.ttf", + "regular": "http://fonts.gstatic.com/s/courierprime/v7/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf", + "italic": "http://fonts.gstatic.com/s/courierprime/v7/u-4n0q2lgwslOqpF_6gQ8kELawRpX837pvjxPA.ttf", + "700italic": "http://fonts.gstatic.com/s/courierprime/v7/u-4i0q2lgwslOqpF_6gQ8kELawRR4-LfrtPtNXyeAg.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/courierprime/v7/u-450q2lgwslOqpF_6gQ8kELawdpXw.ttf" + }, + { + "family": "Cousine", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v25", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/cousine/v25/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf", + "regular": "http://fonts.gstatic.com/s/cousine/v25/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf", + "italic": "http://fonts.gstatic.com/s/cousine/v25/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf", + "700italic": "http://fonts.gstatic.com/s/cousine/v25/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cousine/v25/d6lIkaiiRdih4SpP_SIvyQ.ttf" + }, + { + "family": "Coustard", + "variants": [ "regular", "900" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "900": "http://fonts.gstatic.com/s/coustard/v16/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf", + "regular": "http://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU-UOt2E.ttf" + }, + { + "family": "Covered By Your Grace", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/coveredbyyourgrace/v15/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/coveredbyyourgrace/v15/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOSEFwgp.ttf" + }, + { + "family": "Crafty Girls", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NveQBf_.ttf" + }, + { + "family": "Creepster", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4RdH38.ttf" + }, + { + "family": "Crete Round", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/creteround/v14/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf", + "italic": "http://fonts.gstatic.com/s/creteround/v14/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/creteround/v14/55xoey1sJNPjPiv1ZZZrxK190bg.ttf" + }, + { + "family": "Crimson Pro", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v23", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf", + "300": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf", + "500": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf", + "600": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf", + "700": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf", + "800": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf", + "900": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf", + "regular": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf", + "200italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf", + "300italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf", + "italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf", + "500italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf", + "600italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf", + "700italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf", + "800italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf", + "900italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm1MOZs7.ttf" + }, + { + "family": "Crimson Text", + "variants": [ + "regular", + "italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "600": "http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf", + "700": "http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf", + "regular": "http://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf", + "italic": "http://fonts.gstatic.com/s/crimsontext/v19/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf", + "600italic": "http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf", + "700italic": "http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJfaQhW.ttf" + }, + { + "family": "Croissant One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/croissantone/v21/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/croissantone/v21/3y9n6bU9bTPg4m8NDy3Kq24UA3tgmw.ttf" + }, + { + "family": "Crushed", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v25", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/crushed/v25/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/crushed/v25/U9Mc6dym6WXImTlFf1gVvA.ttf" + }, + { + "family": "Cuprum", + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v25", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg9f6ZjzSJjQjgnU.ttf", + "600": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgzv9ZjzSJjQjgnU.ttf", + "700": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgwL9ZjzSJjQjgnU.ttf", + "regular": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6ZjzSJjQjgnU.ttf", + "italic": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25jn_YIhYmknUPEA.ttf", + "500italic": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25vH_YIhYmknUPEA.ttf", + "600italic": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25UHjYIhYmknUPEA.ttf", + "700italic": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25aXjYIhYmknUPEA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6Vj3YIg.ttf" + }, + { + "family": "Cute Font", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/cutefont/v20/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cutefont/v20/Noaw6Uny2oWPbSHMrY6fmZlR.ttf" + }, + { + "family": "Cutive", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/cutive/v17/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cutive/v17/NaPZcZ_fHOhV3IpLTvJH.ttf" + }, + { + "family": "Cutive Mono", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/cutivemono/v15/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/cutivemono/v15/m8JWjfRfY7WVjVi2E-K9H6RETms.ttf" + }, + { + "family": "DM Mono", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "500", + "500italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/dmmono/v11/aFTR7PB1QTsUX8KYvrGyIYSnbKX9Rlk.ttf", + "500": "http://fonts.gstatic.com/s/dmmono/v11/aFTR7PB1QTsUX8KYvumzIYSnbKX9Rlk.ttf", + "300italic": "http://fonts.gstatic.com/s/dmmono/v11/aFTT7PB1QTsUX8KYth-orYataIf4VllXuA.ttf", + "regular": "http://fonts.gstatic.com/s/dmmono/v11/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf", + "italic": "http://fonts.gstatic.com/s/dmmono/v11/aFTW7PB1QTsUX8KYth-QAa6JYKzkXw.ttf", + "500italic": "http://fonts.gstatic.com/s/dmmono/v11/aFTT7PB1QTsUX8KYth-o9YetaIf4VllXuA.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dmmono/v11/aFTU7PB1QTsUX8KYthyQAQ.ttf" + }, + { + "family": "DM Sans", + "variants": [ + "regular", + "italic", + "500", + "500italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf", + "700": "http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriASitOB-sClQX6Cg.ttf", + "regular": "http://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf", + "italic": "http://fonts.gstatic.com/s/dmsans/v11/rP2Fp2ywxg089UriCZaIGDWCBl0O8Q.ttf", + "500italic": "http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZaw7BymDnYS-Cjk6Q.ttf", + "700italic": "http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZawpBqmDnYS-Cjk6Q.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriCZWIGA.ttf" + }, + { + "family": "DM Serif Display", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v12", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf", + "italic": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFnOHM81r4j6k0gjAW3mujVU2B2G_Zx1w.ttf" + }, + { + "family": "DM Serif Text", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v12", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf", + "italic": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCu-xZa_krGokauCeNq1wWyWfKFWA.ttf" + }, + { + "family": "Damion", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/damion/v14/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/damion/v14/hv-XlzJ3KEUe_YZkbGwz.ttf" + }, + { + "family": "Dancing Script", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTeB9ptDqpw.ttf", + "600": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTeB9ptDqpw.ttf", + "700": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTeB9ptDqpw.ttf", + "regular": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTeB9ptDqpw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3TOp5.ttf" + }, + { + "family": "Dangrek", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin" ], + "version": "v26", + "lastModified": "2022-04-21", + "files": { + "regular": "http://fonts.gstatic.com/s/dangrek/v26/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dangrek/v26/LYjCdG30nEgoH8E2sCJgrQ.ttf" + }, + { + "family": "Darker Grotesque", + "variants": [ "300", "regular", "500", "600", "700", "800", "900" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVoxr2AW8hTOsXsX0.ttf", + "500": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVo0L3AW8hTOsXsX0.ttf", + "600": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVo27wAW8hTOsXsX0.ttf", + "700": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVowrxAW8hTOsXsX0.ttf", + "800": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVoxbyAW8hTOsXsX0.ttf", + "900": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVozLzAW8hTOsXsX0.ttf", + "regular": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MH6cuh-mLQlC4BKCtayOfARkSVm7beJWcKUOI.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MH6cuh-mLQlC4BKCtayOfARkSVq7fUIQ.ttf" + }, + { + "family": "Darumadrop One", + "variants": [ "regular" ], + "subsets": [ "japanese", "latin", "latin-ext" ], + "version": "v7", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/darumadropone/v7/cY9cfjeIW11dpCKgRLi675a87IhHBJOxZQPp.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/darumadropone/v7/cY9cfjeIW11dpCKgRLi675a87LhGDpc.ttf" + }, + { + "family": "David Libre", + "variants": [ "regular", "500", "700" ], + "subsets": [ "hebrew", "latin", "latin-ext", "vietnamese" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf", + "700": "http://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf", + "regular": "http://fonts.gstatic.com/s/davidlibre/v14/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/davidlibre/v14/snfus0W_99N64iuYSvp4W8l94Jo.ttf" + }, + { + "family": "Dawning of a New Day", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/dawningofanewday/v16/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dawningofanewday/v16/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAw8aj2Y.ttf" + }, + { + "family": "Days One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/daysone/v14/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/daysone/v14/mem9YaCnxnKRiYZOCIYUcr0.ttf" + }, + { + "family": "Dekko", + "variants": [ "regular" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/dekko/v19/46khlb_wWjfSrttFR0vsfl1B.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dekko/v19/46khlb_wWjfSrutETU8.ttf" + }, + { + "family": "Dela Gothic One", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "greek", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v10", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/delagothicone/v10/~ChEKD0RlbGEgR290aGljIE9uZSAAKgQIARgB.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/delagothicone/v10/~ChEKD0RlbGEgR290aGljIE9uZRABIAA=.ttf" + }, + { + "family": "Delicious Handrawn", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v4", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/delicioushandrawn/v4/wlpsgx_NAUNkpmKQifcxkQchDFo3fJ113JpDd6u3AQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/delicioushandrawn/v4/wlpsgx_NAUNkpmKQifcxkQchDFo3fJ1F3ZBH.ttf" + }, + { + "family": "Delius", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/delius/v15/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/delius/v15/PN_xRfK0pW_9e1rdYMg6.ttf" + }, + { + "family": "Delius Swash Caps", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/deliusswashcaps/v19/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/deliusswashcaps/v19/oY1E8fPLr7v4JWCExZpWebxVKORpXUecIGM.ttf" + }, + { + "family": "Delius Unicase", + "variants": [ "regular", "700" ], + "subsets": [ "latin" ], + "version": "v26", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/deliusunicase/v26/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf", + "regular": "http://fonts.gstatic.com/s/deliusunicase/v26/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/deliusunicase/v26/845BNMEwEIOVT8BmgfSzIr_6mlLGfeo.ttf" + }, + { + "family": "Della Respira", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/dellarespira/v18/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dellarespira/v18/RLp5K5v44KaueWI6iEJQBiGPdfgYvw.ttf" + }, + { + "family": "Denk One", + "variants": [ "regular" ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], + "version": "v17", + "lastModified": "2023-04-04", + "files": { + "regular": "http://fonts.gstatic.com/s/denkone/v17/dg4m_pzhrqcFb2IzROtHpbglShon.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/denkone/v17/dg4m_pzhrqcFb2IzRNtGr7w.ttf" + }, + { + "family": "Devonshire", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/devonshire/v22/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/devonshire/v22/46kqlbDwWirWr4gtBD2Bb0Rg1w.ttf" + }, + { + "family": "Dhurjati", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v20", + "lastModified": "2022-04-21", + "files": { + "regular": "http://fonts.gstatic.com/s/dhurjati/v20/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dhurjati/v20/_6_8ED3gSeatXfFiFU3zQqA.ttf" + }, + { + "family": "Didact Gothic", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "version": "v20", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/didactgothic/v20/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/didactgothic/v20/ahcfv8qz1zt6hCC5G4F_P4ASlU2Yow.ttf" + }, + { + "family": "Diplomata", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v27", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/diplomata/v27/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/diplomata/v27/Cn-0JtiMXwhNwp-wKxyvYWZc.ttf" + }, + { + "family": "Diplomata SC", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/diplomatasc/v23/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/diplomatasc/v23/buExpoi3ecvs3kidKgBJo2kv-fRK.ttf" + }, + { + "family": "Do Hyeon", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v16", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/dohyeon/v16/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dohyeon/v16/TwMN-I8CRRU2zM86HGE2bQI.ttf" + }, + { + "family": "Dokdo", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v15", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/dokdo/v15/esDf315XNuCBLxLo4NaMlKcH.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dokdo/v15/esDf315XNuCBLyLp6tI.ttf" + }, + { + "family": "Domine", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X0DAI10VErGuW8Q.ttf", + "600": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X6zHI10VErGuW8Q.ttf", + "700": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X5XHI10VErGuW8Q.ttf", + "regular": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAE1wfFg.ttf" + }, + { + "family": "Donegal One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/donegalone/v21/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/donegalone/v21/m8JWjfRYea-ZnFz6fsK9FaRETms.ttf" + }, + { + "family": "Dongle", + "variants": [ "300", "regular", "700" ], + "subsets": [ "korean", "latin", "latin-ext", "vietnamese" ], + "version": "v9", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/dongle/v9/sJoG3Ltdjt6VPkqeEcxrYjWNzXvVPA.ttf", + "700": "http://fonts.gstatic.com/s/dongle/v9/sJoG3Ltdjt6VPkqeActrYjWNzXvVPA.ttf", + "regular": "http://fonts.gstatic.com/s/dongle/v9/sJoF3Ltdjt6VPkqmveRPah6RxA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dongle/v9/sJoF3Ltdjt6VPkqWvO5L.ttf" + }, + { + "family": "Doppio One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-pgorLA.ttf" + }, + { + "family": "Dorsa", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v23", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/dorsa/v23/yYLn0hjd0OGwqo493XCFxAnQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dorsa/v23/yYLn0hjd0OGwqr4813Q.ttf" + }, + { + "family": "Dosis", + "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v27", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf", + "300": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf", + "500": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf", + "600": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf", + "700": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf", + "800": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf", + "regular": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7Ml3RMB.ttf" + }, + { + "family": "DotGothic16", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/dotgothic16/v15/v6-QGYjBJFKgyw5nSoDAGE7L435YPFrT.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dotgothic16/v15/v6-QGYjBJFKgyw5nSoDAGH7K6Xo.ttf" + }, + { + "family": "Dr Sugiyama", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/drsugiyama/v23/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/drsugiyama/v23/HTxoL2k4N3O9n5I1boGI7ZbQOYs.ttf" + }, + { + "family": "Duru Sans", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/durusans/v20/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/durusans/v20/xn7iYH8xwmSyTvEV_HOBTv3c.ttf" + }, + { + "family": "DynaPuff", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext" ], + "version": "v4", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSyQu6YjrSRs4wn8.ttf", + "600": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS8gp6YjrSRs4wn8.ttf", + "700": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS_Ep6YjrSRs4wn8.ttf", + "regular": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSxYu6YjrSRs4wn8.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSxYu2YnhTQ.ttf" + }, + { + "family": "Dynalight", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/dynalight/v18/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/dynalight/v18/1Ptsg8LOU_aOmQvTsF44S4Fv.ttf" + }, + { + "family": "EB Garamond", + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v26", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUA4V-e6yHgQ.ttf", + "600": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUA4V-e6yHgQ.ttf", + "700": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUA4V-e6yHgQ.ttf", + "800": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUA4V-e6yHgQ.ttf", + "regular": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUA4V-e6yHgQ.ttf", + "italic": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI96WamXgXFI.ttf", + "500italic": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI96WamXgXFI.ttf", + "600italic": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR496WamXgXFI.ttf", + "700italic": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR496WamXgXFI.ttf", + "800italic": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R496WamXgXFI.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RkAo96.ttf" + }, + { + "family": "Eagle Lake", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/eaglelake/v20/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/eaglelake/v20/ptRMTiqbbuNJDOiKj9wG1O_4LQ.ttf" + }, + { + "family": "East Sea Dokdo", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v20", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/eastseadokdo/v20/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/eastseadokdo/v20/xfuo0Wn2V2_KanASqXSZp22m06_bE68.ttf" + }, + { + "family": "Eater", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/eater/v21/mtG04_FCK7bOvpu2u3FwsXsR.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/eater/v21/mtG04_FCK7bOvqu3sXU.ttf" + }, + { + "family": "Economica", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/economica/v13/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf", + "regular": "http://fonts.gstatic.com/s/economica/v13/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf", + "italic": "http://fonts.gstatic.com/s/economica/v13/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf", + "700italic": "http://fonts.gstatic.com/s/economica/v13/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/economica/v13/Qw3fZQZaHCLgIWa29ZBbMMIE.ttf" + }, + { + "family": "Eczar", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ + "devanagari", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXL96WqTIVKWJKWg.ttf", + "600": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXw9mWqTIVKWJKWg.ttf", + "700": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDX-tmWqTIVKWJKWg.ttf", + "800": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXndmWqTIVKWJKWg.ttf", + "regular": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXHd6WqTIVKWJKWg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXHd6mqDgR.ttf" + }, + { + "family": "Edu NSW ACT Foundation", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin" ], + "version": "v2", + "lastModified": "2023-01-06", + "files": { + "500": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9fovGLeC-sfguJ.ttf", + "600": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-zpfGLeC-sfguJ.ttf", + "700": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-KpfGLeC-sfguJ.ttf", + "regular": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9tovGLeC-sfguJ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9tosGKcis.ttf" + }, + { + "family": "Edu QLD Beginner", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin" ], + "version": "v3", + "lastModified": "2023-03-09", + "files": { + "500": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE423oebi6vyVWCN.ttf", + "600": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7a2Yebi6vyVWCN.ttf", + "700": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7j2Yebi6vyVWCN.ttf", + "regular": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE4E3oebi6vyVWCN.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE4E3reaga8.ttf" + }, + { + "family": "Edu SA Beginner", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin" ], + "version": "v3", + "lastModified": "2023-03-09", + "files": { + "500": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9-09fo1yBydUEDs.ttf", + "600": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9wE6fo1yBydUEDs.ttf", + "700": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9zg6fo1yBydUEDs.ttf", + "regular": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9989fo1yBydUEDs.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9989Tox4Aw.ttf" + }, + { + "family": "Edu TAS Beginner", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin" ], + "version": "v3", + "lastModified": "2023-03-09", + "files": { + "500": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HCemkrBWRhvk02.ttf", + "600": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EufWkrBWRhvk02.ttf", + "700": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EXfWkrBWRhvk02.ttf", + "regular": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HwemkrBWRhvk02.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HwelkqD2A.ttf" + }, + { + "family": "Edu VIC WA NT Beginner", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin" ], + "version": "v4", + "lastModified": "2023-03-09", + "files": { + "500": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OllPmFXwnpkeGR.ttf", + "600": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-NJk_mFXwnpkeGR.ttf", + "700": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-Nwk_mFXwnpkeGR.ttf", + "regular": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OXlPmFXwnpkeGR.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OXlMmEVQ0.ttf" + }, + { + "family": "El Messiri", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "arabic", "cyrillic", "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-03-21", + "files": { + "500": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXCe65ghj3OoapG.ttf", + "600": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUufK5ghj3OoapG.ttf", + "700": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUXfK5ghj3OoapG.ttf", + "regular": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe65ghj3OoapG.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe55hjDk.ttf" + }, + { + "family": "Electrolize", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-04-21", + "files": { + "regular": "http://fonts.gstatic.com/s/electrolize/v14/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/electrolize/v14/cIf5Ma1dtE0zSiGSiED7AXEHuIo.ttf" + }, + { + "family": "Elsie", + "variants": [ "regular", "900" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2023-05-02", + "files": { + "900": "http://fonts.gstatic.com/s/elsie/v13/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf", + "regular": "http://fonts.gstatic.com/s/elsie/v13/BCanqZABrez54yYu9slAeLgX.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/elsie/v13/BCanqZABrez54xYv_M0.ttf" + }, + { + "family": "Elsie Swash Caps", + "variants": [ "regular", "900" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "900": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf", + "regular": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845DNN8xGZyVX5MVo_upKf7KnjK0TevfLA.ttf" + }, + { + "family": "Emblema One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOELRAFFo.ttf" + }, + { + "family": "Emilys Candy", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/emilyscandy/v14/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/emilyscandy/v14/2EbgL-1mD1Rnb0OGKudbk0yJrtZv.ttf" + }, + { + "family": "Encode Sans", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v19", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHiZtWP7FJCt2c.ttf", + "200": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHjZtWP7FJCt2c.ttf", + "300": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGD_jZtWP7FJCt2c.ttf", + "500": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGFPjZtWP7FJCt2c.ttf", + "600": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGL_kZtWP7FJCt2c.ttf", + "700": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGIbkZtWP7FJCt2c.ttf", + "800": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHkZtWP7FJCt2c.ttf", + "900": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGMjkZtWP7FJCt2c.ttf", + "regular": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjZtWP7FJCt2c.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjVtSF6A.ttf" + }, + { + "family": "Encode Sans Condensed", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf", + "200": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf", + "300": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf", + "500": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf", + "600": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf", + "700": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf", + "800": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf", + "900": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf", + "regular": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfT2gK-J.ttf" + }, + { + "family": "Encode Sans Expanded", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v11", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf", + "200": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf", + "300": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf", + "500": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf", + "600": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf", + "700": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf", + "800": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf", + "900": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf", + "regular": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpojKQM.ttf" + }, + { + "family": "Encode Sans SC", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v8", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhn8c9NOEEClIc.ttf", + "200": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhm8c9NOEEClIc.ttf", + "300": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HCZm8c9NOEEClIc.ttf", + "500": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HEpm8c9NOEEClIc.ttf", + "600": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HKZh8c9NOEEClIc.ttf", + "700": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HJ9h8c9NOEEClIc.ttf", + "800": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhh8c9NOEEClIc.ttf", + "900": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HNFh8c9NOEEClIc.ttf", + "regular": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhm8c9NOEEClIc.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhmwc5HPA.ttf" + }, + { + "family": "Encode Sans Semi Condensed", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf", + "200": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf", + "300": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf", + "500": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf", + "600": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf", + "700": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf", + "800": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf", + "900": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf", + "regular": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1yQ9ME.ttf" + }, + { + "family": "Encode Sans Semi Expanded", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v19", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf", + "200": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf", + "300": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf", + "500": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf", + "600": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf", + "700": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf", + "800": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf", + "900": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf", + "regular": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TO4s1Kw.ttf" + }, + { + "family": "Engagement", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/engagement/v22/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/engagement/v22/x3dlckLDZbqa7RUs9MFVbNsmtw.ttf" + }, + { + "family": "Englebert", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/englebert/v17/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/englebert/v17/xn7iYH8w2XGrC8AR4HSBTv3c.ttf" + }, + { + "family": "Enriqueta", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf", + "600": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf", + "700": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf", + "regular": "http://fonts.gstatic.com/s/enriqueta/v15/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/enriqueta/v15/goksH6L7AUFrRvV44HVjSkqn.ttf" + }, + { + "family": "Ephesis", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ephesis/v7/uU9PCBUS8IerL2VG7xPb3vyHmlI.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ephesis/v7/uU9PCBUS8IerL2VG3xLR2g.ttf" + }, + { + "family": "Epilogue", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v17", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDLiDJXVigHPVA.ttf", + "200": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDPiDJXVigHPVA.ttf", + "300": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXbjPiDJXVigHPVA.ttf", + "500": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXAjPiDJXVigHPVA.ttf", + "600": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX7jTiDJXVigHPVA.ttf", + "700": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiDJXVigHPVA.ttf", + "800": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiDJXVigHPVA.ttf", + "900": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXmTTiDJXVigHPVA.ttf", + "regular": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiDJXVigHPVA.ttf", + "100italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKTp_RqATfVHNU.ttf", + "200italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKT5_RqATfVHNU.ttf", + "300italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HBUT5_RqATfVHNU.ttf", + "italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKT5_RqATfVHNU.ttf", + "500italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HA4T5_RqATfVHNU.ttf", + "600italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDUSJ_RqATfVHNU.ttf", + "700italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDtSJ_RqATfVHNU.ttf", + "800italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKSJ_RqATfVHNU.ttf", + "900italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCjSJ_RqATfVHNU.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPSDZ_R.ttf" + }, + { + "family": "Erica One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ericaone/v23/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ericaone/v23/WBLnrEXccV9VGrOKmGDFWkXI.ttf" + }, + { + "family": "Esteban", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/esteban/v15/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/esteban/v15/r05bGLZE-bdGdN-GROqJ4g.ttf" + }, + { + "family": "Estonia", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v9", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/estonia/v9/7Au_p_4ijSecA1yHCCL8zkwMIFg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/estonia/v9/7Au_p_4ijSecA1yHOCP2yg.ttf" + }, + { + "family": "Euphoria Script", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/euphoriascript/v16/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/euphoriascript/v16/mFTpWb0X2bLb_cx6To2B8GpKoD5qkvxX.ttf" + }, + { + "family": "Ewert", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ewert/v21/va9I4kzO2tFODYBvS-J3kbDP.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ewert/v21/va9I4kzO2tFODbBuQeY.ttf" + }, + { + "family": "Exo", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwNsOl4p5Is.ttf", + "200": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwNsOl4p5Is.ttf", + "300": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwNsOl4p5Is.ttf", + "500": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwNsOl4p5Is.ttf", + "600": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwNsOl4p5Is.ttf", + "700": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwNsOl4p5Is.ttf", + "800": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwNsOl4p5Is.ttf", + "900": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwNsOl4p5Is.ttf", + "regular": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwNsOl4p5Is.ttf", + "100italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040FmPnws9Iu-uA.ttf", + "200italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmPnws9Iu-uA.ttf", + "300italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmPnws9Iu-uA.ttf", + "italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040BmPnws9Iu-uA.ttf", + "500italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t00UBmPnws9Iu-uA.ttf", + "600italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmPnws9Iu-uA.ttf", + "700italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmPnws9Iu-uA.ttf", + "800italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmPnws9Iu-uA.ttf", + "900italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmPnws9Iu-uA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3OwJmPg.ttf" + }, + { + "family": "Exo 2", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPtq-rpvLpQ.ttf", + "200": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPtq-rpvLpQ.ttf", + "300": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPtq-rpvLpQ.ttf", + "500": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPtq-rpvLpQ.ttf", + "600": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPtq-rpvLpQ.ttf", + "700": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPtq-rpvLpQ.ttf", + "800": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPtq-rpvLpQ.ttf", + "900": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPtq-rpvLpQ.ttf", + "regular": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPtq-rpvLpQ.ttf", + "100italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6jJ7bpQBL.ttf", + "200italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6jJ7bpQBL.ttf", + "300italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6jJ7bpQBL.ttf", + "italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6jJ7bpQBL.ttf", + "500italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6jJ7bpQBL.ttf", + "600italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6jJ7bpQBL.ttf", + "700italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6jJ7bpQBL.ttf", + "800italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6jJ7bpQBL.ttf", + "900italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6jJ7bpQBL.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKsP9C6.ttf" + }, + { + "family": "Expletus Sans", + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2023-01-06", + "files": { + "500": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSq2s1oFQTcXfMm.ttf", + "600": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaRG3c1oFQTcXfMm.ttf", + "700": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaR_3c1oFQTcXfMm.ttf", + "regular": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2s1oFQTcXfMm.ttf", + "italic": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmSUrHwD-WOMmKKY.ttf", + "500italic": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmRcrHwD-WOMmKKY.ttf", + "600italic": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmfssHwD-WOMmKKY.ttf", + "700italic": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmcIsHwD-WOMmKKY.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2v1pHwA.ttf" + }, + { + "family": "Explora", + "variants": [ "regular" ], + "subsets": [ "cherokee", "latin", "latin-ext", "vietnamese" ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/explora/v7/tsstApxFfjUH4wrvc1qPonC3vqc.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/explora/v7/tsstApxFfjUH4wrvQ1uFpg.ttf" + }, + { + "family": "Fahkwang", + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf", + "300": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf", + "500": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf", + "600": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf", + "700": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf", + "200italic": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf", + "300italic": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf", + "regular": "http://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf", + "italic": "http://fonts.gstatic.com/s/fahkwang/v16/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf", + "500italic": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf", + "600italic": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf", + "700italic": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpOqOuLk.ttf" + }, + { + "family": "Familjen Grotesk", + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v8", + "lastModified": "2023-03-21", + "files": { + "500": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMG7aSztc1jcEYq2.ttf", + "600": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFXbiztc1jcEYq2.ttf", + "700": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFubiztc1jcEYq2.ttf", + "regular": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMGJaSztc1jcEYq2.ttf", + "italic": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKsSueVz-FJq2Rv4.ttf", + "500italic": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKvaueVz-FJq2Rv4.ttf", + "600italic": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKhqpeVz-FJq2Rv4.ttf", + "700italic": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKiOpeVz-FJq2Rv4.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMGJaRzseVw.ttf" + }, + { + "family": "Fanwood Text", + "variants": [ "regular", "italic" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf", + "italic": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFtErwl05Ad_vSCF6Fq7xX2RNzc.ttf" + }, + { + "family": "Farro", + "variants": [ "300", "regular", "500", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf", + "500": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf", + "700": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf", + "regular": "http://fonts.gstatic.com/s/farro/v14/i7dEIFl3byGNHZVNHLq2cV5d.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/farro/v14/i7dEIFl3byGNHaVMFr4.ttf" + }, + { + "family": "Farsan", + "variants": [ "regular" ], + "subsets": [ "gujarati", "latin", "latin-ext", "vietnamese" ], + "version": "v19", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/farsan/v19/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/farsan/v19/VEMwRoJ0vY_zsyzK26Wt.ttf" + }, + { + "family": "Fascinate", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/fascinate/v21/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fascinate/v21/z7NWdRrufC8XJK0IIElS1bzU.ttf" + }, + { + "family": "Fascinate Inline", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/fascinateinline/v22/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fascinateinline/v22/jVyR7mzzB3zc-jp6QCAu60poNqIy5gzIeQ.ttf" + }, + { + "family": "Faster One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2023-03-21", + "files": { + "regular": "http://fonts.gstatic.com/s/fasterone/v19/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fasterone/v19/H4ciBXCHmdfClFb-vWhf-LqYgg.ttf" + }, + { + "family": "Fasthand", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin" ], + "version": "v26", + "lastModified": "2022-04-21", + "files": { + "regular": "http://fonts.gstatic.com/s/fasthand/v26/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fasthand/v26/0yb9GDohyKTYn_ZEERkvaEg.ttf" + }, + { + "family": "Fauna One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-03-21", + "files": { + "regular": "http://fonts.gstatic.com/s/faunaone/v15/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/faunaone/v15/wlpzgwTPBVpjpCuwkuEB2EZP.ttf" + }, + { + "family": "Faustina", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "800", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2023-03-21", + "files": { + "300": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHls3IEvGVWWe8tbEg.ttf", + "500": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvGVWWe8tbEg.ttf", + "600": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvGVWWe8tbEg.ttf", + "700": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvGVWWe8tbEg.ttf", + "800": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsAoYvGVWWe8tbEg.ttf", + "regular": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvGVWWe8tbEg.ttf", + "300italic": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsKZWl-SWc5LEnoF.ttf", + "italic": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-SWc5LEnoF.ttf", + "500italic": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-SWc5LEnoF.ttf", + "600italic": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-SWc5LEnoF.ttf", + "700italic": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-SWc5LEnoF.ttf", + "800italic": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsJHXV-SWc5LEnoF.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEfGF-S.ttf" + }, + { + "family": "Federant", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v25", + "lastModified": "2022-04-21", + "files": { + "regular": "http://fonts.gstatic.com/s/federant/v25/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/federant/v25/2sDdZGNfip_eirT0_X0iT0U.ttf" + }, + { + "family": "Federo", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-04-21", + "files": { + "regular": "http://fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbWjFma.ttf" + }, + { + "family": "Felipa", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/felipa/v20/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/felipa/v20/FwZa7-owz1Eu4F_ASd6A.ttf" + }, + { + "family": "Fenix", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5ostKzAFvs8o.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5rssITQ.ttf" + }, + { + "family": "Festive", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/festive/v7/cY9Ffj6KX1xcoDWhFtfgy9HTkak.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/festive/v7/cY9Ffj6KX1xcoDWhJtbqzw.ttf" + }, + { + "family": "Figtree", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v4", + "lastModified": "2023-03-21", + "files": { + "300": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5ewkEU4HTy.ttf", + "500": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5ewkEU4HTy.ttf", + "600": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15ewkEU4HTy.ttf", + "700": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15ewkEU4HTy.ttf", + "800": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_f_R15ewkEU4HTy.ttf", + "900": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15ewkEU4HTy.ttf", + "regular": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5ewkEU4HTy.ttf", + "300italic": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A-gdyEU25WTybO8.ttf", + "italic": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A7YdyEU25WTybO8.ttf", + "500italic": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A4QdyEU25WTybO8.ttf", + "600italic": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A2gayEU25WTybO8.ttf", + "700italic": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A1EayEU25WTybO8.ttf", + "800italic": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3AzYayEU25WTybO8.ttf", + "900italic": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3Ax8ayEU25WTybO8.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QG5fyEU.ttf" + }, + { + "family": "Finger Paint", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/fingerpaint/v15/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fingerpaint/v15/0QInMXVJ-o-oRn_7dron8YW-8pzW.ttf" + }, + { + "family": "Finlandica", + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v8", + "lastModified": "2023-03-09", + "files": { + "500": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19AJrEjx9i5ss3a3.ttf", + "600": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dlq0jx9i5ss3a3.ttf", + "700": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dcq0jx9i5ss3a3.ttf", + "regular": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19A7rEjx9i5ss3a3.ttf", + "italic": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz76Cy_CpOtma3uNQ.ttf", + "500italic": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz75Ky_CpOtma3uNQ.ttf", + "600italic": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz7361_CpOtma3uNQ.ttf", + "700italic": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz70e1_CpOtma3uNQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19A7rHjw_Co.ttf" + }, + { + "family": "Fira Code", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf", + "500": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf", + "600": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf", + "700": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf", + "regular": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sJVb7Mw.ttf" + }, + { + "family": "Fira Mono", + "variants": [ "regular", "500", "700" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf", + "700": "http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf", + "regular": "http://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtgIP7X.ttf" + }, + { + "family": "Fira Sans", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v17", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf", + "200": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf", + "300": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf", + "500": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf", + "600": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf", + "700": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf", + "800": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf", + "900": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf", + "100italic": "http://fonts.gstatic.com/s/firasans/v17/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf", + "200italic": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf", + "300italic": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf", + "regular": "http://fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf", + "italic": "http://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf", + "500italic": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf", + "600italic": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf", + "700italic": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf", + "800italic": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf", + "900italic": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5VvkYjO.ttf" + }, + { + "family": "Fira Sans Condensed", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf", + "200": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf", + "300": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf", + "500": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf", + "600": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf", + "700": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf", + "800": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf", + "900": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf", + "100italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf", + "200italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf", + "300italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf", + "regular": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf", + "italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf", + "500italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf", + "600italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf", + "700italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf", + "800italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf", + "900italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOhEADFm8hSaQTFG18FErVhsC9x-tarUfDtqA.ttf" + }, + { + "family": "Fira Sans Extra Condensed", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf", + "200": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf", + "300": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf", + "500": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf", + "600": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf", + "700": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf", + "800": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf", + "900": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf", + "100italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf", + "200italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf", + "300italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf", + "regular": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf", + "italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf", + "500italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf", + "600italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf", + "700italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf", + "800italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf", + "900italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fmuvw.ttf" + }, + { + "family": "Fjalla One", + "variants": [ "regular" ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], + "version": "v15", + "lastModified": "2023-04-04", + "files": { + "regular": "http://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFrOd6lw.ttf" + }, + { + "family": "Fjord One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKb6ORE.ttf" + }, + { + "family": "Flamenco", + "variants": [ "300", "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/flamenco/v18/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf", + "regular": "http://fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssaWGHK06UY30.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssZWHFqk.ttf" + }, + { + "family": "Flavors", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/flavors/v22/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/flavors/v22/FBV2dDrhxqmveJTpXk3vMg.ttf" + }, + { + "family": "Fleur De Leah", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/fleurdeleah/v7/AYCNpXX7ftYZWLhv9UmPJTMC5vat4I_Gdq0.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fleurdeleah/v7/AYCNpXX7ftYZWLhv9UmPJTMC1ven5A.ttf" + }, + { + "family": "Flow Block", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v7", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/flowblock/v7/wlp0gwfPCEB65UmTk-d6-WZlbCBXE_I.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/flowblock/v7/wlp0gwfPCEB65UmTk-d6yWdvaA.ttf" + }, + { + "family": "Flow Circular", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v7", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/flowcircular/v7/lJwB-pc4j2F-H8YKuyvfxdZ45ifpWdr2rIg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/flowcircular/v7/lJwB-pc4j2F-H8YKuyvfxdZ41ibjXQ.ttf" + }, + { + "family": "Flow Rounded", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v7", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/flowrounded/v7/-zki91mtwsU9qlLiGwD4oQX3oZX-Xup87g.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/flowrounded/v7/-zki91mtwsU9qlLiGwD4oQXHoJ_6.ttf" + }, + { + "family": "Foldit", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpANmapUYLHkN80.ttf", + "200": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhAMmapUYLHkN80.ttf", + "300": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xs4MmapUYLHkN80.ttf", + "500": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XqIMmapUYLHkN80.ttf", + "600": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xk4LmapUYLHkN80.ttf", + "700": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XncLmapUYLHkN80.ttf", + "800": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhALmapUYLHkN80.ttf", + "900": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XjkLmapUYLHkN80.ttf", + "regular": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpAMmapUYLHkN80.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpAMqateZA.ttf" + }, + { + "family": "Fondamento", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/fondamento/v17/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf", + "italic": "http://fonts.gstatic.com/s/fondamento/v17/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fondamento/v17/4UaHrEJGsxNmFTPDnkaJ96zp4g.ttf" + }, + { + "family": "Fontdiner Swanky", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/fontdinerswanky/v19/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fontdinerswanky/v19/ijwOs4XgRNsiaI5-hcVb4hQgMvCD0uAVLg.ttf" + }, + { + "family": "Forum", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/forum/v16/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/forum/v16/6aey4Ky-Vb8Ew8IXOpc.ttf" + }, + { + "family": "Fragment Mono", + "variants": [ "regular", "italic" ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext" ], + "version": "v1", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/fragmentmono/v1/4iCr6K5wfMRRjxp0DA6-2CLnN4RNh4UI_1U.ttf", + "italic": "http://fonts.gstatic.com/s/fragmentmono/v1/4iC16K5wfMRRjxp0DA6-2CLnB4ZHg6cN71URtQ.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fragmentmono/v1/4iCr6K5wfMRRjxp0DA6-2CLnB4VHgw.ttf" + }, + { + "family": "Francois One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v21", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/francoisone/v21/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/francoisone/v21/_Xmr-H4zszafZw3A-KPSZut9xwiU.ttf" + }, + { + "family": "Frank Ruhl Libre", + "variants": [ "300", "regular", "500", "600", "700", "800", "900" ], + "subsets": [ "hebrew", "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2023-04-27", + "files": { + "300": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw6bYVqQPxR2EUR_.ttf", + "500": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw73YVqQPxR2EUR_.ttf", + "600": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4bZlqQPxR2EUR_.ttf", + "700": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4iZlqQPxR2EUR_.ttf", + "800": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5FZlqQPxR2EUR_.ttf", + "900": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5sZlqQPxR2EUR_.ttf", + "regular": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYVqQPxR2EUR_.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYWqRNRA.ttf" + }, + { + "family": "Fraunces", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v31", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxqjDvTShUtWNg.ttf", + "200": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxujDvTShUtWNg.ttf", + "300": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIc6RujDvTShUtWNg.ttf", + "500": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIchRujDvTShUtWNg.ttf", + "600": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcaRyjDvTShUtWNg.ttf", + "700": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcUByjDvTShUtWNg.ttf", + "800": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxyjDvTShUtWNg.ttf", + "900": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcHhyjDvTShUtWNg.ttf", + "regular": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxujDvTShUtWNg.ttf", + "100italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTP7Wp05GNi3k.ttf", + "200italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLTf7Wp05GNi3k.ttf", + "300italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1gVTf7Wp05GNi3k.ttf", + "italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTf7Wp05GNi3k.ttf", + "500italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1h5Tf7Wp05GNi3k.ttf", + "600italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1iVSv7Wp05GNi3k.ttf", + "700italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1isSv7Wp05GNi3k.ttf", + "800italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLSv7Wp05GNi3k.ttf", + "900italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jiSv7Wp05GNi3k.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxuTD_7W.ttf" + }, + { + "family": "Freckle Face", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/freckleface/v15/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/freckleface/v15/AMOWz4SXrmKHCvXTohxY-YIEUliy.ttf" + }, + { + "family": "Fredericka the Great", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/frederickathegreat/v16/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/frederickathegreat/v16/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV--SlxbI.ttf" + }, + { + "family": "Fredoka", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "hebrew", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-04-04", + "files": { + "300": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OryLMFuOLlNldbw.ttf", + "500": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OwyLMFuOLlNldbw.ttf", + "600": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OLyXMFuOLlNldbw.ttf", + "700": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiXMFuOLlNldbw.ttf", + "regular": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3O8SLMFuOLlNldbw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3O8SL8F-mP.ttf" + }, + { + "family": "Freehand", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin" ], + "version": "v27", + "lastModified": "2022-04-21", + "files": { + "regular": "http://fonts.gstatic.com/s/freehand/v27/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/freehand/v27/cIf-Ma5eqk01VjKTgDmARGE.ttf" + }, + { + "family": "Fresca", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/fresca/v18/6ae94K--SKgCzbM2Gr0W13DKPA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fresca/v18/6ae94K--SKgCzbMGG7cS.ttf" + }, + { + "family": "Frijole", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ3xLR2g.ttf" + }, + { + "family": "Fruktur", + "variants": [ "regular", "italic" ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], + "version": "v27", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/fruktur/v27/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf", + "italic": "http://fonts.gstatic.com/s/fruktur/v27/SZc73FHsOru5QYsMTz_MlWjX4DJXgQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fruktur/v27/SZc53FHsOru5QYsMTzzMlQ.ttf" + }, + { + "family": "Fugaz One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/fugazone/v15/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fugazone/v15/rax_HiWKp9EAITukFsl8BRha.ttf" + }, + { + "family": "Fuggles", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v9", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/fuggles/v9/k3kQo8UEJOlD1hpOTd7iL0nAMaM.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fuggles/v9/k3kQo8UEJOlD1hpOfd_oKw.ttf" + }, + { + "family": "Fuzzy Bubbles", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLbKZMbrgv9pwtjPEVNV0F2Ds_WQxMAZkM1pn4.ttf", + "regular": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLGKZMbrgv9pwtjPEVNV0F2NnP5Zxsreko.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLGKZMbrgv9pwtjPEVNV0F2BnLzYw.ttf" + }, + { + "family": "GFS Didot", + "variants": [ "regular" ], + "subsets": [ "greek" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/gfsdidot/v15/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gfsdidot/v15/Jqzh5TybZ9vZMWFssvwSFu3C.ttf" + }, + { + "family": "GFS Neohellenic", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "greek" ], + "version": "v25", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf", + "regular": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf", + "italic": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf", + "700italic": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIRdiDOrfiq0b7R8O1Iw9WLcY5jLKJL.ttf" + }, + { + "family": "Gabriela", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/gabriela/v17/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gabriela/v17/qkBWXvsO6sreR8E-b8m_xL4.ttf" + }, + { + "family": "Gaegu", + "variants": [ "300", "regular", "700" ], + "subsets": [ "korean", "latin" ], + "version": "v15", + "lastModified": "2022-09-27", + "files": { + "300": "http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf", + "700": "http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf", + "regular": "http://fonts.gstatic.com/s/gaegu/v15/TuGfUVB6Up9NU6ZLodgzydtk.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gaegu/v15/TuGfUVB6Up9NU5ZKq9w.ttf" + }, + { + "family": "Gafata", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/gafata/v16/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gafata/v16/XRXV3I6Cn0VJKonIM-aE.ttf" + }, + { + "family": "Gajraj One", + "variants": [ "regular" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v3", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/gajrajone/v3/1cX2aUDCDpXsuWVb1jIjr1GqhcitzeM.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gajrajone/v3/1cX2aUDCDpXsuWVb1jIjn1CggQ.ttf" + }, + { + "family": "Galada", + "variants": [ "regular" ], + "subsets": [ "bengali", "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/galada/v14/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/galada/v14/H4cmBXyGmcjXlUXO8yY6.ttf" + }, + { + "family": "Galdeano", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boAPw-vQ.ttf" + }, + { + "family": "Galindo", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/galindo/v20/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/galindo/v20/HI_KiYMeLqVKqwyuc5DoQg.ttf" + }, + { + "family": "Gamja Flower", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v20", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/gamjaflower/v20/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gamjaflower/v20/6NUR8FiKJg-Pa0rM6uN40Z4UyPVB.ttf" + }, + { + "family": "Gantari", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v1", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOz3wa5GD2qnm.ttf", + "200": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gOj3wa5GD2qnm.ttf", + "300": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g1-Oj3wa5GD2qnm.ttf", + "500": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0SOj3wa5GD2qnm.ttf", + "600": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3-PT3wa5GD2qnm.ttf", + "700": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3HPT3wa5GD2qnm.ttf", + "800": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gPT3wa5GD2qnm.ttf", + "900": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2JPT3wa5GD2qnm.ttf", + "regular": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOj3wa5GD2qnm.ttf", + "100italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWyYZWh37nmpWc.ttf", + "200italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVWzYZWh37nmpWc.ttf", + "300italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeYuzYZWh37nmpWc.ttf", + "italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWzYZWh37nmpWc.ttf", + "500italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeeezYZWh37nmpWc.ttf", + "600italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeQu0YZWh37nmpWc.ttf", + "700italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeTK0YZWh37nmpWc.ttf", + "800italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVW0YZWh37nmpWc.ttf", + "900italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeXy0YZWh37nmpWc.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOg3xYZU.ttf" + }, + { + "family": "Gayathri", + "variants": [ "100", "regular", "700" ], + "subsets": [ "latin", "malayalam" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/gayathri/v15/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf", + "700": "http://fonts.gstatic.com/s/gayathri/v15/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf", + "regular": "http://fonts.gstatic.com/s/gayathri/v15/MCoQzAb429DbBilWLIA48J_wBugA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gayathri/v15/MCoQzAb429DbBilWLLA5-ps.ttf" + }, + { + "family": "Gelasio", + "variants": [ + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_N2CRGEsnIJkWL4.ttf", + "600": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_PGFRGEsnIJkWL4.ttf", + "700": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_JWERGEsnIJkWL4.ttf", + "regular": "http://fonts.gstatic.com/s/gelasio/v10/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf", + "italic": "http://fonts.gstatic.com/s/gelasio/v10/cIf_MaFfvUQxTTqS9CuhZEsCkIt9QQ.ttf", + "500italic": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZkGImmKBhSL7Y1Q.ttf", + "600italic": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZvGUmmKBhSL7Y1Q.ttf", + "700italic": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZ2GQmmKBhSL7Y1Q.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gelasio/v10/cIf9MaFfvUQxTTqS9CihZA.ttf" + }, + { + "family": "Gemunu Libre", + "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], + "subsets": [ "latin", "latin-ext", "sinhala" ], + "version": "v12", + "lastModified": "2023-03-21", + "files": { + "200": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iJPvSLeMXPIWA.ttf", + "300": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp00aJPvSLeMXPIWA.ttf", + "500": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0yqJPvSLeMXPIWA.ttf", + "600": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp08aOPvSLeMXPIWA.ttf", + "700": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0_-OPvSLeMXPIWA.ttf", + "800": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iOPvSLeMXPIWA.ttf", + "regular": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJPvSLeMXPIWA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJDvWBfA.ttf" + }, + { + "family": "Genos", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "cherokee", "latin", "latin-ext", "vietnamese" ], + "version": "v10", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqknorUK6K7ZsAg.ttf", + "200": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVKkjorUK6K7ZsAg.ttf", + "300": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwV9EjorUK6K7ZsAg.ttf", + "500": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVmEjorUK6K7ZsAg.ttf", + "600": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVdE_orUK6K7ZsAg.ttf", + "700": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVTU_orUK6K7ZsAg.ttf", + "800": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVKk_orUK6K7ZsAg.ttf", + "900": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVA0_orUK6K7ZsAg.ttf", + "regular": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjorUK6K7ZsAg.ttf", + "100italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA70i-CbN8Ard7.ttf", + "200italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA7ki-CbN8Ard7.ttf", + "300italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgte7ki-CbN8Ard7.ttf", + "italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA7ki-CbN8Ard7.ttf", + "500italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsy7ki-CbN8Ard7.ttf", + "600italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgve6Ui-CbN8Ard7.ttf", + "700italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgvn6Ui-CbN8Ard7.ttf", + "800italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA6Ui-CbN8Ard7.ttf", + "900italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgup6Ui-CbN8Ard7.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjYrEi-.ttf" + }, + { + "family": "Gentium Book Plus", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v1", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFO2-RHBgUK5fbjKxRpbBtJPyRpocojWpbGhs_cfKe1.ttf", + "regular": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpofKfdbLOrdPV.ttf", + "italic": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFN2-RHBgUK5fbjKxRpbBtJPyRpocKdf7bsqMPVZb4.ttf", + "700italic": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFA2-RHBgUK5fbjKxRpbBtJPyRpocKdRwrDjMv-ebe1Els.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpocKef7Y.ttf" + }, + { + "family": "Gentium Plus", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v2", + "lastModified": "2023-04-27", + "files": { + "700": "http://fonts.gstatic.com/s/gentiumplus/v2/IurC6Ytw-oSPaZ00r2bNe8VRMLRo4EYx_ofHsw.ttf", + "regular": "http://fonts.gstatic.com/s/gentiumplus/v2/Iurd6Ytw-oSPaZ00r2bNe8VpjJtM6G0t9w.ttf", + "italic": "http://fonts.gstatic.com/s/gentiumplus/v2/IurD6Ytw-oSPaZ00r2bNe8VZjpFIymg9957e.ttf", + "700italic": "http://fonts.gstatic.com/s/gentiumplus/v2/IurA6Ytw-oSPaZ00r2bNe8VZjqn05Uw13ILXs-h6.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gentiumplus/v2/Iurd6Ytw-oSPaZ00r2bNe8VZjZFI.ttf" + }, + { + "family": "Geo", + "variants": [ "regular", "italic" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/geo/v19/CSRz4zRZlufVL3BmQjlCbQ.ttf", + "italic": "http://fonts.gstatic.com/s/geo/v19/CSRx4zRZluflLXpiYDxSbf8r.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/geo/v19/CSRz4zRZluflLnpi.ttf" + }, + { + "family": "Georama", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v8", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvktmQsL5_tgbg.ttf", + "200": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mvgtmQsL5_tgbg.ttf", + "300": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5RPgtmQsL5_tgbg.ttf", + "500": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5KPgtmQsL5_tgbg.ttf", + "600": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5xP8tmQsL5_tgbg.ttf", + "700": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5_f8tmQsL5_tgbg.ttf", + "800": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mv8tmQsL5_tgbg.ttf", + "900": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5s_8tmQsL5_tgbg.ttf", + "regular": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgtmQsL5_tgbg.ttf", + "100italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2wEPxf5wbh3T.ttf", + "200italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF2gEPxf5wbh3T.ttf", + "300italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rub2gEPxf5wbh3T.ttf", + "italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2gEPxf5wbh3T.ttf", + "500italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rv32gEPxf5wbh3T.ttf", + "600italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsb3QEPxf5wbh3T.ttf", + "700italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsi3QEPxf5wbh3T.ttf", + "800italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF3QEPxf5wbh3T.ttf", + "900italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rts3QEPxf5wbh3T.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgdmAEP.ttf" + }, + { + "family": "Geostar", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/geostar/v22/sykz-yx4n701VLOftSq9-trEvlQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/geostar/v22/sykz-yx4n701VLOfhSu3_g.ttf" + }, + { + "family": "Geostar Fill", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/geostarfill/v22/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/geostarfill/v22/AMOWz4SWuWiXFfjEohxQ9osEUliy.ttf" + }, + { + "family": "Germania One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3uzQhK.ttf" + }, + { + "family": "Gideon Roman", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v8", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/gideonroman/v8/e3tmeuGrVOys8sxzZgWlmXoge0PWovdU4w.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gideonroman/v8/e3tmeuGrVOys8sxzZgWlmXoQeknS.ttf" + }, + { + "family": "Gidugu", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/gidugu/v21/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gidugu/v21/L0x8DFMkk1Uf6w3hvfqi.ttf" + }, + { + "family": "Gilda Display", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-02-16", + "files": { + "regular": "http://fonts.gstatic.com/s/gildadisplay/v14/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gildadisplay/v14/t5tmIRoYMoaYG0WEOh7HwMeR3TjPqg.ttf" + }, + { + "family": "Girassol", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/girassol/v17/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/girassol/v17/JTUUjIo_-DK48laaNB9MxW4.ttf" + }, + { + "family": "Give You Glory", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/giveyouglory/v15/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/giveyouglory/v15/8QIQdiHOgt3vv4LR7ahjw9-XYf1yDYI.ttf" + }, + { + "family": "Glass Antiqua", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/glassantiqua/v20/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/glassantiqua/v20/xfu30Wr0Wn3NOQM2piC0uXOjrL76Mw.ttf" + }, + { + "family": "Glegoo", + "variants": [ "regular", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/glegoo/v14/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf", + "regular": "http://fonts.gstatic.com/s/glegoo/v14/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/glegoo/v14/_Xmt-HQyrTKWaw25iqOd.ttf" + }, + { + "family": "Gloock", + "variants": [ "regular" ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext" ], + "version": "v2", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/gloock/v2/Iurb6YFw84WUY4N5jxylBrdRjQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gloock/v2/Iurb6YFw84WUY4NJjhah.ttf" + }, + { + "family": "Gloria Hallelujah", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/gloriahallelujah/v17/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gloriahallelujah/v17/LYjYdHv3kUk9BMV96EIswT9DIbW-MISz1zY.ttf" + }, + { + "family": "Glory", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v13", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwIiDpn-dDi9EOQ.ttf", + "200": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQQImDpn-dDi9EOQ.ttf", + "300": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQnomDpn-dDi9EOQ.ttf", + "500": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQ8omDpn-dDi9EOQ.ttf", + "600": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQHo6Dpn-dDi9EOQ.ttf", + "700": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQJ46Dpn-dDi9EOQ.ttf", + "800": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQQI6Dpn-dDi9EOQ.ttf", + "regular": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwImDpn-dDi9EOQ.ttf", + "100italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", + "200italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", + "300italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", + "italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf", + "500italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", + "600italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", + "700italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", + "800italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwImzp3WZ.ttf" + }, + { + "family": "Gluten", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v10", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7B1Luni7ciJh.ttf", + "200": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb7R1Luni7ciJh.ttf", + "300": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8UF7R1Luni7ciJh.ttf", + "500": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vp7R1Luni7ciJh.ttf", + "600": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8WF6h1Luni7ciJh.ttf", + "700": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8W86h1Luni7ciJh.ttf", + "800": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb6h1Luni7ciJh.ttf", + "900": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xy6h1Luni7ciJh.ttf", + "regular": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7R1Luni7ciJh.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7S1KsHw.ttf" + }, + { + "family": "Goblin One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/goblinone/v22/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/goblinone/v22/CSR64z1ZnOqZRjRCBVY_fOYKSA.ttf" + }, + { + "family": "Gochi Hand", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/gochihand/v19/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gochihand/v19/hES06XlsOjtJsgCkx1Pkfo___g.ttf" + }, + { + "family": "Goldman", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v16", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/goldman/v16/pe0rMIWbN4JFplR2FI5XIteQB9Zra1U.ttf", + "regular": "http://fonts.gstatic.com/s/goldman/v16/pe0uMIWbN4JFplR2LDJ4Bt-7G98.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/goldman/v16/pe0uMIWbN4JFplR2HDNyAg.ttf" + }, + { + "family": "Golos Text", + "variants": [ "regular", "500", "600", "700", "800", "900" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v4", + "lastModified": "2023-03-21", + "files": { + "500": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVjRQ5cEr8zXcyx.ttf", + "600": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plWPQg5cEr8zXcyx.ttf", + "700": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plW2Qg5cEr8zXcyx.ttf", + "800": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plXRQg5cEr8zXcyx.ttf", + "900": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plX4Qg5cEr8zXcyx.ttf", + "regular": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVRRQ5cEr8zXcyx.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVRRT5dGLs.ttf" + }, + { + "family": "Gorditas", + "variants": [ "regular", "700" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/gorditas/v20/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf", + "regular": "http://fonts.gstatic.com/s/gorditas/v20/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gorditas/v20/ll8_K2aTVD26DsPEtTDpB6o.ttf" + }, + { + "family": "Gothic A1", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "korean", "latin" ], + "version": "v13", + "lastModified": "2022-09-27", + "files": { + "100": "http://fonts.gstatic.com/s/gothica1/v13/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf", + "200": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf", + "300": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf", + "500": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf", + "600": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf", + "700": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf", + "800": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf", + "900": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf", + "regular": "http://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwlKbccq.ttf" + }, + { + "family": "Gotu", + "variants": [ "regular" ], + "subsets": [ "devanagari", "latin", "latin-ext", "vietnamese" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/gotu/v14/o-0FIpksx3QOlH0Lioh6-hU.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gotu/v14/o-0FIpksx3QOpHwBjg.ttf" + }, + { + "family": "Goudy Bookletter 1911", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/goudybookletter1911/v15/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/goudybookletter1911/v15/sykt-z54laciWfKv-kX8krex0jDiD2HbY6IJtBzT.ttf" + }, + { + "family": "Gowun Batang", + "variants": [ "regular", "700" ], + "subsets": [ "korean", "latin", "latin-ext", "vietnamese" ], + "version": "v7", + "lastModified": "2022-09-27", + "files": { + "700": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwNs5nhRMIjYsdSgcMa3wRZ4J7awssxJii23w.ttf", + "regular": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwSs5nhRMIjYsdSgcMa3wRhXLH-yuAtLw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwSs5nhRMIjYsdSgcMa3wRRXbv6.ttf" + }, + { + "family": "Gowun Dodum", + "variants": [ "regular" ], + "subsets": [ "korean", "latin", "latin-ext", "vietnamese" ], + "version": "v7", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/gowundodum/v7/3Jn5SD_00GqwlBnWc1TUJF0FfORL0fNy.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gowundodum/v7/3Jn5SD_00GqwlBnWc1TUJG0EduA.ttf" + }, + { + "family": "Graduate", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/graduate/v13/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/graduate/v13/C8cg4cs3o2n15t_2YygQ43k.ttf" + }, + { + "family": "Grand Hotel", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/grandhotel/v14/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/grandhotel/v14/7Au7p_IgjDKdCRWuR1azplQMGFk.ttf" + }, + { + "family": "Grandstander", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v15", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1-_D3jWttFGmQk.ttf", + "200": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9--D3jWttFGmQk.ttf", + "300": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQDwG-D3jWttFGmQk.ttf", + "500": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD22-D3jWttFGmQk.ttf", + "600": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD4G5D3jWttFGmQk.ttf", + "700": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD7i5D3jWttFGmQk.ttf", + "800": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9-5D3jWttFGmQk.ttf", + "900": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD_a5D3jWttFGmQk.ttf", + "regular": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--D3jWttFGmQk.ttf", + "100italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zrcsvNDiQlBYQ.ttf", + "200italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzvcsvNDiQlBYQ.ttf", + "300italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9uTvcsvNDiQlBYQ.ttf", + "italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zvcsvNDiQlBYQ.ttf", + "500italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf91TvcsvNDiQlBYQ.ttf", + "600italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9OTzcsvNDiQlBYQ.ttf", + "700italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ADzcsvNDiQlBYQ.ttf", + "800italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzzcsvNDiQlBYQ.ttf", + "900italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9TjzcsvNDiQlBYQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--P3ncsg.ttf" + }, + { + "family": "Grape Nuts", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/grapenuts/v2/syk2-yF4iLM2RfKj4F7k3tLvol2RN1E.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/grapenuts/v2/syk2-yF4iLM2RfKj4F7k7tPlpg.ttf" + }, + { + "family": "Gravitas One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/gravitasone/v15/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gravitasone/v15/5h1diZ4hJ3cblKy3LWakKQmqDG5J.ttf" + }, + { + "family": "Great Vibes", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/greatvibes/v15/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/greatvibes/v15/RWmMoKWR9v4ksMfaWd_JN9XDiaE.ttf" + }, + { + "family": "Grechen Fuemen", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/grechenfuemen/v7/vEFI2_tHEQ4d5ObgKxBzZh0MAWgc-NaXXq7H.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/grechenfuemen/v7/vEFI2_tHEQ4d5ObgKxBzZh0MAVgd8tI.ttf" + }, + { + "family": "Grenze", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf", + "200": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf", + "300": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf", + "500": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf", + "600": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf", + "700": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf", + "800": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf", + "900": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf", + "100italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf", + "200italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf", + "300italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf", + "regular": "http://fonts.gstatic.com/s/grenze/v15/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf", + "italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf", + "500italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf", + "600italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf", + "700italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf", + "800italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf", + "900italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/grenze/v15/O4ZTFGb7hR12BxqH_mIj.ttf" + }, + { + "family": "Grenze Gotisch", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v16", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz5UcICdYPSd_w.ttf", + "200": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rz9UcICdYPSd_w.ttf", + "300": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5cT9UcICdYPSd_w.ttf", + "500": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5HT9UcICdYPSd_w.ttf", + "600": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i58ThUcICdYPSd_w.ttf", + "700": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5yDhUcICdYPSd_w.ttf", + "800": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rzhUcICdYPSd_w.ttf", + "900": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5hjhUcICdYPSd_w.ttf", + "regular": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9UcICdYPSd_w.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9kcYqZ.ttf" + }, + { + "family": "Grey Qo", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/greyqo/v7/BXRrvF_Nmv_TyXxNDOtQ9Wf0QcE.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/greyqo/v7/BXRrvF_Nmv_TyXxNPOpa8Q.ttf" + }, + { + "family": "Griffy", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/griffy/v22/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/griffy/v22/FwZa7-ox2FQh9kfASd6A.ttf" + }, + { + "family": "Gruppo", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/gruppo/v16/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gruppo/v16/WwkfxPmzE06v_ZW1WHrE.ttf" + }, + { + "family": "Gudea", + "variants": [ "regular", "italic", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/gudea/v15/neIIzCqgsI0mp9gz26WGHK06UY30.ttf", + "regular": "http://fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp-CP9IGON7Ez.ttf", + "italic": "http://fonts.gstatic.com/s/gudea/v15/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp9CO_oU.ttf" + }, + { + "family": "Gugi", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/gugi/v13/A2BVn5dXywshVA6A9DEfgqM.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gugi/v13/A2BVn5dXywshZA-K8A.ttf" + }, + { + "family": "Gulzar", + "variants": [ "regular" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v6", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/gulzar/v6/Wnz6HAc9eB3HB2ILYTwZqg_MPQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gulzar/v6/Wnz6HAc9eB3HB2I7YDYd.ttf" + }, + { + "family": "Gupter", + "variants": [ "regular", "500", "700" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qslb-bUsT5rZhaZg.ttf", + "700": "http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qs3bmbUsT5rZhaZg.ttf", + "regular": "http://fonts.gstatic.com/s/gupter/v14/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gupter/v14/2-cm9JNmxJqPO1QkYJy7.ttf" + }, + { + "family": "Gurajada", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/gurajada/v15/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gurajada/v15/FwZY7-Qx308m-l-0Ke6B6Mw.ttf" + }, + { + "family": "Gwendolyn", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBSXvoO_M3CSss-d7emWLtvmC7HONiSFQ.ttf", + "regular": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBXXvoO_M3CSss-d7ee5JRLkAXbMQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBXXvoO_M3CSss-d7eu5Z5P.ttf" + }, + { + "family": "Habibi", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNySxha.ttf" + }, + { + "family": "Hachi Maru Pop", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/hachimarupop/v17/HI_TiYoRLqpLrEiMAuO9Ysfz7rW1EM_btd8u.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hachimarupop/v17/HI_TiYoRLqpLrEiMAuO9Ysfz7oW0Gss.ttf" + }, + { + "family": "Hahmlet", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "korean", "latin", "latin-ext", "vietnamese" ], + "version": "v13", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOdjobsO-aVxn.ttf", + "200": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKONjobsO-aVxn.ttf", + "300": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RgUONjobsO-aVxn.ttf", + "500": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4Rh4ONjobsO-aVxn.ttf", + "600": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RiUP9jobsO-aVxn.ttf", + "700": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RitP9jobsO-aVxn.ttf", + "800": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKP9jobsO-aVxn.ttf", + "900": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjjP9jobsO-aVxn.ttf", + "regular": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKONjobsO-aVxn.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOOjpZMc.ttf" + }, + { + "family": "Halant", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf", + "500": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf", + "600": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf", + "700": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf", + "regular": "http://fonts.gstatic.com/s/halant/v14/u-4-0qaujRI2PbsX39Jmky12eg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/halant/v14/u-4-0qaujRI2Pbsn3thi.ttf" + }, + { + "family": "Hammersmith One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnrsxEg.ttf" + }, + { + "family": "Hanalei", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHXzgmVydREus.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHbzksUw.ttf" + }, + { + "family": "Hanalei Fill", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/hanaleifill/v22/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hanaleifill/v22/fC1mPYtObGbfyQznIaQzPQi8VgjF.ttf" + }, + { + "family": "Handlee", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/handlee/v14/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/handlee/v14/-F6xfjBsISg9aMakPmvwpg.ttf" + }, + { + "family": "Hanken Grotesk", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], + "version": "v8", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2da4fpNzXhRKA.ttf", + "200": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Za4fpNzXhRKA.ttf", + "300": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf", + "500": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf", + "600": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcbWFa4fpNzXhRKA.ttf", + "700": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcVGFa4fpNzXhRKA.ttf", + "800": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Fa4fpNzXhRKA.ttf", + "900": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcGmFa4fpNzXhRKA.ttf", + "regular": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2Za4fpNzXhRKA.ttf", + "100italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyo_BJ731BKMSK.ttf", + "200italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUyovBJ731BKMSK.ttf", + "300italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyXsovBJ731BKMSK.ttf", + "italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyovBJ731BKMSK.ttf", + "500italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWAovBJ731BKMSK.ttf", + "600italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVspfBJ731BKMSK.ttf", + "700italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVVpfBJ731BKMSK.ttf", + "800italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUypfBJ731BKMSK.ttf", + "900italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUbpfBJ731BKMSK.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2Zq4PBJ.ttf" + }, + { + "family": "Hanuman", + "variants": [ "100", "300", "regular", "700", "900" ], + "subsets": [ "khmer", "latin" ], + "version": "v22", + "lastModified": "2022-04-21", + "files": { + "100": "http://fonts.gstatic.com/s/hanuman/v22/VuJzdNvD15HhpJJBQMLdPKNiaRpFvg.ttf", + "300": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQAr_HIlMZRNcp0o.ttf", + "700": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf", + "900": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQCL6HIlMZRNcp0o.ttf", + "regular": "http://fonts.gstatic.com/s/hanuman/v22/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hanuman/v22/VuJxdNvD15HhpJJBSKfdPA.ttf" + }, + { + "family": "Happy Monkey", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OwBgry.ttf" + }, + { + "family": "Harmattan", + "variants": [ "regular", "700" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-11-09", + "files": { + "700": "http://fonts.gstatic.com/s/harmattan/v17/gokpH6L2DkFvVvRp9Xpr92-HmNZEq6TTFw.ttf", + "regular": "http://fonts.gstatic.com/s/harmattan/v17/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/harmattan/v17/goksH6L2DkFvVvRp9XpjSkqn.ttf" + }, + { + "family": "Headland One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/headlandone/v16/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/headlandone/v16/yYLu0hHR2vKnp89Tk1TCq3TB0fNX.ttf" + }, + { + "family": "Heebo", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "hebrew", "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cckOnz02SXQ.ttf", + "200": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycckOnz02SXQ.ttf", + "300": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycckOnz02SXQ.ttf", + "500": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyycckOnz02SXQ.ttf", + "600": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucckOnz02SXQ.ttf", + "700": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiucckOnz02SXQ.ttf", + "800": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucckOnz02SXQ.ttf", + "900": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucckOnz02SXQ.ttf", + "regular": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycckOnz02SXQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSysc0mj.ttf" + }, + { + "family": "Henny Penny", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfPQrvXc.ttf" + }, + { + "family": "Hepta Slab", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v21", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf", + "200": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf", + "300": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf", + "500": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf", + "600": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf", + "700": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf", + "800": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf", + "900": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf", + "regular": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5wfaaZQ.ttf" + }, + { + "family": "Herr Von Muellerhoff", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/herrvonmuellerhoff/v16/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/herrvonmuellerhoff/v16/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft0c79KY.ttf" + }, + { + "family": "Hi Melody", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v13", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/himelody/v13/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/himelody/v13/46ktlbP8Vnz0pJcqCTb0fmVA.ttf" + }, + { + "family": "Hina Mincho", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v9", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/hinamincho/v9/2sDaZGBRhpXa2Jjz5w5LAGW8KbkVZTHR.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hinamincho/v9/2sDaZGBRhpXa2Jjz5w5LAFW9I70.ttf" + }, + { + "family": "Hind", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf", + "500": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf", + "600": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf", + "700": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf", + "regular": "http://fonts.gstatic.com/s/hind/v16/5aU69_a8oxmIRG5yBROzkDM.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hind/v16/5aU69_a8oxmIdG94AQ.ttf" + }, + { + "family": "Hind Guntur", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "telugu" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf", + "500": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf", + "600": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf", + "700": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf", + "regular": "http://fonts.gstatic.com/s/hindguntur/v12/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hindguntur/v12/wXKvE3UZrok56nvamSuJd_QrvXc.ttf" + }, + { + "family": "Hind Madurai", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "tamil" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf", + "500": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf", + "600": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf", + "700": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf", + "regular": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOcpqjX8IcH.ttf" + }, + { + "family": "Hind Siliguri", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "bengali", "latin", "latin-ext" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf", + "500": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf", + "600": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf", + "700": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf", + "regular": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwTs5juQtsyLLR5jN4cxBEoTJrawg.ttf" + }, + { + "family": "Hind Vadodara", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "gujarati", "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf", + "500": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf", + "600": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf", + "700": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf", + "regular": "http://fonts.gstatic.com/s/hindvadodara/v13/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hindvadodara/v13/neINzCKvrIcn5pbuuuriV9tTQJTVqQ.ttf" + }, + { + "family": "Holtwood One SC", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/holtwoodonesc/v16/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/holtwoodonesc/v16/yYLx0hLR0P-3vMFSk1TCq3Txg5BHcLz-.ttf" + }, + { + "family": "Homemade Apple", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/homemadeapple/v18/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/homemadeapple/v18/Qw3EZQFXECDrI2q789EKQZJob0x8XH0.ttf" + }, + { + "family": "Homenaje", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Le6B6Mw.ttf" + }, + { + "family": "Hubballi", + "variants": [ "regular" ], + "subsets": [ "kannada", "latin", "latin-ext" ], + "version": "v4", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/hubballi/v4/o-0JIpUj3WIZ1RFN56B7yBBNYuSF.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hubballi/v4/o-0JIpUj3WIZ1RFN55B6whQ.ttf" + }, + { + "family": "Hurricane", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/hurricane/v5/pe0sMIuULZxTolZ5YldyAv2-C99ycg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/hurricane/v5/pe0sMIuULZxTolZ5YldCA_e6.ttf" + }, + { + "family": "IBM Plex Mono", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v19", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf", + "200": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf", + "300": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf", + "500": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf", + "600": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf", + "700": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf", + "100italic": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf", + "200italic": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf", + "300italic": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf", + "regular": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf", + "italic": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf", + "500italic": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf", + "600italic": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf", + "700italic": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n1ikq0g.ttf" + }, + { + "family": "IBM Plex Sans", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v19", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf", + "200": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf", + "300": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf", + "500": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf", + "600": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf", + "700": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf", + "100italic": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf", + "200italic": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf", + "300italic": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf", + "regular": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf", + "italic": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf", + "500italic": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf", + "600italic": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf", + "700italic": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKhdfeEA.ttf" + }, + { + "family": "IBM Plex Sans Arabic", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "arabic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v12", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3MZRtWPQCuHme67tEYUIx3Kh0PHR9N6YNe3PC5eMlAMg0.ttf", + "200": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPy_dCTVsVJKxTs.ttf", + "300": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOW_tCTVsVJKxTs.ttf", + "500": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPO_9CTVsVJKxTs.ttf", + "600": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPi-NCTVsVJKxTs.ttf", + "700": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOG-dCTVsVJKxTs.ttf", + "regular": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs61vSbfdlA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6Ys73PA.ttf" + }, + { + "family": "IBM Plex Sans Condensed", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], + "version": "v14", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf", + "200": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf", + "300": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf", + "500": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf", + "600": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf", + "700": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf", + "100italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf", + "200italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf", + "300italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf", + "regular": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf", + "italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf", + "500italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf", + "600italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf", + "700italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYavyKs.ttf" + }, + { + "family": "IBM Plex Sans Devanagari", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "cyrillic-ext", "devanagari", "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXB3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HMUjwUcjwCEQq.ttf", + "200": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HnWnQe-b8AV0z0w.ttf", + "300": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H-WrQe-b8AV0z0w.ttf", + "500": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HoWvQe-b8AV0z0w.ttf", + "600": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HjWzQe-b8AV0z0w.ttf", + "700": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H6W3Qe-b8AV0z0w.ttf", + "regular": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__VUL0c83gCA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_PVEjw.ttf" + }, + { + "family": "IBM Plex Sans Hebrew", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "cyrillic-ext", "hebrew", "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa4qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEXB-l0VqDaM7C4.ttf", + "200": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVt230_hjqF9Tc2.ttf", + "300": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUJ2H0_hjqF9Tc2.ttf", + "500": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVR2X0_hjqF9Tc2.ttf", + "600": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEV93n0_hjqF9Tc2.ttf", + "700": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUZ330_hjqF9Tc2.ttf", + "regular": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2l8Fk3rSaM.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXE2k-l0.ttf" + }, + { + "family": "IBM Plex Sans JP", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v5", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XLDn9KbTDf6_f7dISNqYf_tvPT7E7yjPB7twdmHQ.ttf", + "200": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7OLTrNpVuw5_BAM.ttf", + "300": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7IbQrNpVuw5_BAM.ttf", + "500": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7N7RrNpVuw5_BAM.ttf", + "600": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7PLWrNpVuw5_BAM.ttf", + "700": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7JbXrNpVuw5_BAM.ttf", + "regular": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XNDn9KbTDf6_f7dISNqYf_tvPT1Cr4iNJ-pwc.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XNDn9KbTDf6_f7dISNqYf_tvPT5CvyjA.ttf" + }, + { + "family": "IBM Plex Sans KR", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "korean", "latin", "latin-ext" ], + "version": "v10", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFM2-VJISZe3O_rc3ZVYh4aTwNOyra_X5zCpMrMfA.ttf", + "200": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyhqef7bsqMPVZb4.ttf", + "300": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyn6df7bsqMPVZb4.ttf", + "500": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyiacf7bsqMPVZb4.ttf", + "600": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOygqbf7bsqMPVZb4.ttf", + "700": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOym6af7bsqMPVZb4.ttf", + "regular": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFK2-VJISZe3O_rc3ZVYh4aTwNO8tK1W77HtMo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFK2-VJISZe3O_rc3ZVYh4aTwNOwtO_Xw.ttf" + }, + { + "family": "IBM Plex Sans Thai", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext", "thai" ], + "version": "v10", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JNje1VVIzcq1HzJq2AEdo2Tj_qvLqEatYlR8ZKUqcX.ttf", + "200": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqExvcFbehGW74OXw.ttf", + "300": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEovQFbehGW74OXw.ttf", + "500": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE-vUFbehGW74OXw.ttf", + "600": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE1vIFbehGW74OXw.ttf", + "700": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEsvMFbehGW74OXw.ttf", + "regular": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8DtwhZcNaUg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLqMD9Yl.ttf" + }, + { + "family": "IBM Plex Sans Thai Looped", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext", "thai" ], + "version": "v11", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss5AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_HaKpHOtFCQ76Q.ttf", + "200": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_NqrhFmDGC0i8Cc.ttf", + "300": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_L6ohFmDGC0i8Cc.ttf", + "500": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_OaphFmDGC0i8Cc.ttf", + "600": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_MquhFmDGC0i8Cc.ttf", + "700": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_K6vhFmDGC0i8Cc.ttf", + "regular": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBKAoFGoBCQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L9BOKpA.ttf" + }, + { + "family": "IBM Plex Serif", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v19", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf", + "200": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf", + "300": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf", + "500": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf", + "600": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf", + "700": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf", + "100italic": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf", + "200italic": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf", + "300italic": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf", + "regular": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf", + "italic": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf", + "500italic": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf", + "600italic": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf", + "700italic": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizDREVNn1dOx-zrZ2X3pZvkTiUZ2zI.ttf" + }, + { + "family": "IM Fell DW Pica", + "variants": [ "regular", "italic" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf", + "italic": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNwNZQnQ.ttf" + }, + { + "family": "IM Fell DW Pica SC", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTm-RKO.ttf" + }, + { + "family": "IM Fell Double Pica", + "variants": [ "regular", "italic" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf", + "italic": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0W_VA.ttf" + }, + { + "family": "IM Fell Double Pica SC", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ0YwOfg.ttf" + }, + { + "family": "IM Fell English", + "variants": [ "regular", "italic" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf", + "italic": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAzHFqOd.ttf" + }, + { + "family": "IM Fell English SC", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZ7OoIK.ttf" + }, + { + "family": "IM Fell French Canon", + "variants": [ "regular", "italic" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf", + "italic": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6foUNNk.ttf" + }, + { + "family": "IM Fell French Canon SC", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H0c1WhQ.ttf" + }, + { + "family": "IM Fell Great Primer", + "variants": [ "regular", "italic" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf", + "italic": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJrrWtj4.ttf" + }, + { + "family": "IM Fell Great Primer SC", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTIf8D3g.ttf" + }, + { + "family": "Ibarra Real Nova", + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v25", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdS5MDtVT9TWIvS.ttf", + "600": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXe-48DtVT9TWIvS.ttf", + "700": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXeH48DtVT9TWIvS.ttf", + "regular": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5MDtVT9TWIvS.ttf", + "italic": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopyiuXztxXZvSkTo.ttf", + "500italic": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopxquXztxXZvSkTo.ttf", + "600italic": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop_apXztxXZvSkTo.ttf", + "700italic": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop8-pXztxXZvSkTo.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5PDsXzs.ttf" + }, + { + "family": "Iceberg", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/iceberg/v20/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/iceberg/v20/8QIJdijAiM7o-qnZiIkErw.ttf" + }, + { + "family": "Iceland", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/iceland/v16/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/iceland/v16/rax9HiuFsdMNOnWPaK1MBA.ttf" + }, + { + "family": "Imbue", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iWfOsNNK-Q4xY.ttf", + "200": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iXfOsNNK-Q4xY.ttf", + "300": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP5aXfOsNNK-Q4xY.ttf", + "500": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP_qXfOsNNK-Q4xY.ttf", + "600": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPxaQfOsNNK-Q4xY.ttf", + "700": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPy-QfOsNNK-Q4xY.ttf", + "800": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iQfOsNNK-Q4xY.ttf", + "900": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP2GQfOsNNK-Q4xY.ttf", + "regular": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXfOsNNK-Q4xY.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXTOoHMA.ttf" + }, + { + "family": "Imperial Script", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/imperialscript/v3/5DCPAKrpzy_H98IV2ISnZBbGrVNvPenlvttWNg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/imperialscript/v3/5DCPAKrpzy_H98IV2ISnZBbGrVNfPOPh.ttf" + }, + { + "family": "Imprima", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2023-03-21", + "files": { + "regular": "http://fonts.gstatic.com/s/imprima/v18/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/imprima/v18/VEMxRoN7sY3yuy-7yoSNzA.ttf" + }, + { + "family": "Inconsolata", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v31", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aRr8lleY2co.ttf", + "300": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aRr8lleY2co.ttf", + "500": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aRr8lleY2co.ttf", + "600": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aRr8lleY2co.ttf", + "700": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aRr8lleY2co.ttf", + "800": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aRr8lleY2co.ttf", + "900": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aRr8lleY2co.ttf", + "regular": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aRr8lleY2co.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8WRv2kg.ttf" + }, + { + "family": "Inder", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4vq6pw-P3U4O.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4sq7rQs.ttf" + }, + { + "family": "Indie Flower", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/indieflower/v17/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/indieflower/v17/m8JVjfNVeKWVnh3QMuKkFcZVb0uC.ttf" + }, + { + "family": "Ingrid Darling", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ingriddarling/v2/LDIrapaJNxUtSuFdw-9yf4rCPsLOub458jGL.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ingriddarling/v2/LDIrapaJNxUtSuFdw-9yf4rCPvLPs7o.ttf" + }, + { + "family": "Inika", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/inika/v21/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf", + "regular": "http://fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-phTHRcc2s2XH.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-piTGT8M.ttf" + }, + { + "family": "Inknut Antiqua", + "variants": [ "300", "regular", "500", "600", "700", "800", "900" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf", + "500": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf", + "600": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf", + "700": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf", + "800": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf", + "900": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf", + "regular": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GSYax7VC4ot_qNB4nYpBdaKUUC4Jg.ttf" + }, + { + "family": "Inria Sans", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3ELaDQtFqeY3fX4.ttf", + "700": "http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3FLdDQtFqeY3fX4.ttf", + "300italic": "http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPrcQybX4pQA.ttf", + "regular": "http://fonts.gstatic.com/s/inriasans/v14/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf", + "italic": "http://fonts.gstatic.com/s/inriasans/v14/ptROTiqXYfZMCOiVj9kQ1Oz4LSFrpe8uZA.ttf", + "700italic": "http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PrcQybX4pQA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/inriasans/v14/ptRMTiqXYfZMCOiVj9kQ1O_4LQ.ttf" + }, + { + "family": "Inria Serif", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wAVQjFhFyta3xN.ttf", + "700": "http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wQUgjFhFyta3xN.ttf", + "300italic": "http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT4THjliPbmxN0_E.ttf", + "regular": "http://fonts.gstatic.com/s/inriaserif/v14/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf", + "italic": "http://fonts.gstatic.com/s/inriaserif/v14/fC1nPYxPY3rXxEndZJAzN3SudyjvqlCkcmU.ttf", + "700italic": "http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT5TAjliPbmxN0_E.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/inriaserif/v14/fC1lPYxPY3rXxEndZJAzN3Stdyg.ttf" + }, + { + "family": "Inspiration", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/inspiration/v3/x3dkckPPZa6L4wIg5cZOEvoGnSrlBBsy.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/inspiration/v3/x3dkckPPZa6L4wIg5cZOEsoHly4.ttf" + }, + { + "family": "Instrument Serif", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v3", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/instrumentserif/v3/jizBRFtNs2ka5fXjeivQ4LroWlx-2zIZj1bIkNo.ttf", + "italic": "http://fonts.gstatic.com/s/instrumentserif/v3/jizHRFtNs2ka5fXjeivQ4LroWlx-6zATi3TNgNq55w.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/instrumentserif/v3/jizBRFtNs2ka5fXjeivQ4LroWlx-6zMTiw.ttf" + }, + { + "family": "Inter", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.ttf", + "200": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZhrib2Bg-4.ttf", + "300": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf", + "500": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf", + "600": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf", + "700": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf", + "800": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf", + "900": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZhrib2Bg-4.ttf", + "regular": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZlhjQ.ttf" + }, + { + "family": "Inter Tight", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v3", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw6qXCRToK8EPg.ttf", + "200": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjw-qXCRToK8EPg.ttf", + "300": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qXCRToK8EPg.ttf", + "500": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qXCRToK8EPg.ttf", + "600": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqXCRToK8EPg.ttf", + "700": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqXCRToK8EPg.ttf", + "800": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjwiqXCRToK8EPg.ttf", + "900": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqXCRToK8EPg.ttf", + "regular": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qXCRToK8EPg.ttf", + "100italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHi5XgqoUPvi5.ttf", + "200italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCHy5XgqoUPvi5.ttf", + "300italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0wcHy5XgqoUPvi5.ttf", + "italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5XgqoUPvi5.ttf", + "500italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xwHy5XgqoUPvi5.ttf", + "600italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ycGC5XgqoUPvi5.ttf", + "700italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5XgqoUPvi5.ttf", + "800italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCGC5XgqoUPvi5.ttf", + "900italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zrGC5XgqoUPvi5.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-aXS5X.ttf" + }, + { + "family": "Irish Grover", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v23", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgv-fRK.ttf" + }, + { + "family": "Island Moments", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/islandmoments/v3/NaPBcZfVGvBdxIt7Ar0qzkXJF-TGIohbZ6SY.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/islandmoments/v3/NaPBcZfVGvBdxIt7Ar0qzkXJF9THKIw.ttf" + }, + { + "family": "Istok Web", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/istokweb/v21/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf", + "regular": "http://fonts.gstatic.com/s/istokweb/v21/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf", + "italic": "http://fonts.gstatic.com/s/istokweb/v21/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf", + "700italic": "http://fonts.gstatic.com/s/istokweb/v21/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/istokweb/v21/3qTvojGmgSyUukBzKslpAGt6.ttf" + }, + { + "family": "Italiana", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/italiana/v16/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/italiana/v16/QldNNTtLsx4E__B0XQmQaXk.ttf" + }, + { + "family": "Italianno", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v17", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/italianno/v17/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/italianno/v17/dg4n_p3sv6gCJkwzT6RXjpwt.ttf" + }, + { + "family": "Itim", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v11", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/itim/v11/0nknC9ziJOYewARKkc7ZdwU.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/itim/v11/0nknC9ziJOYe8AVAlQ.ttf" + }, + { + "family": "Jacques Francois", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/jacquesfrancois/v20/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/jacquesfrancois/v20/ZXu9e04ZvKeOOHIe1TMahbcIU2cgqcLgpQ.ttf" + }, + { + "family": "Jacques Francois Shadow", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v21/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v21/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_p8Uun8.ttf" + }, + { + "family": "Jaldi", + "variants": [ "regular", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/jaldi/v12/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf", + "regular": "http://fonts.gstatic.com/s/jaldi/v12/or3sQ67z0_CI30NUZpD_B6g8.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/jaldi/v12/or3sQ67z0_CI33NVbJQ.ttf" + }, + { + "family": "JetBrains Mono", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yK1jPVmUsaaDhw.ttf", + "200": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKxjPVmUsaaDhw.ttf", + "300": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8lqxjPVmUsaaDhw.ttf", + "500": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjPVmUsaaDhw.ttf", + "600": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtjPVmUsaaDhw.ttf", + "700": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjPVmUsaaDhw.ttf", + "800": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKtjPVmUsaaDhw.ttf", + "regular": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPVmUsaaDhw.ttf", + "100italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-Lf1OQk6OThxPA.ttf", + "200italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LflOQk6OThxPA.ttf", + "300italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO_VflOQk6OThxPA.ttf", + "italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-LflOQk6OThxPA.ttf", + "500italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-5flOQk6OThxPA.ttf", + "600italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9VeVOQk6OThxPA.ttf", + "700italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9seVOQk6OThxPA.ttf", + "800italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LeVOQk6OThxPA.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTPFOQ.ttf" + }, + { + "family": "Jim Nightshade", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-NS5XX4.ttf" + }, + { + "family": "Joan", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v2", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/joan/v2/ZXupe1oZsqWRbRdH8X1p_Ng.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/joan/v2/ZXupe1oZsqWRXRZN9Q.ttf" + }, + { + "family": "Jockey One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/jockeyone/v16/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/jockeyone/v16/HTxpL2g2KjCFj4x8WI6AnIfxGQ.ttf" + }, + { + "family": "Jolly Lodger", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3lWODX.ttf" + }, + { + "family": "Jomhuria", + "variants": [ "regular" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/jomhuria/v18/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/jomhuria/v18/Dxxp8j-TMXf-llKur1b0OuU.ttf" + }, + { + "family": "Jomolhari", + "variants": [ "regular" ], + "subsets": [ "latin", "tibetan" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/jomolhari/v14/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/jomolhari/v14/EvONzA1M1Iw_CBd2hsQyFlgd.ttf" + }, + { + "family": "Josefin Sans", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v26", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMFrLgTsQV0.ttf", + "200": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMFrLgTsQV0.ttf", + "300": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMFrLgTsQV0.ttf", + "500": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMFrLgTsQV0.ttf", + "600": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMFrLgTsQV0.ttf", + "700": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMFrLgTsQV0.ttf", + "regular": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMFrLgTsQV0.ttf", + "100italic": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKibpUV3MEQ.ttf", + "200italic": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKibpUV3MEQ.ttf", + "300italic": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKibpUV3MEQ.ttf", + "italic": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKibpUV3MEQ.ttf", + "500italic": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKibpUV3MEQ.ttf", + "600italic": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKibpUV3MEQ.ttf", + "700italic": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKibpUV3MEQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQbMBhKg.ttf" + }, + { + "family": "Josefin Slab", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71mtd3k3K6CcEyI.ttf", + "200": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W79msd3k3K6CcEyI.ttf", + "300": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W7wesd3k3K6CcEyI.ttf", + "500": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W72usd3k3K6CcEyI.ttf", + "600": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W74erd3k3K6CcEyI.ttf", + "700": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W776rd3k3K6CcEyI.ttf", + "regular": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msd3k3K6CcEyI.ttf", + "100italic": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzs9L4KZAyK43w.ttf", + "200italic": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvHzo9L4KZAyK43w.ttf", + "300italic": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvwTo9L4KZAyK43w.ttf", + "italic": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzo9L4KZAyK43w.ttf", + "500italic": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvrTo9L4KZAyK43w.ttf", + "600italic": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvQT09L4KZAyK43w.ttf", + "700italic": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHveD09L4KZAyK43w.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msR3g9Lw.ttf" + }, + { + "family": "Jost", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "cyrillic", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJAVGPokMmuHL.ttf", + "200": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjJQVGPokMmuHL.ttf", + "300": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mz9JQVGPokMmuHL.ttf", + "500": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myRJQVGPokMmuHL.ttf", + "600": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mx9IgVGPokMmuHL.ttf", + "700": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mxEIgVGPokMmuHL.ttf", + "800": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjIgVGPokMmuHL.ttf", + "900": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwKIgVGPokMmuHL.ttf", + "regular": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJQVGPokMmuHL.ttf", + "100italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENI0un_HLMEo.ttf", + "200italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNI0un_HLMEo.ttf", + "300italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNI0un_HLMEo.ttf", + "italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNI0un_HLMEo.ttf", + "500italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNI0un_HLMEo.ttf", + "600italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNI0un_HLMEo.ttf", + "700italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNI0un_HLMEo.ttf", + "800italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNI0un_HLMEo.ttf", + "900italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNI0un_HLMEo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJTVHNI0.ttf" + }, + { + "family": "Joti One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-04-04", + "files": { + "regular": "http://fonts.gstatic.com/s/jotione/v22/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/jotione/v22/Z9XVDmdJQAmWm9TwabTf6Ok.ttf" + }, + { + "family": "Jua", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/jua/v13/co3KmW9ljjAjc-DZCsKgsg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/jua/v13/co3KmW9ljjATcurd.ttf" + }, + { + "family": "Judson", + "variants": [ "regular", "italic", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v19", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/judson/v19/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf", + "regular": "http://fonts.gstatic.com/s/judson/v19/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf", + "italic": "http://fonts.gstatic.com/s/judson/v19/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/judson/v19/FeVRS0Fbvbc14VxhDrlw.ttf" + }, + { + "family": "Julee", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v25", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/julee/v25/TuGfUVB3RpZPQ6ZLodgzydtk.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/julee/v25/TuGfUVB3RpZPQ5ZKq9w.ttf" + }, + { + "family": "Julius Sans One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/juliussansone/v14/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/juliussansone/v14/1Pt2g8TAX_SGgBGUi0tGOYEga5WOxHsS.ttf" + }, + { + "family": "Junge", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/junge/v20/gokgH670Gl1lUqAdvhB7SnKm.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/junge/v20/gokgH670Gl1lUpActBQ.ttf" + }, + { + "family": "Jura", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "kayah-li", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v29", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf", + "500": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf", + "600": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf", + "700": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf", + "regular": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7ZugR_0.ttf" + }, + { + "family": "Just Another Hand", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/justanotherhand/v19/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/justanotherhand/v19/845CNN4-AJyIGvIou-6yJKyptyOpOfr-DG0.ttf" + }, + { + "family": "Just Me Again Down Here", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAtwGtKQ.ttf" + }, + { + "family": "K2D", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic" + ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v9", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0ErE6UpvrIw74NL.ttf", + "200": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erv4QJlJw85ppSGw.ttf", + "300": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er24cJlJw85ppSGw.ttf", + "500": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erg4YJlJw85ppSGw.ttf", + "600": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Err4EJlJw85ppSGw.ttf", + "700": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Ery4AJlJw85ppSGw.ttf", + "800": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er14MJlJw85ppSGw.ttf", + "100italic": "http://fonts.gstatic.com/s/k2d/v9/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf", + "200italic": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf", + "300italic": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf", + "regular": "http://fonts.gstatic.com/s/k2d/v9/J7aTnpF2V0ETd68tnLcg7w.ttf", + "italic": "http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0EjdaUpvrIw74NL.ttf", + "500italic": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf", + "600italic": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf", + "700italic": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf", + "800italic": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/k2d/v9/J7aTnpF2V0EjdqUp.ttf" + }, + { + "family": "Kadwa", + "variants": [ "regular", "700" ], + "subsets": [ "devanagari", "latin" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/kadwa/v10/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf", + "regular": "http://fonts.gstatic.com/s/kadwa/v10/rnCm-x5V0g7iphTHRcc2s2XH.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kadwa/v10/rnCm-x5V0g7ipiTGT8M.ttf" + }, + { + "family": "Kaisei Decol", + "variants": [ "regular", "500", "700" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v8", + "lastModified": "2022-09-27", + "files": { + "500": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iKr3gr00i_qb57kA.ttf", + "700": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iK534r00i_qb57kA.ttf", + "regular": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrwmSqP45sidWf3QmfFW6iyW1EP22OjoA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrwmSqP45sidWf3QmfFW6iCWlsL.ttf" + }, + { + "family": "Kaisei HarunoUmi", + "variants": [ "regular", "500", "700" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v8", + "lastModified": "2022-09-27", + "files": { + "500": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcIj_QlMcFwmC9FAU.ttf", + "700": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcInfWlMcFwmC9FAU.ttf", + "regular": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_RiZQSLqBQoAHhK_C6N_nzy_jcGsv5sM8u3mk.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_RiZQSLqBQoAHhK_C6N_nzy_jcKsrztA.ttf" + }, + { + "family": "Kaisei Opti", + "variants": [ "regular", "500", "700" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v8", + "lastModified": "2022-09-27", + "files": { + "500": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGGqxY1u7f34DYwn.ttf", + "700": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGHiw41u7f34DYwn.ttf", + "regular": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldKNThJphYb8_g6c2nlIFle7KlmxuHx.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldKNThJphYb8_g6c2nlIGlf5q0.ttf" + }, + { + "family": "Kaisei Tokumin", + "variants": [ "regular", "500", "700", "800" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v8", + "lastModified": "2022-09-27", + "files": { + "500": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnqr_3khpMIzeI6v.ttf", + "700": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnrj-XkhpMIzeI6v.ttf", + "800": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnr_-nkhpMIzeI6v.ttf", + "regular": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8sN5wdZg7xCwuMsylww2ZiQkJf1l0pj946.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8sN5wdZg7xCwuMsylww2ZiQnJe3Fk.ttf" + }, + { + "family": "Kalam", + "variants": [ "300", "regular", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf", + "700": "http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf", + "regular": "http://fonts.gstatic.com/s/kalam/v16/YA9dr0Wd4kDdMuhWMibDszkB.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kalam/v16/YA9dr0Wd4kDdMthXOCI.ttf" + }, + { + "family": "Kameron", + "variants": [ "regular", "700" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/kameron/v15/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf", + "regular": "http://fonts.gstatic.com/s/kameron/v15/vm82dR7vXErQxuznsL4wL-XIYH8.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kameron/v15/vm82dR7vXErQxuzngL86Kw.ttf" + }, + { + "family": "Kanit", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v13", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/kanit/v13/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf", + "200": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf", + "300": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf", + "500": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf", + "600": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf", + "700": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf", + "800": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf", + "900": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf", + "100italic": "http://fonts.gstatic.com/s/kanit/v13/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf", + "200italic": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf", + "300italic": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf", + "regular": "http://fonts.gstatic.com/s/kanit/v13/nKKZ-Go6G5tXcoaSEQGodLxA.ttf", + "italic": "http://fonts.gstatic.com/s/kanit/v13/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf", + "500italic": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf", + "600italic": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf", + "700italic": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf", + "800italic": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf", + "900italic": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kanit/v13/nKKZ-Go6G5tXcraTGwU.ttf" + }, + { + "family": "Kantumruy Pro", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "khmer", "latin", "latin-ext" ], + "version": "v8", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urUs0M34dR6dW.ttf", + "200": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg3urEs0M34dR6dW.ttf", + "300": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg0wrEs0M34dR6dW.ttf", + "500": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1crEs0M34dR6dW.ttf", + "600": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2wq0s0M34dR6dW.ttf", + "700": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2Jq0s0M34dR6dW.ttf", + "regular": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urEs0M34dR6dW.ttf", + "100italic": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N2OXo_QrdWlcU.ttf", + "200italic": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7yN3OXo_QrdWlcU.ttf", + "300italic": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7_13OXo_QrdWlcU.ttf", + "italic": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N3OXo_QrdWlcU.ttf", + "500italic": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim75F3OXo_QrdWlcU.ttf", + "600italic": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim731wOXo_QrdWlcU.ttf", + "700italic": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim70RwOXo_QrdWlcU.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urHs1OXo.ttf" + }, + { + "family": "Karantina", + "variants": [ "300", "regular", "700" ], + "subsets": [ "hebrew", "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxXCgf-P5Oaiw4cw.ttf", + "700": "http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxTC8f-P5Oaiw4cw.ttf", + "regular": "http://fonts.gstatic.com/s/karantina/v11/buE0po24ccnh31GVMABJ8AA78NVSYw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/karantina/v11/buE0po24ccnh31GVMAB58Qo_.ttf" + }, + { + "family": "Karla", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2023-05-02", + "files": { + "200": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqFENLR7fHGw.ttf", + "300": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqFENLR7fHGw.ttf", + "500": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqFENLR7fHGw.ttf", + "600": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qFENLR7fHGw.ttf", + "700": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qFENLR7fHGw.ttf", + "800": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qFENLR7fHGw.ttf", + "regular": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFENLR7fHGw.ttf", + "200italic": "http://fonts.gstatic.com/s/karla/v24/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCV0lPZbLXGxGR.ttf", + "300italic": "http://fonts.gstatic.com/s/karla/v24/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNkcV0lPZbLXGxGR.ttf", + "italic": "http://fonts.gstatic.com/s/karla/v24/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlCV0lPZbLXGxGR.ttf", + "500italic": "http://fonts.gstatic.com/s/karla/v24/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlwV0lPZbLXGxGR.ttf", + "600italic": "http://fonts.gstatic.com/s/karla/v24/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmcUElPZbLXGxGR.ttf", + "700italic": "http://fonts.gstatic.com/s/karla/v24/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmlUElPZbLXGxGR.ttf", + "800italic": "http://fonts.gstatic.com/s/karla/v24/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCUElPZbLXGxGR.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqaFUlP.ttf" + }, + { + "family": "Karma", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf", + "500": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf", + "600": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf", + "700": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf", + "regular": "http://fonts.gstatic.com/s/karma/v16/va9I4kzAzMZRGIBvS-J3kbDP.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/karma/v16/va9I4kzAzMZRGLBuQeY.ttf" + }, + { + "family": "Katibeh", + "variants": [ "regular" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/katibeh/v17/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/katibeh/v17/ZGjXol5MQJog4bxDWCxbUA.ttf" + }, + { + "family": "Kaushan Script", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/kaushanscript/v14/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kaushanscript/v14/vm8vdRfvXFLG3OLnsO15WYS5DG7-wNc.ttf" + }, + { + "family": "Kavivanar", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "tamil" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/kavivanar/v18/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kavivanar/v18/o-0IIpQgyXYSwhxP7_Jr4zRF.ttf" + }, + { + "family": "Kavoon", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/kavoon/v21/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kavoon/v21/pxiFyp4_scRYhlUINbD-.ttf" + }, + { + "family": "Kdam Thmor Pro", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin", "latin-ext" ], + "version": "v1", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/kdamthmorpro/v1/EJRPQgAzVdcI-Qdvt34jzurnGA7_j89I8ZWb.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kdamthmorpro/v1/EJRPQgAzVdcI-Qdvt34jzurnGD7-hcs.ttf" + }, + { + "family": "Keania One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/keaniaone/v21/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/keaniaone/v21/zOL54pXJk65E8pXardnu-cVkuw.ttf" + }, + { + "family": "Kelly Slab", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/kellyslab/v15/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kellyslab/v15/-W_7XJX0Rz3cxUnJC5t6fkILew.ttf" + }, + { + "family": "Kenia", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/kenia/v24/jizURE5PuHQH9qCONUGswfGM.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kenia/v24/jizURE5PuHQH9pCPP0U.ttf" + }, + { + "family": "Khand", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-12-08", + "files": { + "300": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf", + "500": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf", + "600": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf", + "700": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf", + "regular": "http://fonts.gstatic.com/s/khand/v17/TwMA-IINQlQQ0YpVWHU_TBqO.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/khand/v17/TwMA-IINQlQQ0bpUUnE.ttf" + }, + { + "family": "Khmer", + "variants": [ "regular" ], + "subsets": [ "khmer" ], + "version": "v25", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/khmer/v25/MjQImit_vPPwpF-BpN2EeYmD.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/khmer/v25/MjQImit_vPPwpG-Artk.ttf" + }, + { + "family": "Khula", + "variants": [ "300", "regular", "600", "700", "800" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf", + "600": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf", + "700": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf", + "800": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf", + "regular": "http://fonts.gstatic.com/s/khula/v12/OpNCnoEOns3V7FcJpA_chzJ0.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/khula/v12/OpNCnoEOns3V7GcIrgs.ttf" + }, + { + "family": "Kings", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/kings/v5/8AtnGsK4O5CYXU_Iq6GSPaHS.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kings/v5/8AtnGsK4O5CYXX_JoaU.ttf" + }, + { + "family": "Kirang Haerang", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v20", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/kiranghaerang/v20/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kiranghaerang/v20/E21-_dn_gvvIjhYON1lpIU4-bfquUvI.ttf" + }, + { + "family": "Kite One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-03-21", + "files": { + "regular": "http://fonts.gstatic.com/s/kiteone/v22/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kiteone/v22/70lQu7shLnA_E02vyp1a4n0.ttf" + }, + { + "family": "Kiwi Maru", + "variants": [ "300", "regular", "500" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-27", + "files": { + "300": "http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gNCi0Vxn9R5ShnA.ttf", + "500": "http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gbCm0Vxn9R5ShnA.ttf", + "regular": "http://fonts.gstatic.com/s/kiwimaru/v14/R70YjykGkuuDep-hRg6YmACQXzLhTg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kiwimaru/v14/R70YjykGkuuDep-hRg6omQqU.ttf" + }, + { + "family": "Klee One", + "variants": [ "regular", "600" ], + "subsets": [ + "cyrillic", + "greek-ext", + "japanese", + "latin", + "latin-ext" + ], + "version": "v7", + "lastModified": "2022-09-27", + "files": { + "600": "http://fonts.gstatic.com/s/kleeone/v7/LDI2apCLNRc6A8oT4pbYF8Osc-bGkqIw.ttf", + "regular": "http://fonts.gstatic.com/s/kleeone/v7/LDIxapCLNRc6A8oT4q4AOeekWPrP.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kleeone/v7/LDIxapCLNRc6A8oT4p4BM-M.ttf" + }, + { + "family": "Knewave", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSIhSu3_g.ttf" + }, + { + "family": "KoHo", + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf", + "300": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf", + "500": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf", + "600": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf", + "700": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf", + "200italic": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf", + "300italic": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf", + "regular": "http://fonts.gstatic.com/s/koho/v16/K2F-fZ5fmddNBikefJbSOos.ttf", + "italic": "http://fonts.gstatic.com/s/koho/v16/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf", + "500italic": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf", + "600italic": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf", + "700italic": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/koho/v16/K2F-fZ5fmddNNigUeA.ttf" + }, + { + "family": "Kodchasan", + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v17", + "lastModified": "2023-05-02", + "files": { + "200": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf", + "300": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf", + "500": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf", + "600": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf", + "700": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf", + "200italic": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf", + "300italic": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf", + "regular": "http://fonts.gstatic.com/s/kodchasan/v17/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf", + "italic": "http://fonts.gstatic.com/s/kodchasan/v17/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf", + "500italic": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf", + "600italic": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf", + "700italic": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kodchasan/v17/1cXxaUPOAJv9sG4I-DJWjnGA.ttf" + }, + { + "family": "Koh Santepheap", + "variants": [ "100", "300", "regular", "700", "900" ], + "subsets": [ "khmer", "latin" ], + "version": "v9", + "lastModified": "2022-04-26", + "files": { + "100": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMfW3p6SJbwyGj2rBZyeOrTjNuFHVyTtjNJUWU.ttf", + "300": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtNP3y5mD9ASHz5.ttf", + "700": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtdOHy5mD9ASHz5.ttf", + "900": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtlOny5mD9ASHz5.ttf", + "regular": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMdW3p6SJbwyGj2rBZyeOrTjOPhF1ixsyNJ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMdW3p6SJbwyGj2rBZyeOrTjNPgHVw.ttf" + }, + { + "family": "Kolker Brush", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/kolkerbrush/v3/iJWDBXWRZjfKWdvmzwvvog3-7KJ6x8qNUQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kolkerbrush/v3/iJWDBXWRZjfKWdvmzwvvog3O7ah-.ttf" + }, + { + "family": "Konkhmer Sleokchher", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin", "latin-ext" ], + "version": "v2", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/konkhmersleokchher/v2/_Xmw-GE-rjmabA_M-aPOZOsCrUv825LFI3507E0d-W0.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/konkhmersleokchher/v2/_Xmw-GE-rjmabA_M-aPOZOsCrUv825LFE39-6A.ttf" + }, + { + "family": "Kosugi", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/kosugi/v15/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kosugi/v15/pxiFyp4_v8FCjlIINbD-.ttf" + }, + { + "family": "Kosugi Maru", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/kosugimaru/v14/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kosugimaru/v14/0nksC9PgP_wGh21A2KeqGhTrgP4.ttf" + }, + { + "family": "Kotta One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWq_HQfo.ttf" + }, + { + "family": "Koulen", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin" ], + "version": "v25", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/koulen/v25/AMOQz46as3KIBPeWgnA9kuYMUg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/koulen/v25/AMOQz46as3KIBPemg3o5.ttf" + }, + { + "family": "Kranky", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/kranky/v24/hESw6XVgJzlPsFnMpheEZo_H_w.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kranky/v24/hESw6XVgJzlPsFn8px2A.ttf" + }, + { + "family": "Kreon", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v37", + "lastModified": "2023-03-21", + "files": { + "300": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf", + "500": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf", + "600": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf", + "700": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf", + "regular": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtiWez8b.ttf" + }, + { + "family": "Kristi", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/kristi/v17/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kristi/v17/uK_y4ricdeU6zwdhCxcX.ttf" + }, + { + "family": "Krona One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUyMIWl.ttf" + }, + { + "family": "Krub", + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v9", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf", + "300": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf", + "500": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf", + "600": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf", + "700": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf", + "200italic": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf", + "300italic": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf", + "regular": "http://fonts.gstatic.com/s/krub/v9/sZlLdRyC6CRYXkYQDLlTW6E.ttf", + "italic": "http://fonts.gstatic.com/s/krub/v9/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf", + "500italic": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf", + "600italic": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf", + "700italic": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/krub/v9/sZlLdRyC6CRYbkcaCA.ttf" + }, + { + "family": "Kufam", + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3pKk7qQCJHvIwYg.ttf", + "600": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3SK47qQCJHvIwYg.ttf", + "700": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3ca47qQCJHvIwYg.ttf", + "800": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3Fq47qQCJHvIwYg.ttf", + "900": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3P647qQCJHvIwYg.ttf", + "regular": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqk7qQCJHvIwYg.ttf", + "italic": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurT6gqNPPcgYp0i.ttf", + "500italic": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurh6gqNPPcgYp0i.ttf", + "600italic": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuoN7QqNPPcgYp0i.ttf", + "700italic": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuo07QqNPPcgYp0i.ttf", + "800italic": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXupT7QqNPPcgYp0i.ttf", + "900italic": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXup67QqNPPcgYp0i.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqkLqAqN.ttf" + }, + { + "family": "Kulim Park", + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjJYNwa5aZbUvGjU.ttf", + "300": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjPIOwa5aZbUvGjU.ttf", + "600": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjIYIwa5aZbUvGjU.ttf", + "700": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjOIJwa5aZbUvGjU.ttf", + "200italic": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUKa9QYZcqCjVVUA.ttf", + "300italic": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUTaxQYZcqCjVVUA.ttf", + "regular": "http://fonts.gstatic.com/s/kulimpark/v14/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf", + "italic": "http://fonts.gstatic.com/s/kulimpark/v14/fdN59secq3hflz1Uu3IwhFws4YR0abw2Aw.ttf", + "600italic": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUOapQYZcqCjVVUA.ttf", + "700italic": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUXatQYZcqCjVVUA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kulimpark/v14/fdN79secq3hflz1Uu3IwhF8s4Q.ttf" + }, + { + "family": "Kumar One", + "variants": [ "regular" ], + "subsets": [ "gujarati", "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/kumarone/v18/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kumarone/v18/bMr1mS-P958wYi6YaGe2NeSS.ttf" + }, + { + "family": "Kumar One Outline", + "variants": [ "regular" ], + "subsets": [ "gujarati", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9wDxTw8.ttf" + }, + { + "family": "Kumbh Sans", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "math" ], + "version": "v20", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZcA8bTuUkqaLg.ttf", + "200": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZYA8bTuUkqaLg.ttf", + "300": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQz5YA8bTuUkqaLg.ttf", + "500": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQo5YA8bTuUkqaLg.ttf", + "600": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQT5EA8bTuUkqaLg.ttf", + "700": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQdpEA8bTuUkqaLg.ttf", + "800": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZEA8bTuUkqaLg.ttf", + "900": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQOJEA8bTuUkqaLg.ttf", + "regular": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZYA8bTuUkqaLg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZYw8L7q.ttf" + }, + { + "family": "Kurale", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "devanagari", + "latin", + "latin-ext" + ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/kurale/v11/4iCs6KV9e9dXjho6eAT3v02QFg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/kurale/v11/4iCs6KV9e9dXjhoKeQ7z.ttf" + }, + { + "family": "La Belle Aurore", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/labelleaurore/v16/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/labelleaurore/v16/RrQIbot8-mNYKnGNDkWlocovHeI4Gu2B.ttf" + }, + { + "family": "Labrada", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2023-03-09", + "files": { + "100": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSgM4QPdUej17.ttf", + "200": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTSwM4QPdUej17.ttf", + "300": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9UNSwM4QPdUej17.ttf", + "500": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VhSwM4QPdUej17.ttf", + "600": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9WNTAM4QPdUej17.ttf", + "700": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9W0TAM4QPdUej17.ttf", + "800": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTTAM4QPdUej17.ttf", + "900": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9X6TAM4QPdUej17.ttf", + "regular": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSwM4QPdUej17.ttf", + "100italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt6SvN2fy17-dE.ttf", + "200italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt7SvN2fy17-dE.ttf", + "300italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCLV7SvN2fy17-dE.ttf", + "italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt7SvN2fy17-dE.ttf", + "500italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCNl7SvN2fy17-dE.ttf", + "600italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCDV8SvN2fy17-dE.ttf", + "700italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCAx8SvN2fy17-dE.ttf", + "800italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt8SvN2fy17-dE.ttf", + "900italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCEJ8SvN2fy17-dE.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSzM5SvM.ttf" + }, + { + "family": "Lacquer", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/lacquer/v15/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lacquer/v15/EYqzma1QwqpG4_BBN76KWg.ttf" + }, + { + "family": "Laila", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf", + "500": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf", + "600": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf", + "700": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf", + "regular": "http://fonts.gstatic.com/s/laila/v13/LYjMdG_8nE8jDIRdiidIrEIu.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/laila/v13/LYjMdG_8nE8jDLRcgCM.ttf" + }, + { + "family": "Lakki Reddy", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/lakkireddy/v19/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lakkireddy/v19/S6u5w49MUSzD9jlCPmvLZTfpzd0.ttf" + }, + { + "family": "Lalezar", + "variants": [ "regular" ], + "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/lalezar/v14/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lalezar/v14/zrfl0HLVx-HwTP82YaH4Jg.ttf" + }, + { + "family": "Lancelot", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/lancelot/v23/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lancelot/v23/J7acnppxBGtQEulG4KY5zps.ttf" + }, + { + "family": "Langar", + "variants": [ "regular" ], + "subsets": [ "gurmukhi", "latin", "latin-ext" ], + "version": "v27", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/langar/v27/kJEyBukW7AIlgjGVrTVZ99sqrQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/langar/v27/kJEyBukW7AIlgjGlrD9d.ttf" + }, + { + "family": "Lateef", + "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v27", + "lastModified": "2022-11-09", + "files": { + "200": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0bjygbqTb9nQ-RA.ttf", + "300": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0Cj-gbqTb9nQ-RA.ttf", + "500": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0Uj6gbqTb9nQ-RA.ttf", + "600": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0fjmgbqTb9nQ-RA.ttf", + "700": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0GjigbqTb9nQ-RA.ttf", + "800": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0BjugbqTb9nQ-RA.ttf", + "regular": "http://fonts.gstatic.com/s/lateef/v27/hESw6XVnNCxEvkbMpheEZo_H_w.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lateef/v27/hESw6XVnNCxEvkb8px2A.ttf" + }, + { + "family": "Lato", + "variants": [ + "100", + "100italic", + "300", + "300italic", + "regular", + "italic", + "700", + "700italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf", + "300": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf", + "700": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf", + "900": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf", + "100italic": "http://fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf", + "300italic": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf", + "regular": "http://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf", + "italic": "http://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf", + "700italic": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf", + "900italic": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxgwWw.ttf" + }, + { + "family": "Lavishly Yours", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/lavishlyyours/v2/jizDREVIvGwH5OjiZmX9r5z_WxUY0TY7ikbI.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lavishlyyours/v2/jizDREVIvGwH5OjiZmX9r5z_WyUZ2zI.ttf" + }, + { + "family": "League Gothic", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v6", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/leaguegothic/v6/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_-amidQ6Q9hn.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/leaguegothic/v6/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_9ang9A.ttf" + }, + { + "family": "League Script", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/leaguescript/v24/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/leaguescript/v24/CSR54zpSlumSWj9CGVsoBZdeWNJevA.ttf" + }, + { + "family": "League Spartan", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v11", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpBMdcFguczA.ttf", + "200": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpBMdcFguczA.ttf", + "300": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpBMdcFguczA.ttf", + "500": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpBMdcFguczA.ttf", + "600": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpBMdcFguczA.ttf", + "700": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpBMdcFguczA.ttf", + "800": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpBMdcFguczA.ttf", + "900": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpBMdcFguczA.ttf", + "regular": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpBMdcFguczA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTZBc1Y.ttf" + }, + { + "family": "Leckerli One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/leckerlione/v16/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/leckerlione/v16/V8mCoQH8VCsNttEnxnGQ-1idLJZY.ttf" + }, + { + "family": "Ledger", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sBmsr0.ttf" + }, + { + "family": "Lekton", + "variants": [ "regular", "italic", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/lekton/v17/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf", + "regular": "http://fonts.gstatic.com/s/lekton/v17/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf", + "italic": "http://fonts.gstatic.com/s/lekton/v17/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lekton/v17/SZc43FDmLaWmWpBuXh3s.ttf" + }, + { + "family": "Lemon", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-04-04", + "files": { + "regular": "http://fonts.gstatic.com/s/lemon/v15/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lemon/v15/HI_EiYEVKqRMq3jAQ5E.ttf" + }, + { + "family": "Lemonada", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], + "version": "v26", + "lastModified": "2023-03-21", + "files": { + "300": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2mfWc3Z2pTg.ttf", + "500": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2mfWc3Z2pTg.ttf", + "600": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2mfWc3Z2pTg.ttf", + "700": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2mfWc3Z2pTg.ttf", + "regular": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2mfWc3Z2pTg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeutGmP-Y.ttf" + }, + { + "family": "Lexend", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsX_LBte6KuGEo.ttf", + "200": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sW_LBte6KuGEo.ttf", + "300": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", + "500": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", + "600": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", + "700": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LBte6KuGEo.ttf", + "800": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf", + "900": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC5IR_LBte6KuGEo.ttf", + "regular": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LBte6KuGEo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsWzLFnfw.ttf" + }, + { + "family": "Lexend Deca", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v21", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48MxArBPCqLNflg.ttf", + "200": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cM1ArBPCqLNflg.ttf", + "300": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4rs1ArBPCqLNflg.ttf", + "500": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1ArBPCqLNflg.ttf", + "600": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4LspArBPCqLNflg.ttf", + "700": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4F8pArBPCqLNflg.ttf", + "800": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cMpArBPCqLNflg.ttf", + "900": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4WcpArBPCqLNflg.ttf", + "regular": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1ArBPCqLNflg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1wrRnG.ttf" + }, + { + "family": "Lexend Exa", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v30", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", + "200": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", + "300": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", + "500": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", + "600": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", + "700": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", + "800": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", + "900": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", + "regular": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TpbGFps.ttf" + }, + { + "family": "Lexend Giga", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v24", + "lastModified": "2023-01-06", + "files": { + "100": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LmE68oo6eepYQ.ttf", + "200": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWLiE68oo6eepYQ.ttf", + "300": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRChriE68oo6eepYQ.ttf", + "500": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC6riE68oo6eepYQ.ttf", + "600": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCBr-E68oo6eepYQ.ttf", + "700": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCP7-E68oo6eepYQ.ttf", + "800": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWL-E68oo6eepYQ.ttf", + "900": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCcb-E68oo6eepYQ.ttf", + "regular": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LiE68oo6eepYQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2Li06sAs.ttf" + }, + { + "family": "Lexend Mega", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v24", + "lastModified": "2023-01-06", + "files": { + "100": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fivveyiq9EqQw.ttf", + "200": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcfmvveyiq9EqQw.ttf", + "300": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLr_mvveyiq9EqQw.ttf", + "500": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLw_mvveyiq9EqQw.ttf", + "600": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLL_6vveyiq9EqQw.ttf", + "700": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLFv6vveyiq9EqQw.ttf", + "800": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vveyiq9EqQw.ttf", + "900": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLWP6vveyiq9EqQw.ttf", + "regular": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmvveyiq9EqQw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmfvOam.ttf" + }, + { + "family": "Lexend Peta", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v27", + "lastModified": "2023-03-09", + "files": { + "100": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SFyW1YuRTsnfw.ttf", + "200": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSByW1YuRTsnfw.ttf", + "300": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRtyByW1YuRTsnfw.ttf", + "500": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR2yByW1YuRTsnfw.ttf", + "600": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRNydyW1YuRTsnfw.ttf", + "700": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRDidyW1YuRTsnfw.ttf", + "800": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSdyW1YuRTsnfw.ttf", + "900": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRQCdyW1YuRTsnfw.ttf", + "regular": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SByW1YuRTsnfw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SBCWlwq.ttf" + }, + { + "family": "Lexend Tera", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v27", + "lastModified": "2023-03-09", + "files": { + "100": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zITdpz0fYxcrQ.ttf", + "200": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzMTdpz0fYxcrQ.ttf", + "300": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMuTMTdpz0fYxcrQ.ttf", + "500": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM1TMTdpz0fYxcrQ.ttf", + "600": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMOTQTdpz0fYxcrQ.ttf", + "700": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMADQTdpz0fYxcrQ.ttf", + "800": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzQTdpz0fYxcrQ.ttf", + "900": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMTjQTdpz0fYxcrQ.ttf", + "regular": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMTdpz0fYxcrQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMjd5bw.ttf" + }, + { + "family": "Lexend Zetta", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v28", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bH0z5jbs8qbts.ttf", + "200": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bG0z5jbs8qbts.ttf", + "300": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0z5jbs8qbts.ttf", + "500": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy-TG0z5jbs8qbts.ttf", + "600": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCywjB0z5jbs8qbts.ttf", + "700": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCyzHB0z5jbs8qbts.ttf", + "800": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf", + "900": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy3_B0z5jbs8qbts.ttf", + "regular": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG0z5jbs8qbts.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG4z9pag.ttf" + }, + { + "family": "Libre Barcode 128", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v26", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/librebarcode128/v26/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/librebarcode128/v26/cIfnMbdUsUoiW3O_hVviCwVjuLtXeK_B9Ac.ttf" + }, + { + "family": "Libre Barcode 128 Text", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v26", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/librebarcode128text/v26/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/librebarcode128text/v26/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5QVzS7A.ttf" + }, + { + "family": "Libre Barcode 39", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/librebarcode39/v19/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/librebarcode39/v19/-nFnOHM08vwC6h8Li1eQnP_AHzI2G_Zx1w.ttf" + }, + { + "family": "Libre Barcode 39 Extended", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v25", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/librebarcode39extended/v25/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/librebarcode39extended/v25/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgTNVIPQ.ttf" + }, + { + "family": "Libre Barcode 39 Extended Text", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v25", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/librebarcode39extendedtext/v25/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/librebarcode39extendedtext/v25/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP6Mfbgm.ttf" + }, + { + "family": "Libre Barcode 39 Text", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v26", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/librebarcode39text/v26/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/librebarcode39text/v26/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-0H1B5P.ttf" + }, + { + "family": "Libre Barcode EAN13 Text", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/librebarcodeean13text/v19/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/librebarcodeean13text/v19/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96_AWsg.ttf" + }, + { + "family": "Libre Baskerville", + "variants": [ "regular", "italic", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf", + "regular": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf", + "italic": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0qNfaxY.ttf" + }, + { + "family": "Libre Bodoni", + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2023-03-21", + "files": { + "500": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6L9fwWzZcOb3U3s.ttf", + "600": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6FNYwWzZcOb3U3s.ttf", + "700": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6GpYwWzZcOb3U3s.ttf", + "regular": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6I1fwWzZcOb3U3s.ttf", + "italic": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcKS_TdMTyQ3syLg.ttf", + "500italic": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcGy_TdMTyQ3syLg.ttf", + "600italic": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUc9yjTdMTyQ3syLg.ttf", + "700italic": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUczijTdMTyQ3syLg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6I1f8W3TdA.ttf" + }, + { + "family": "Libre Caslon Display", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/librecaslondisplay/v14/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/librecaslondisplay/v14/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr1lQfxw.ttf" + }, + { + "family": "Libre Caslon Text", + "variants": [ "regular", "italic", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v5", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf", + "regular": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf", + "italic": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT878IGsGw1aF1JU10PUbTvNNaDMfq-1-c.ttf" + }, + { + "family": "Libre Franklin", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsSUB9rIb-JH1g.ttf", + "200": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsWUB9rIb-JH1g.ttf", + "300": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWUB9rIb-JH1g.ttf", + "500": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWUB9rIb-JH1g.ttf", + "600": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKUB9rIb-JH1g.ttf", + "700": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKUB9rIb-JH1g.ttf", + "800": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKUB9rIb-JH1g.ttf", + "900": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KUB9rIb-JH1g.ttf", + "regular": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWUB9rIb-JH1g.ttf", + "100italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RdDMTedX1sGE.ttf", + "200italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8RNDMTedX1sGE.ttf", + "300italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oYiRNDMTedX1sGE.ttf", + "italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RNDMTedX1sGE.ttf", + "500italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZORNDMTedX1sGE.ttf", + "600italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oaiQ9DMTedX1sGE.ttf", + "700italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oabQ9DMTedX1sGE.ttf", + "800italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8Q9DMTedX1sGE.ttf", + "900italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05obVQ9DMTedX1sGE.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWkBtDM.ttf" + }, + { + "family": "Licorice", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/licorice/v3/t5tjIR8TMomTCAyjNk23hqLgzCHu.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/licorice/v3/t5tjIR8TMomTCAyjNn22jKY.ttf" + }, + { + "family": "Life Savers", + "variants": [ "regular", "700", "800" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf", + "800": "http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf", + "regular": "http://fonts.gstatic.com/s/lifesavers/v18/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lifesavers/v18/ZXuie1UftKKabUQMgxAal8lqHA4.ttf" + }, + { + "family": "Lilita One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/lilitaone/v13/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lilitaone/v13/i7dPIFZ9Zz-WBtRtedDbYEd8QA.ttf" + }, + { + "family": "Lily Script One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLSIg86n.ttf" + }, + { + "family": "Limelight", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/limelight/v17/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/limelight/v17/XLYkIZL7aopJVbZJHDuoPOlC.ttf" + }, + { + "family": "Linden Hill", + "variants": [ "regular", "italic" ], + "subsets": [ "latin" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/lindenhill/v22/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf", + "italic": "http://fonts.gstatic.com/s/lindenhill/v22/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lindenhill/v22/-F61fjxoKSg9Yc3hZgO8yjFJ5ig.ttf" + }, + { + "family": "Literata", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v34", + "lastModified": "2023-03-21", + "files": { + "200": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG_F_bcTWCWp8g.ttf", + "300": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbE-_F_bcTWCWp8g.ttf", + "500": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbCO_F_bcTWCWp8g.ttf", + "600": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbM-4F_bcTWCWp8g.ttf", + "700": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbPa4F_bcTWCWp8g.ttf", + "800": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG4F_bcTWCWp8g.ttf", + "900": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbLi4F_bcTWCWp8g.ttf", + "regular": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_F_bcTWCWp8g.ttf", + "200italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7XWSUKTt8iVow.ttf", + "300italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8obXWSUKTt8iVow.ttf", + "italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8_7XWSUKTt8iVow.ttf", + "500italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8zbXWSUKTt8iVow.ttf", + "600italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8IbLWSUKTt8iVow.ttf", + "700italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8GLLWSUKTt8iVow.ttf", + "800italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7LWSUKTt8iVow.ttf", + "900italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8VrLWSUKTt8iVow.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_J_fWSQ.ttf" + }, + { + "family": "Liu Jian Mao Cao", + "variants": [ "regular" ], + "subsets": [ "chinese-simplified", "latin" ], + "version": "v15", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/liujianmaocao/v15/~ChIKEExpdSBKaWFuIE1hbyBDYW8gACoECAEYAQ==.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/liujianmaocao/v15/~ChIKEExpdSBKaWFuIE1hbyBDYW8QASAA.ttf" + }, + { + "family": "Livvic", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf", + "200": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf", + "300": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf", + "500": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf", + "600": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf", + "700": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf", + "900": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf", + "100italic": "http://fonts.gstatic.com/s/livvic/v14/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf", + "200italic": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf", + "300italic": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf", + "regular": "http://fonts.gstatic.com/s/livvic/v14/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf", + "italic": "http://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf", + "500italic": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf", + "600italic": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf", + "700italic": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf", + "900italic": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/livvic/v14/rnCp-x1S2hzjrlfXbuM-.ttf" + }, + { + "family": "Lobster", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v28", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/lobster/v28/neILzCirqoswsqX9_oWsMqEzSJQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lobster/v28/neILzCirqoswsqX9zoSmNg.ttf" + }, + { + "family": "Lobster Two", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/lobstertwo/v18/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf", + "regular": "http://fonts.gstatic.com/s/lobstertwo/v18/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf", + "italic": "http://fonts.gstatic.com/s/lobstertwo/v18/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf", + "700italic": "http://fonts.gstatic.com/s/lobstertwo/v18/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lobstertwo/v18/BngMUXZGTXPUvIoyV6yN5-fL5qA.ttf" + }, + { + "family": "Londrina Outline", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v23", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/londrinaoutline/v23/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/londrinaoutline/v23/C8c44dM8vmb14dfsZxhetg3pDH-STus7qQ.ttf" + }, + { + "family": "Londrina Shadow", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/londrinashadow/v22/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/londrinashadow/v22/oPWX_kB4kOQoWNJmjxLV5JuoCUlnR1yW.ttf" + }, + { + "family": "Londrina Sketch", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/londrinasketch/v21/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/londrinasketch/v21/c4m41npxGMTnomOHtRU68eIJn8qvWGP9.ttf" + }, + { + "family": "Londrina Solid", + "variants": [ "100", "300", "regular", "900" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/londrinasolid/v15/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf", + "300": "http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf", + "900": "http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf", + "regular": "http://fonts.gstatic.com/s/londrinasolid/v15/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/londrinasolid/v15/flUhRq6sw40kQEJxWNgkLuudGfNYKBY.ttf" + }, + { + "family": "Long Cang", + "variants": [ "regular" ], + "subsets": [ "chinese-simplified", "latin" ], + "version": "v17", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/longcang/v17/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/longcang/v17/LYjAdGP8kkgoTec8zkRQrHov.ttf" + }, + { + "family": "Lora", + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v32", + "lastModified": "2023-02-22", + "files": { + "500": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJGmKxemMeZ.ttf", + "600": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJGmKxemMeZ.ttf", + "700": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJGmKxemMeZ.ttf", + "regular": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuyJGmKxemMeZ.ttf", + "italic": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqh8ndeZzZ0.ttf", + "500italic": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqh8ndeZzZ0.ttf", + "600italic": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqh8ndeZzZ0.ttf", + "700italic": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqh8ndeZzZ0.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuxJHkqg.ttf" + }, + { + "family": "Love Light", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/lovelight/v3/t5tlIR0TNJyZWimpNAXDjKbCyTHuspo.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lovelight/v3/t5tlIR0TNJyZWimpNAXDvKfIzQ.ttf" + }, + { + "family": "Love Ya Like A Sister", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/loveyalikeasister/v16/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/loveyalikeasister/v16/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-BeL83xY.ttf" + }, + { + "family": "Loved by the King", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/lovedbytheking/v17/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lovedbytheking/v17/Gw6gwdP76VDVJNXerebZxUMeRXUF2MiMn3U.ttf" + }, + { + "family": "Lovers Quarrel", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/loversquarrel/v21/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/loversquarrel/v21/Yq6N-LSKXTL-5bCy8ksBzpQ_-wAtab4.ttf" + }, + { + "family": "Luckiest Guy", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/luckiestguy/v18/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/luckiestguy/v18/_gP_1RrxsjcxVyin9l9n_j2hS95z.ttf" + }, + { + "family": "Lusitana", + "variants": [ "regular", "700" ], + "subsets": [ "latin" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/lusitana/v13/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf", + "regular": "http://fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKyhbTOc.ttf" + }, + { + "family": "Lustria", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOnCkzNg.ttf" + }, + { + "family": "Luxurious Roman", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v4", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/luxuriousroman/v4/buEupou_ZcP1w0yTKxJJokVSmbpqYgckeo9RMw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/luxuriousroman/v4/buEupou_ZcP1w0yTKxJJokVSmbpaYw0g.ttf" + }, + { + "family": "Luxurious Script", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/luxuriousscript/v5/ahcCv9e7yydulT32KZ0rBIoD7DzMg0rOby1JtYk.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/luxuriousscript/v5/ahcCv9e7yydulT32KZ0rBIoD7DzMs0vEaw.ttf" + }, + { + "family": "M PLUS 1", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "japanese", "latin", "latin-ext", "vietnamese" ], + "version": "v6", + "lastModified": "2022-09-27", + "files": { + "100": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSe78nZcsGGycA.ttf", + "200": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51Sa78nZcsGGycA.ttf", + "300": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Cya78nZcsGGycA.ttf", + "500": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Zya78nZcsGGycA.ttf", + "600": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5iyG78nZcsGGycA.ttf", + "700": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5siG78nZcsGGycA.ttf", + "800": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51SG78nZcsGGycA.ttf", + "900": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5_CG78nZcsGGycA.ttf", + "regular": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSa78nZcsGGycA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSaL83xY.ttf" + }, + { + "family": "M PLUS 1 Code", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "japanese", "latin", "latin-ext", "vietnamese" ], + "version": "v7", + "lastModified": "2022-09-27", + "files": { + "100": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0XHpapwmdZhY.ttf", + "200": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7gN0HHpapwmdZhY.ttf", + "300": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7jT0HHpapwmdZhY.ttf", + "500": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7i_0HHpapwmdZhY.ttf", + "600": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hT13HpapwmdZhY.ttf", + "700": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hq13HpapwmdZhY.ttf", + "regular": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0HHpapwmdZhY.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0EHoYJg.ttf" + }, + { + "family": "M PLUS 1p", + "variants": [ "100", "300", "regular", "500", "700", "800", "900" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "hebrew", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v28", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/mplus1p/v28/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf", + "300": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf", + "500": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf", + "700": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf", + "800": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf", + "900": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf", + "regular": "http://fonts.gstatic.com/s/mplus1p/v28/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mplus1p/v28/e3tjeuShHdiFyPFzBRrY-TQA.ttf" + }, + { + "family": "M PLUS 2", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "japanese", "latin", "latin-ext", "vietnamese" ], + "version": "v6", + "lastModified": "2022-09-27", + "files": { + "100": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa-VxlqHrzNgAw.ttf", + "200": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwua6VxlqHrzNgAw.ttf", + "300": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwZ66VxlqHrzNgAw.ttf", + "500": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwC66VxlqHrzNgAw.ttf", + "600": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw56mVxlqHrzNgAw.ttf", + "700": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw3qmVxlqHrzNgAw.ttf", + "800": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwuamVxlqHrzNgAw.ttf", + "900": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwkKmVxlqHrzNgAw.ttf", + "regular": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6VxlqHrzNgAw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6lx1CD.ttf" + }, + { + "family": "M PLUS Code Latin", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v11", + "lastModified": "2023-03-09", + "files": { + "100": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbB6i5MqF9TRwg.ttf", + "200": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1MbA6i5MqF9TRwg.ttf", + "300": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1BjA6i5MqF9TRwg.ttf", + "500": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1HTA6i5MqF9TRwg.ttf", + "600": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1JjH6i5MqF9TRwg.ttf", + "700": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1KHH6i5MqF9TRwg.ttf", + "regular": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA6i5MqF9TRwg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA2i9GrA.ttf" + }, + { + "family": "M PLUS Rounded 1c", + "variants": [ "100", "300", "regular", "500", "700", "800", "900" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "hebrew", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v15", + "lastModified": "2022-09-27", + "files": { + "100": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf", + "300": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf", + "500": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf", + "700": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf", + "800": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf", + "900": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf", + "regular": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGEAYIAV6gnpUpoWwNkYvrugw9RuMWHxLs.ttf" + }, + { + "family": "Ma Shan Zheng", + "variants": [ "regular" ], + "subsets": [ "chinese-simplified", "latin" ], + "version": "v10", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/mashanzheng/v10/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mashanzheng/v10/NaPecZTRCLxvwo41b4gvzkXadMXmCA.ttf" + }, + { + "family": "Macondo", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/macondo/v21/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/macondo/v21/RrQQboN9-iB1IXmOe2TE1A.ttf" + }, + { + "family": "Macondo Swash Caps", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/macondoswashcaps/v20/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/macondoswashcaps/v20/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6-e0Ae.ttf" + }, + { + "family": "Mada", + "variants": [ "200", "300", "regular", "500", "600", "700", "900" ], + "subsets": [ "arabic", "latin" ], + "version": "v18", + "lastModified": "2022-12-08", + "files": { + "200": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdf3nCCL8zkwMIFg.ttf", + "300": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdZnkCCL8zkwMIFg.ttf", + "500": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdcHlCCL8zkwMIFg.ttf", + "600": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSde3iCCL8zkwMIFg.ttf", + "700": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdYnjCCL8zkwMIFg.ttf", + "900": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdbHhCCL8zkwMIFg.ttf", + "regular": "http://fonts.gstatic.com/s/mada/v18/7Auwp_0qnzeSTTXMLCrX0kU.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mada/v18/7Auwp_0qnzeSfTTGKA.ttf" + }, + { + "family": "Magra", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/magra/v14/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf", + "regular": "http://fonts.gstatic.com/s/magra/v14/uK_94ruaZus72k5xIDMfO-ed.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/magra/v14/uK_94ruaZus72n5wKjc.ttf" + }, + { + "family": "Maiden Orange", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v25", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/maidenorange/v25/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/maidenorange/v25/kJE1BuIX7AUmhi2V4m08kb1XvOdXDQ.ttf" + }, + { + "family": "Maitree", + "variants": [ "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf", + "300": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf", + "500": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf", + "600": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf", + "700": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf", + "regular": "http://fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkntiseA.ttf" + }, + { + "family": "Major Mono Display", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v13", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/majormonodisplay/v13/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/majormonodisplay/v13/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRh7C3eU.ttf" + }, + { + "family": "Mako", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/mako/v18/H4coBX6Mmc_Z0ST09g478Lo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mako/v18/H4coBX6Mmc_Z4SX-8g.ttf" + }, + { + "family": "Mali", + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v10", + "lastModified": "2023-05-02", + "files": { + "200": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf", + "300": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf", + "500": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf", + "600": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf", + "700": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf", + "200italic": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf", + "300italic": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf", + "regular": "http://fonts.gstatic.com/s/mali/v10/N0ba2SRONuN4eCrODlxxOd8.ttf", + "italic": "http://fonts.gstatic.com/s/mali/v10/N0bU2SRONuN4SCjECn50Kd_PmA.ttf", + "500italic": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf", + "600italic": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf", + "700italic": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mali/v10/N0ba2SRONuN4SCvECg.ttf" + }, + { + "family": "Mallanna", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v13", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/mallanna/v13/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mallanna/v13/hv-Vlzx-KEQb84YaDFwyGTA.ttf" + }, + { + "family": "Mandali", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v14", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/mandali/v14/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mandali/v14/LhWlMVbYOfASNfNUZFg_YA.ttf" + }, + { + "family": "Manjari", + "variants": [ "100", "regular", "700" ], + "subsets": [ "latin", "latin-ext", "malayalam" ], + "version": "v9", + "lastModified": "2022-04-26", + "files": { + "100": "http://fonts.gstatic.com/s/manjari/v9/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf", + "700": "http://fonts.gstatic.com/s/manjari/v9/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf", + "regular": "http://fonts.gstatic.com/s/manjari/v9/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/manjari/v9/k3kQo8UPMOBO2w1Ufd_oKw.ttf" + }, + { + "family": "Manrope", + "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "200": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.ttf", + "300": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F87jxeN7B.ttf", + "500": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf", + "600": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf", + "700": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf", + "800": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf", + "regular": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F87jxeN7B.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FN_E-bw.ttf" + }, + { + "family": "Mansalva", + "variants": [ "regular" ], + "subsets": [ "greek", "latin", "latin-ext", "vietnamese" ], + "version": "v12", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/mansalva/v12/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mansalva/v12/aWB4m0aacbtDfvq5NKlkKYo.ttf" + }, + { + "family": "Manuale", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "800", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v28", + "lastModified": "2023-03-21", + "files": { + "300": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeG6e7wD1TB_JHHY.ttf", + "500": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wD1TB_JHHY.ttf", + "600": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwD1TB_JHHY.ttf", + "700": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwD1TB_JHHY.ttf", + "800": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeFkfLwD1TB_JHHY.ttf", + "regular": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wD1TB_JHHY.ttf", + "300italic": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOApA3zRdIWHYr8M.ttf", + "italic": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zRdIWHYr8M.ttf", + "500italic": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zRdIWHYr8M.ttf", + "600italic": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zRdIWHYr8M.ttf", + "700italic": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zRdIWHYr8M.ttf", + "800italic": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsONRH3zRdIWHYr8M.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke4wC3zQ.ttf" + }, + { + "family": "Marcellus", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF81UPoP.ttf" + }, + { + "family": "Marcellus SC", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLE_gNaZ.ttf" + }, + { + "family": "Marck Script", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/marckscript/v17/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/marckscript/v17/nwpTtK2oNgBA3Or78gapdwuyzig6.ttf" + }, + { + "family": "Margarine", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/margarine/v22/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/margarine/v22/qkBXXvoE6trLT9Y7YLyu5Z5P.ttf" + }, + { + "family": "Marhey", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v4", + "lastModified": "2023-03-09", + "files": { + "300": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBZVwO2cXiGevOMw.ttf", + "500": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBflwO2cXiGevOMw.ttf", + "600": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBRV3O2cXiGevOMw.ttf", + "700": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBSx3O2cXiGevOMw.ttf", + "regular": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBctwO2cXiGevOMw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBctwC2YdjA.ttf" + }, + { + "family": "Markazi Text", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf", + "600": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf", + "700": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf", + "regular": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQf4IvAQ.ttf" + }, + { + "family": "Marko One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v22", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/markoone/v22/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/markoone/v22/9Btq3DFG0cnVM5lw1haqK58b.ttf" + }, + { + "family": "Marmelad", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/marmelad/v18/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/marmelad/v18/Qw3eZQdSHj_jK2e-8uFKEeI.ttf" + }, + { + "family": "Martel", + "variants": [ "200", "300", "regular", "600", "700", "800", "900" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf", + "300": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf", + "600": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf", + "700": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf", + "800": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf", + "900": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf", + "regular": "http://fonts.gstatic.com/s/martel/v10/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/martel/v10/PN_xRfK9oXHga0XdYMg6.ttf" + }, + { + "family": "Martel Sans", + "variants": [ "200", "300", "regular", "600", "700", "800", "900" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf", + "300": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf", + "600": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf", + "700": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf", + "800": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf", + "900": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf", + "regular": "http://fonts.gstatic.com/s/martelsans/v12/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/martelsans/v12/h0GsssGi7VdzDgKjM-4d8hjex-s.ttf" + }, + { + "family": "Martian Mono", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v3", + "lastModified": "2023-02-23", + "files": { + "100": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qus6WD75kdpF2.ttf", + "200": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qu86WD75kdpF2.ttf", + "300": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY00u86WD75kdpF2.ttf", + "500": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1Yu86WD75kdpF2.ttf", + "600": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY20vM6WD75kdpF2.ttf", + "700": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY2NvM6WD75kdpF2.ttf", + "800": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qvM6WD75kdpF2.ttf", + "regular": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qu86WD75kdpF2.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qu_6XBbo.ttf" + }, + { + "family": "Marvel", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/marvel/v14/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf", + "regular": "http://fonts.gstatic.com/s/marvel/v14/nwpVtKeoNgBV0qaIkV7ED366zg.ttf", + "italic": "http://fonts.gstatic.com/s/marvel/v14/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf", + "700italic": "http://fonts.gstatic.com/s/marvel/v14/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/marvel/v14/nwpVtKeoNgBV0qa4kFTA.ttf" + }, + { + "family": "Mate", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-04-04", + "files": { + "regular": "http://fonts.gstatic.com/s/mate/v15/m8JdjftRd7WZ2z28WoXSaLU.ttf", + "italic": "http://fonts.gstatic.com/s/mate/v15/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mate/v15/m8JdjftRd7WZ6zy2Xg.ttf" + }, + { + "family": "Mate SC", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/matesc/v22/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/matesc/v22/-nF8OGQ1-uoVr2wK-iTT8w.ttf" + }, + { + "family": "Material Icons", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v140", + "lastModified": "2023-03-08", + "files": { + "regular": "http://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNZIhI8tIHh.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDvNYKBY.ttf" + }, + { + "family": "Material Icons Outlined", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v109", + "lastModified": "2023-03-08", + "files": { + "regular": "http://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUcdl5GuI2Ze.otf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhXcanZM.otf" + }, + { + "family": "Material Icons Round", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v108", + "lastModified": "2023-03-21", + "files": { + "regular": "http://fonts.gstatic.com/s/materialiconsround/v108/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmMq_fTTvg-.otf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/materialiconsround/v108/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flzmLofU.otf" + }, + { + "family": "Material Icons Sharp", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v109", + "lastModified": "2023-03-08", + "files": { + "regular": "http://fonts.gstatic.com/s/materialiconssharp/v109/oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvmvSImEyc0vd.otf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/materialiconssharp/v109/oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvlvVKGM.otf" + }, + { + "family": "Material Icons Two Tone", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v112", + "lastModified": "2023-03-08", + "files": { + "regular": "http://fonts.gstatic.com/s/materialiconstwotone/v112/hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNCu3NjDrH_77.otf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/materialiconstwotone/v112/hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNBuwPDI.otf" + }, + { + "family": "Material Symbols Outlined", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "latin" ], + "version": "v110", + "lastModified": "2023-05-08", + "files": { + "100": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHeembd5zrTgt.ttf", + "200": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDAvHOembd5zrTgt.ttf", + "300": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDDxHOembd5zrTgt.ttf", + "500": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCdHOembd5zrTgt.ttf", + "600": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBxG-embd5zrTgt.ttf", + "700": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBIG-embd5zrTgt.ttf", + "regular": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOembd5zrTgt.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHNenZ9o.ttf" + }, + { + "family": "Material Symbols Rounded", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "latin" ], + "version": "v109", + "lastModified": "2023-05-08", + "files": { + "100": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIekXxKJKJBjAa8.ttf", + "200": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rAelXxKJKJBjAa8.ttf", + "300": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rNmlXxKJKJBjAa8.ttf", + "500": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rLWlXxKJKJBjAa8.ttf", + "600": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rFmiXxKJKJBjAa8.ttf", + "700": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rGCiXxKJKJBjAa8.ttf", + "regular": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIelXxKJKJBjAa8.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIelbxODLA.ttf" + }, + { + "family": "Material Symbols Sharp", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "latin" ], + "version": "v106", + "lastModified": "2023-05-08", + "files": { + "100": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLozCOJ1H7-knk.ttf", + "200": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxMLojCOJ1H7-knk.ttf", + "300": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxPVojCOJ1H7-knk.ttf", + "500": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxO5ojCOJ1H7-knk.ttf", + "600": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNVpTCOJ1H7-knk.ttf", + "700": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNspTCOJ1H7-knk.ttf", + "regular": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLojCOJ1H7-knk.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLogCPLVU.ttf" + }, + { + "family": "Maven Pro", + "variants": [ "regular", "500", "600", "700", "800", "900" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v32", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nCpozp5GvU.ttf", + "600": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nCpozp5GvU.ttf", + "700": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nCpozp5GvU.ttf", + "800": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nCpozp5GvU.ttf", + "900": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nCpozp5GvU.ttf", + "regular": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nCpozp5GvU.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX21nGjpw.ttf" + }, + { + "family": "McLaren", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/mclaren/v14/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mclaren/v14/2EbnL-ZuAXFqZFXIeYcV9w.ttf" + }, + { + "family": "Mea Culpa", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/meaculpa/v3/AMOTz4GcuWbEIuza8jsZms0QW3mqyg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/meaculpa/v3/AMOTz4GcuWbEIuza8jspm8cU.ttf" + }, + { + "family": "Meddon", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/meddon/v20/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/meddon/v20/kmK8ZqA2EgDNeHTphR1F.ttf" + }, + { + "family": "MedievalSharp", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/medievalsharp/v24/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/medievalsharp/v24/EvOJzAlL3oU5AQl2mP5KdgptMq5wNw.ttf" + }, + { + "family": "Medula One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yuoiAgtw.ttf" + }, + { + "family": "Meera Inimai", + "variants": [ "regular" ], + "subsets": [ "latin", "tamil" ], + "version": "v12", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/meerainimai/v12/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/meerainimai/v12/845fNMM5EIqOW5MPuvO3ILeZ_mLH.ttf" + }, + { + "family": "Megrim", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/megrim/v16/46kulbz5WjvLqJZlbWXgd0RY1g.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/megrim/v16/46kulbz5WjvLqJZVbG_k.ttf" + }, + { + "family": "Meie Script", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMgxm7oE.ttf" + }, + { + "family": "Meow Script", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/meowscript/v5/0FlQVPqanlaJrtr8AnJ0ESch0_0CfDf1.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/meowscript/v5/0FlQVPqanlaJrtr8AnJ0ERcg2fk.ttf" + }, + { + "family": "Merienda", + "variants": [ "300", "regular", "500", "600", "700", "800", "900" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v19", + "lastModified": "2023-03-21", + "files": { + "300": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5JHhoSU78QGBV0A.ttf", + "500": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5SHhoSU78QGBV0A.ttf", + "600": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5pH9oSU78QGBV0A.ttf", + "700": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5nX9oSU78QGBV0A.ttf", + "800": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5-n9oSU78QGBV0A.ttf", + "900": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5039oSU78QGBV0A.ttf", + "regular": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5enhoSU78QGBV0A.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5enhYSET4.ttf" + }, + { + "family": "Merriweather", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic", + "900", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v30", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf", + "700": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf", + "900": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf", + "300italic": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf", + "regular": "http://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf", + "italic": "http://fonts.gstatic.com/s/merriweather/v30/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf", + "700italic": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf", + "900italic": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5-eiZJ.ttf" + }, + { + "family": "Merriweather Sans", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "800", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], + "version": "v26", + "lastModified": "2023-04-27", + "files": { + "300": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ljuEG7xFHnQ.ttf", + "500": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ljuEG7xFHnQ.ttf", + "600": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkljuEG7xFHnQ.ttf", + "700": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekljuEG7xFHnQ.ttf", + "800": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukljuEG7xFHnQ.ttf", + "regular": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ljuEG7xFHnQ.ttf", + "300italic": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzesCzRRXnaur.ttf", + "italic": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzesCzRRXnaur.ttf", + "500italic": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zesCzRRXnaur.ttf", + "600italic": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TyusCzRRXnaur.ttf", + "700italic": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qyusCzRRXnaur.ttf", + "800italic": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NyusCzRRXnaur.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4Vj-sC.ttf" + }, + { + "family": "Metal", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin" ], + "version": "v28", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/metal/v28/lW-wwjUJIXTo7i3nnoQAUdN2.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/metal/v28/lW-wwjUJIXTo7h3mlIA.ttf" + }, + { + "family": "Metal Mania", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJdXDiaE.ttf" + }, + { + "family": "Metamorphous", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/metamorphous/v18/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/metamorphous/v18/Wnz8HA03aAXcC39ZEX5y133EPSqp.ttf" + }, + { + "family": "Metrophobic", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v23", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/metrophobic/v23/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/metrophobic/v23/sJoA3LZUhMSAPV_u0qwiAQ-I5Xo.ttf" + }, + { + "family": "Michroma", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/michroma/v16/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/michroma/v16/PN_zRfy9qWD8fEagAPg7pTw.ttf" + }, + { + "family": "Milonga", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/milonga/v20/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/milonga/v20/SZc53FHnIaK9W5kfTzzMlQ.ttf" + }, + { + "family": "Miltonian", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v26", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/miltonian/v26/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/miltonian/v26/zOL-4pbPn6Ne9JqTg9mb6ORE.ttf" + }, + { + "family": "Miltonian Tattoo", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v28", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/miltoniantattoo/v28/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/miltoniantattoo/v28/EvOUzBRL0o0kCxF-lcMCQxlpVsA_JwL2NA.ttf" + }, + { + "family": "Mina", + "variants": [ "regular", "700" ], + "subsets": [ "bengali", "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/mina/v11/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf", + "regular": "http://fonts.gstatic.com/s/mina/v11/-nFzOGc18vARrz9j7i3y65o.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mina/v11/-nFzOGc18vARnz5p6g.ttf" + }, + { + "family": "Mingzat", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "lepcha" ], + "version": "v5", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/mingzat/v5/0QIgMX5C-o-oWWyvBttkm_mv670.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mingzat/v5/0QIgMX5C-o-oWWyvNtpunw.ttf" + }, + { + "family": "Miniver", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/miniver/v21/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/miniver/v21/eLGcP-PxIg-5H0vC37wIzw.ttf" + }, + { + "family": "Miriam Libre", + "variants": [ "regular", "700" ], + "subsets": [ "hebrew", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/miriamlibre/v14/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf", + "regular": "http://fonts.gstatic.com/s/miriamlibre/v14/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/miriamlibre/v14/DdTh798HsHwubBAqfkcBTL_fYZP7.ttf" + }, + { + "family": "Mirza", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIpAeO4mafBomDi.ttf", + "600": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIFBuO4mafBomDi.ttf", + "700": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtJhB-O4mafBomDi.ttf", + "regular": "http://fonts.gstatic.com/s/mirza/v15/co3ImWlikiN5EurdKMewsrvI.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mirza/v15/co3ImWlikiN5EtrcIsM.ttf" + }, + { + "family": "Miss Fajardose", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb_quUvI.ttf" + }, + { + "family": "Mitr", + "variants": [ "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf", + "300": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf", + "500": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf", + "600": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf", + "700": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf", + "regular": "http://fonts.gstatic.com/s/mitr/v11/pxiLypw5ucZFyTsyMJj_b1o.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mitr/v11/pxiLypw5ucZF-To4NA.ttf" + }, + { + "family": "Mochiy Pop One", + "variants": [ "regular" ], + "subsets": [ "japanese", "latin" ], + "version": "v7", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/mochiypopone/v7/QdVPSTA9Jh-gg-5XZP2UmU4O9kwwD3s6ZKAi.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mochiypopone/v7/QdVPSTA9Jh-gg-5XZP2UmU4O9nwxBX8.ttf" + }, + { + "family": "Mochiy Pop P One", + "variants": [ "regular" ], + "subsets": [ "japanese", "latin" ], + "version": "v7", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/mochiypoppone/v7/Ktk2AKuPeY_td1-h9LayHYWCjAqyN4O3WYZB_sU.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mochiypoppone/v7/Ktk2AKuPeY_td1-h9LayHYWCjAqyB4K9XQ.ttf" + }, + { + "family": "Modak", + "variants": [ "regular" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/modak/v18/EJRYQgs1XtIEsnMH8BVZ76KU.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/modak/v18/EJRYQgs1XtIEskMG-hE.ttf" + }, + { + "family": "Modern Antiqua", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/modernantiqua/v22/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/modernantiqua/v22/NGStv5TIAUg6Iq_RLNo_2dp1sL1FYW8.ttf" + }, + { + "family": "Mogra", + "variants": [ "regular" ], + "subsets": [ "gujarati", "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/mogra/v19/f0X40eSs8c95TBo4DvLmxtnG.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mogra/v19/f0X40eSs8c95TCo5BPY.ttf" + }, + { + "family": "Mohave", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v8", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdif_HvCQopLSvBk.ttf", + "500": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdkv_HvCQopLSvBk.ttf", + "600": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdqf4HvCQopLSvBk.ttf", + "700": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdp74HvCQopLSvBk.ttf", + "regular": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_HvCQopLSvBk.ttf", + "300italic": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8qLOaprDXrBlSVw.ttf", + "italic": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G89rOaprDXrBlSVw.ttf", + "500italic": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8xLOaprDXrBlSVw.ttf", + "600italic": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8KLSaprDXrBlSVw.ttf", + "700italic": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8EbSaprDXrBlSVw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_LvGapg.ttf" + }, + { + "family": "Molengo", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQXbValg.ttf" + }, + { + "family": "Molle", + "variants": [ "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-04-26", + "files": { + "italic": "http://fonts.gstatic.com/s/molle/v21/E21n_dL5hOXFhWEsXzgmVydREus.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/molle/v21/E21n_dL5hOXFhWEsbzksUw.ttf" + }, + { + "family": "Monda", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/monda/v16/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf", + "regular": "http://fonts.gstatic.com/s/monda/v16/TK3tWkYFABsmjvpmNBsLvPdG.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/monda/v16/TK3tWkYFABsmjspnPh8.ttf" + }, + { + "family": "Monofett", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/monofett/v22/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/monofett/v22/mFTyWbofw6zc9NtnW73Tsxg.ttf" + }, + { + "family": "Monoton", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/monoton/v15/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/monoton/v15/5h1aiZUrOngCibe4TkfLRw.ttf" + }, + { + "family": "Monsieur La Doulaise", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/monsieurladoulaise/v15/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/monsieurladoulaise/v15/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZm5fyEU.ttf" + }, + { + "family": "Montaga", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_4gca6A.ttf" + }, + { + "family": "Montagu Slab", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v6", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbE3P9Fs7bOSO7.ttf", + "200": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkBbEnP9Fs7bOSO7.ttf", + "300": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkCFEnP9Fs7bOSO7.ttf", + "500": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDpEnP9Fs7bOSO7.ttf", + "600": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkAFFXP9Fs7bOSO7.ttf", + "700": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkA8FXP9Fs7bOSO7.ttf", + "regular": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEnP9Fs7bOSO7.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEkP8HMo.ttf" + }, + { + "family": "MonteCarlo", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v8", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/montecarlo/v8/buEzpo6-f9X01GadLA0G0CoV_NxLeiw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/montecarlo/v8/buEzpo6-f9X01GadLA0G4Csf-A.ttf" + }, + { + "family": "Montez", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/montez/v18/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/montez/v18/845ZNMk5GoGIX8lW1bra.ttf" + }, + { + "family": "Montserrat", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v25", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf", + "200": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-Y3tcoqK5.ttf", + "300": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-Y3tcoqK5.ttf", + "500": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-Y3tcoqK5.ttf", + "600": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-Y3tcoqK5.ttf", + "700": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-Y3tcoqK5.ttf", + "800": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-Y3tcoqK5.ttf", + "900": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w-Y3tcoqK5.ttf", + "regular": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-Y3tcoqK5.ttf", + "100italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aX9-p7K5ILg.ttf", + "200italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aX9-p7K5ILg.ttf", + "300italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aX9-p7K5ILg.ttf", + "italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aX9-p7K5ILg.ttf", + "500italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aX9-p7K5ILg.ttf", + "600italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aX9-p7K5ILg.ttf", + "700italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aX9-p7K5ILg.ttf", + "800italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aX9-p7K5ILg.ttf", + "900italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aX9-p7K5ILg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw_aX8.ttf" + }, + { + "family": "Montserrat Alternates", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf", + "200": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf", + "300": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf", + "500": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf", + "600": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf", + "700": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf", + "800": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf", + "900": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf", + "100italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf", + "200italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf", + "300italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf", + "regular": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf", + "italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf", + "500italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf", + "600italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf", + "700italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf", + "800italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf", + "900italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU057afV.ttf" + }, + { + "family": "Montserrat Subrayada", + "variants": [ "regular", "700" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf", + "regular": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQH8KaOM.ttf" + }, + { + "family": "Moo Lah Lah", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/moolahlah/v3/dg4h_p_opKZOA0w1AYcm55wtYQYugjW4.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/moolahlah/v3/dg4h_p_opKZOA0w1AYcm56wsawI.ttf" + }, + { + "family": "Moon Dance", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/moondance/v3/WBLgrEbUbFlYW9ekmGawe2XiKMiokE4.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/moondance/v3/WBLgrEbUbFlYW9ekmGawS2ToLA.ttf" + }, + { + "family": "Moul", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin" ], + "version": "v25", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/moul/v25/nuF2D__FSo_3E-RYiJCy-00.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/moul/v25/nuF2D__FSo_3I-VSjA.ttf" + }, + { + "family": "Moulpali", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin" ], + "version": "v28", + "lastModified": "2022-04-26", + "files": { + "regular": "http://fonts.gstatic.com/s/moulpali/v28/H4ckBXKMl9HagUWymyY6wr-wg763.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/moulpali/v28/H4ckBXKMl9HagUWymxY7yLs.ttf" + }, + { + "family": "Mountains of Christmas", + "variants": [ "regular", "700" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf", + "regular": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eDNesNA.ttf" + }, + { + "family": "Mouse Memoirs", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/mousememoirs/v14/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mousememoirs/v14/t5tmIRoSNJ-PH0WNNgDYxdSb3TjPqg.ttf" + }, + { + "family": "Mr Bedfort", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/mrbedfort/v22/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mrbedfort/v22/MQpR-WCtNZSWAdTMwBicpiu-WQ.ttf" + }, + { + "family": "Mr Dafoe", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrFiribc.ttf" + }, + { + "family": "Mr De Haviland", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOg3D60Y.ttf" + }, + { + "family": "Mrs Saint Delafield", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62QK8nKg.ttf" + }, + { + "family": "Mrs Sheppards", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/mrssheppards/v21/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mrssheppards/v21/PN_2Rfm9snC0XUGoEZhb91ig7vn7zg.ttf" + }, + { + "family": "Ms Madi", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1N-DPiI7QAYo.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1B-HFjA.ttf" + }, + { + "family": "Mukta", + "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "200": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf", + "300": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf", + "500": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf", + "600": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf", + "700": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf", + "800": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf", + "regular": "http://fonts.gstatic.com/s/mukta/v14/iJWKBXyXfDDVXYnGp32S0H3f.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mukta/v14/iJWKBXyXfDDVXbnHrXk.ttf" + }, + { + "family": "Mukta Mahee", + "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], + "subsets": [ "gurmukhi", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2023-05-02", + "files": { + "200": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf", + "300": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf", + "500": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf", + "600": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf", + "700": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf", + "800": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf", + "regular": "http://fonts.gstatic.com/s/muktamahee/v16/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/muktamahee/v16/XRXQ3IOIi0hcP8iVU67hA9vMUTo.ttf" + }, + { + "family": "Mukta Malar", + "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], + "subsets": [ "latin", "latin-ext", "tamil" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf", + "300": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf", + "500": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf", + "600": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf", + "700": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf", + "800": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf", + "regular": "http://fonts.gstatic.com/s/muktamalar/v12/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/muktamalar/v12/MCoXzAXyz8LOE2FpJMxZqIv5J_A.ttf" + }, + { + "family": "Mukta Vaani", + "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], + "subsets": [ "gujarati", "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf", + "300": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf", + "500": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf", + "600": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf", + "700": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf", + "800": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf", + "regular": "http://fonts.gstatic.com/s/muktavaani/v13/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/muktavaani/v13/3Jn5SD_-ynaxmxnEfVHPIG0EduA.ttf" + }, + { + "family": "Mulish", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNRwaClGrw-PTY.ttf", + "300": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaClGrw-PTY.ttf", + "500": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaClGrw-PTY.ttf", + "600": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaClGrw-PTY.ttf", + "700": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaClGrw-PTY.ttf", + "800": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaClGrw-PTY.ttf", + "900": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexTpWwaClGrw-PTY.ttf", + "regular": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaClGrw-PTY.ttf", + "200italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeOvHp47LTZFwA.ttf", + "300italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSd-OvHp47LTZFwA.ttf", + "italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvHp47LTZFwA.ttf", + "500italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSG-OvHp47LTZFwA.ttf", + "600italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsS9-SvHp47LTZFwA.ttf", + "700italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSzuSvHp47LTZFwA.ttf", + "800italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeSvHp47LTZFwA.ttf", + "900italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSgOSvHp47LTZFwA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNR8aGvHg.ttf" + }, + { + "family": "Murecho", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "japanese", + "latin", + "latin-ext" + ], + "version": "v10", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", + "200": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", + "300": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", + "500": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", + "600": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", + "700": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", + "800": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf", + "900": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrC4nWZLCpUOaM6.ttf", + "regular": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5UWYJi4.ttf" + }, + { + "family": "MuseoModerno", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuewajeKlCdo.ttf", + "200": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuewajeKlCdo.ttf", + "300": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuewajeKlCdo.ttf", + "500": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuewajeKlCdo.ttf", + "600": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuewajeKlCdo.ttf", + "700": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuewajeKlCdo.ttf", + "800": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuewajeKlCdo.ttf", + "900": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuewajeKlCdo.ttf", + "regular": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuewajeKlCdo.ttf", + "100italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa4QicCgGdrS3g.ttf", + "200italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0a8QicCgGdrS3g.ttf", + "300italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HD68QicCgGdrS3g.ttf", + "italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa8QicCgGdrS3g.ttf", + "500italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HY68QicCgGdrS3g.ttf", + "600italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54Hj6gQicCgGdrS3g.ttf", + "700italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HtqgQicCgGdrS3g.ttf", + "800italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0agQicCgGdrS3g.ttf", + "900italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H-KgQicCgGdrS3g.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEie0QiQ.ttf" + }, + { + "family": "My Soul", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/mysoul/v2/3XFqErcuy945_u6KF_Ulk2nnXf0.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mysoul/v2/3XFqErcuy945_u6KJ_Qvlw.ttf" + }, + { + "family": "Mynerve", + "variants": [ "regular" ], + "subsets": [ "greek", "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/mynerve/v2/P5sCzZKPdNjb4jt7xCRuiZ-uydg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mynerve/v2/P5sCzZKPdNjb4jt79CVkjQ.ttf" + }, + { + "family": "Mystery Quest", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRLwAvCw.ttf" + }, + { + "family": "NTR", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ntr/v15/RLpzK5Xy0ZjiGGhs5TA4bg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ntr/v15/RLpzK5Xy0ZjSGWJo.ttf" + }, + { + "family": "Nabla", + "variants": [ "regular" ], + "subsets": [ + "cyrillic-ext", + "latin", + "latin-ext", + "math", + "vietnamese" + ], + "version": "v9", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/nabla/v9/j8_D6-LI0Lvpe7Makz5UhJt9C3uqg_X_75gyGS4jAxsNIjrRNRBUFFR_198.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nabla/v9/j8_D6-LI0Lvpe7Makz5UhJt9C3uqg_X_75gyGS4jAxsNIjrRBRFeEA.ttf" + }, + { + "family": "Nanum Brush Script", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v22", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/nanumbrushscript/v22/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nanumbrushscript/v22/wXK2E2wfpokopxzthSqPbcR5_gVaxazCj6pv.ttf" + }, + { + "family": "Nanum Gothic", + "variants": [ "regular", "700", "800" ], + "subsets": [ "korean", "latin" ], + "version": "v21", + "lastModified": "2022-09-27", + "files": { + "700": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf", + "800": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf", + "regular": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_3Rfi-oW3hYwmKDpxS7F_D_9jb.ttf" + }, + { + "family": "Nanum Gothic Coding", + "variants": [ "regular", "700" ], + "subsets": [ "korean", "latin" ], + "version": "v19", + "lastModified": "2022-09-27", + "files": { + "700": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf", + "regular": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIVdjzHisX_8vv59_xMxtPFW4IXROws-6U7Ug.ttf" + }, + { + "family": "Nanum Myeongjo", + "variants": [ "regular", "700", "800" ], + "subsets": [ "korean", "latin" ], + "version": "v20", + "lastModified": "2022-09-27", + "files": { + "700": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf", + "800": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf", + "regular": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Btx3DZF0dXLMZlywRbVRNhxy2LqcnA.ttf" + }, + { + "family": "Nanum Pen Script", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v19", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/nanumpenscript/v19/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nanumpenscript/v19/daaDSSYiLGqEal3MvdA_FOL_3FkN6z_0bA.ttf" + }, + { + "family": "Neonderthaw", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/neonderthaw/v3/Iure6Yx5-oWVZI0r-17AeZZJprVA4XQ0.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/neonderthaw/v3/Iure6Yx5-oWVZI0r-17AeaZIrLE.ttf" + }, + { + "family": "Nerko One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/nerkoone/v16/m8JQjfZSc7OXlB3ZMOjzcJ5BZmqa3A.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nerkoone/v16/m8JQjfZSc7OXlB3ZMOjDcZRF.ttf" + }, + { + "family": "Neucha", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bvugNsCxVEgA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bfuwlo.ttf" + }, + { + "family": "Neuton", + "variants": [ "200", "300", "regular", "italic", "700", "800" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2023-05-02", + "files": { + "200": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf", + "300": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf", + "700": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf", + "800": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf", + "regular": "http://fonts.gstatic.com/s/neuton/v19/UMBTrPtMoH62xUZyyII7civlBw.ttf", + "italic": "http://fonts.gstatic.com/s/neuton/v19/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/neuton/v19/UMBTrPtMoH62xUZCyYg_.ttf" + }, + { + "family": "New Rocker", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJoGIfjQ.ttf" + }, + { + "family": "New Tegomin", + "variants": [ "regular" ], + "subsets": [ "japanese", "latin", "latin-ext" ], + "version": "v10", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/newtegomin/v10/SLXMc1fV7Gd9USdBAfPlqfN0Q3ptkDMN.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/newtegomin/v10/SLXMc1fV7Gd9USdBAfPlqcN1SX4.ttf" + }, + { + "family": "News Cycle", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/newscycle/v23/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf", + "regular": "http://fonts.gstatic.com/s/newscycle/v23/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/newscycle/v23/CSR64z1Qlv-GDxkbKVQ_fOYKSA.ttf" + }, + { + "family": "Newsreader", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-I_ADOxEPjCggA.ttf", + "300": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wJo_ADOxEPjCggA.ttf", + "500": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wSo_ADOxEPjCggA.ttf", + "600": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wpojADOxEPjCggA.ttf", + "700": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wn4jADOxEPjCggA.ttf", + "800": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-IjADOxEPjCggA.ttf", + "regular": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ADOxEPjCggA.ttf", + "200italic": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoT-ZAHDWwgECi.ttf", + "300italic": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMx2T-ZAHDWwgECi.ttf", + "italic": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZAHDWwgECi.ttf", + "500italic": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwaT-ZAHDWwgECi.ttf", + "600italic": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMz2SOZAHDWwgECi.ttf", + "700italic": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMzPSOZAHDWwgECi.ttf", + "800italic": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoSOZAHDWwgECi.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_wDeZA.ttf" + }, + { + "family": "Niconne", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfnQqn3A.ttf" + }, + { + "family": "Niramit", + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf", + "300": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf", + "500": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf", + "600": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf", + "700": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf", + "200italic": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf", + "300italic": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf", + "regular": "http://fonts.gstatic.com/s/niramit/v10/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf", + "italic": "http://fonts.gstatic.com/s/niramit/v10/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf", + "500italic": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf", + "600italic": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf", + "700italic": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/niramit/v10/I_uuMpWdvgLdNxVLXbValg.ttf" + }, + { + "family": "Nixie One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUYUet3.ttf" + }, + { + "family": "Nobile", + "variants": [ + "regular", + "italic", + "500", + "500italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf", + "700": "http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf", + "regular": "http://fonts.gstatic.com/s/nobile/v17/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf", + "italic": "http://fonts.gstatic.com/s/nobile/v17/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf", + "500italic": "http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf", + "700italic": "http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nobile/v17/m8JTjflSeaOVl1iGX63T.ttf" + }, + { + "family": "Nokora", + "variants": [ "100", "300", "regular", "700", "900" ], + "subsets": [ "khmer", "latin" ], + "version": "v30", + "lastModified": "2022-05-10", + "files": { + "100": "http://fonts.gstatic.com/s/nokora/v30/~CgoKBk5va29yYRhkIAAqBAgBGAE=.ttf", + "300": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRisAiAAKgQIARgB.ttf", + "700": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRi8BSAAKgQIARgB.ttf", + "900": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRiEByAAKgQIARgB.ttf", + "regular": "http://fonts.gstatic.com/s/nokora/v30/~CggKBk5va29yYSAAKgQIARgB.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nokora/v30/~CggKBk5va29yYRABIAA=.ttf" + }, + { + "family": "Norican", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/norican/v14/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/norican/v14/MwQ2bhXp1eSBqjkPKJNbsA.ttf" + }, + { + "family": "Nosifer", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/nosifer/v20/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nosifer/v20/ZGjXol5JTp0g5bxZWCxbUA.ttf" + }, + { + "family": "Notable", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/notable/v14/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notable/v14/gNMEW3N_SIqx-WX9yHIiEA.ttf" + }, + { + "family": "Nothing You Could Do", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/nothingyoucoulddo/v15/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nothingyoucoulddo/v15/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb3OInV4.ttf" + }, + { + "family": "Noticia Text", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/noticiatext/v15/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf", + "regular": "http://fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf", + "italic": "http://fonts.gstatic.com/s/noticiatext/v15/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf", + "700italic": "http://fonts.gstatic.com/s/noticiatext/v15/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP12YDtd.ttf" + }, + { + "family": "Noto Color Emoji", + "variants": [ "regular" ], + "subsets": [ "emoji" ], + "version": "v24", + "lastModified": "2022-09-26", + "files": { + "regular": "http://fonts.gstatic.com/s/notocoloremoji/v24/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFab5s79iz64w.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notocoloremoji/v24/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFWb9m6w.ttf" + }, + { + "family": "Noto Emoji", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "emoji" ], + "version": "v39", + "lastModified": "2023-03-21", + "files": { + "300": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob_10jwvS-FGJCMY.ttf", + "500": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-Z0jwvS-FGJCMY.ttf", + "600": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob911TwvS-FGJCMY.ttf", + "700": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob9M1TwvS-FGJCMY.ttf", + "regular": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwvS-FGJCMY.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0gwuQeU.ttf" + }, + { + "family": "Noto Kufi Arabic", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "arabic" ], + "version": "v16", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v3obPnLSmf5yD.ttf", + "200": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v34bPnLSmf5yD.ttf", + "300": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh4x34bPnLSmf5yD.ttf", + "500": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5d34bPnLSmf5yD.ttf", + "600": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6x2IbPnLSmf5yD.ttf", + "700": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6I2IbPnLSmf5yD.ttf", + "800": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v2IbPnLSmf5yD.ttf", + "900": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7G2IbPnLSmf5yD.ttf", + "regular": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v34bPnLSmf5yD.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v37bOlrA.ttf" + }, + { + "family": "Noto Music", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "music" ], + "version": "v17", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notomusic/v17/pe0rMIiSN5pO63htf1sxIteQB9Zra1U.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notomusic/v17/pe0rMIiSN5pO63htf1sxEtaaAw.ttf" + }, + { + "family": "Noto Naskh Arabic", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v33", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwj85krK0z9_Mnuw.ttf", + "600": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwY8lkrK0z9_Mnuw.ttf", + "700": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwWslkrK0z9_Mnuw.ttf", + "regular": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5krK0z9_Mnuw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5Urac3.ttf" + }, + { + "family": "Noto Nastaliq Urdu", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2023-03-21", + "files": { + "500": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qu3-DK2f2-_8mEw.ttf", + "600": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3QgH5DK2f2-_8mEw.ttf", + "700": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qjj5DK2f2-_8mEw.ttf", + "regular": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qt_-DK2f2-_8mEw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qt_-PKyV3w.ttf" + }, + { + "family": "Noto Rashi Hebrew", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "hebrew", "latin", "latin-ext" ], + "version": "v25", + "lastModified": "2023-03-09", + "files": { + "100": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-DkRyq6Nf2pfA.ttf", + "200": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-HkRyq6Nf2pfA.ttf", + "300": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZWeHkRyq6Nf2pfA.ttf", + "500": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZNeHkRyq6Nf2pfA.ttf", + "600": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ2ebkRyq6Nf2pfA.ttf", + "700": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ4ObkRyq6Nf2pfA.ttf", + "800": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-bkRyq6Nf2pfA.ttf", + "900": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZrubkRyq6Nf2pfA.ttf", + "regular": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HkRyq6Nf2pfA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HURiC-.ttf" + }, + { + "family": "Noto Sans", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "devanagari", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v28", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNjhjRFSfiM7HBj.ttf", + "200": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjKhVlY9aA5Wl6PQ.ttf", + "300": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZlY9aA5Wl6PQ.ttf", + "500": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjFhdlY9aA5Wl6PQ.ttf", + "600": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBlY9aA5Wl6PQ.ttf", + "700": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf", + "800": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjQhJlY9aA5Wl6PQ.ttf", + "900": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjZhNlY9aA5Wl6PQ.ttf", + "100italic": "http://fonts.gstatic.com/s/notosans/v28/o-0MIpQlx3QUlC5A4PNr4AwhQ_yu6WBjJLE.ttf", + "200italic": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AyNYtyEx2xqPaif.ttf", + "300italic": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzpYdyEx2xqPaif.ttf", + "regular": "http://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf", + "italic": "http://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf", + "500italic": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AyxYNyEx2xqPaif.ttf", + "600italic": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AydZ9yEx2xqPaif.ttf", + "700italic": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf", + "800italic": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzlZdyEx2xqPaif.ttf", + "900italic": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzBZNyEx2xqPaif.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNr4zRF.ttf" + }, + { + "family": "Noto Sans Adlam", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "adlam", "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufkn0TGnBZLwhuvk.ttf", + "600": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufqXzTGnBZLwhuvk.ttf", + "700": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufpzzTGnBZLwhuvk.ttf", + "regular": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0fGjLYA.ttf" + }, + { + "family": "Noto Sans Adlam Unjoined", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "adlam", "latin", "latin-ext" ], + "version": "v25", + "lastModified": "2023-03-09", + "files": { + "500": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Yd_5PMEe-E3slUg.ttf", + "600": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YTP-PMEe-E3slUg.ttf", + "700": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YQr-PMEe-E3slUg.ttf", + "regular": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35PMEe-E3slUg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35DMAU_A.ttf" + }, + { + "family": "Noto Sans Anatolian Hieroglyphs", + "variants": [ "regular" ], + "subsets": [ "anatolian-hieroglyphs" ], + "version": "v14", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v14/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v14/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWbyfCzg.ttf" + }, + { + "family": "Noto Sans Arabic", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "arabic" ], + "version": "v18", + "lastModified": "2022-06-01", + "files": { + "100": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyG2vu3CBFQLaig.ttf", + "200": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGyvu3CBFQLaig.ttf", + "300": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCflmyvu3CBFQLaig.ttf", + "500": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCf-myvu3CBFQLaig.ttf", + "600": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfFmuvu3CBFQLaig.ttf", + "700": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfL2uvu3CBFQLaig.ttf", + "800": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGuvu3CBFQLaig.ttf", + "900": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfYWuvu3CBFQLaig.ttf", + "regular": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyfunqF.ttf" + }, + { + "family": "Noto Sans Armenian", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "armenian", "latin", "latin-ext" ], + "version": "v42", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxbq0iYy6zF3Eg.ttf", + "200": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxb60iYy6zF3Eg.ttf", + "300": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoqvb60iYy6zF3Eg.ttf", + "500": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorDb60iYy6zF3Eg.ttf", + "600": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoovaK0iYy6zF3Eg.ttf", + "700": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLooWaK0iYy6zF3Eg.ttf", + "800": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxaK0iYy6zF3Eg.ttf", + "900": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopYaK0iYy6zF3Eg.ttf", + "regular": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb50jaSo.ttf" + }, + { + "family": "Noto Sans Avestan", + "variants": [ "regular" ], + "subsets": [ "avestan", "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2023-03-21", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansavestan/v20/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansavestan/v20/bWti7ejKfBziStx7lIzKOLQZKhIJkxu8QgA.ttf" + }, + { + "family": "Noto Sans Balinese", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "balinese", "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov4XdhE5Vd222PPY.ttf", + "600": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov2nahE5Vd222PPY.ttf", + "700": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov1DahE5Vd222PPY.ttf", + "regular": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdtE9fcw.ttf" + }, + { + "family": "Noto Sans Bamum", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "bamum", "latin", "latin-ext" ], + "version": "v26", + "lastModified": "2022-11-09", + "files": { + "500": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEeVO-_gLykxEkxA.ttf", + "600": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEQlJ-_gLykxEkxA.ttf", + "700": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPETBJ-_gLykxEkxA.ttf", + "regular": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddOy_kBzg.ttf" + }, + { + "family": "Noto Sans Bassa Vah", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "bassa-vah", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-11-09", + "files": { + "500": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MoAc6p34gH-GD7.ttf", + "600": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4PEBs6p34gH-GD7.ttf", + "700": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4P9Bs6p34gH-GD7.ttf", + "regular": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAc6p34gH-GD7.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAf6o1Yw.ttf" + }, + { + "family": "Noto Sans Batak", + "variants": [ "regular" ], + "subsets": [ "batak", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-ZdQooXL.ttf" + }, + { + "family": "Noto Sans Bengali", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "bengali", "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolKudCk8izI0lc.ttf", + "200": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglLudCk8izI0lc.ttf", + "300": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmstdLudCk8izI0lc.ttf", + "500": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsrtLudCk8izI0lc.ttf", + "600": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsldMudCk8izI0lc.ttf", + "700": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6Kmsm5MudCk8izI0lc.ttf", + "800": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglMudCk8izI0lc.ttf", + "900": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsiBMudCk8izI0lc.ttf", + "regular": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLidGu9g.ttf" + }, + { + "family": "Noto Sans Bhaiksuki", + "variants": [ "regular" ], + "subsets": [ "bhaiksuki" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhjwrPecQ.ttf" + }, + { + "family": "Noto Sans Brahmi", + "variants": [ "regular" ], + "subsets": [ "brahmi" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansbrahmi/v15/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansbrahmi/v15/vEFK2-VODB8RrNDvZSUmQQIIByV1wtO_Xw.ttf" + }, + { + "family": "Noto Sans Buginese", + "variants": [ "regular" ], + "subsets": [ "buginese", "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansbuginese/v18/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansbuginese/v18/esDM30ldNv-KYGGJpKGk18phe_7Da6_QtPGA.ttf" + }, + { + "family": "Noto Sans Buhid", + "variants": [ "regular" ], + "subsets": [ "buhid", "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansbuhid/v18/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansbuhid/v18/Dxxy8jiXMW75w3OmoDXVWJD7YwzweqFk.ttf" + }, + { + "family": "Noto Sans Canadian Aboriginal", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "canadian-aboriginal", "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-28", + "files": { + "100": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLj_yAsg0q0uhQ.ttf", + "200": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2Ln_yAsg0q0uhQ.ttf", + "300": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigBrn_yAsg0q0uhQ.ttf", + "500": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigarn_yAsg0q0uhQ.ttf", + "600": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzighr7_yAsg0q0uhQ.ttf", + "700": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigv77_yAsg0q0uhQ.ttf", + "800": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2L7_yAsg0q0uhQ.ttf", + "900": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig8b7_yAsg0q0uhQ.ttf", + "regular": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLnPyQEk.ttf" + }, + { + "family": "Noto Sans Carian", + "variants": [ "regular" ], + "subsets": [ "carian" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanscarian/v15/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanscarian/v15/LDIpaoiONgYwA9Yc6f0gUILeMIOgg7sR8w.ttf" + }, + { + "family": "Noto Sans Caucasian Albanian", + "variants": [ "regular" ], + "subsets": [ "caucasian-albanian" ], + "version": "v16", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXnYHspQ.ttf" + }, + { + "family": "Noto Sans Chakma", + "variants": [ "regular" ], + "subsets": [ "chakma", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi0JnZRg.ttf" + }, + { + "family": "Noto Sans Cham", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "cham", "latin", "latin-ext" ], + "version": "v27", + "lastModified": "2023-03-09", + "files": { + "100": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcER0cv7GykboaLg.ttf", + "200": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRwcv7GykboaLg.ttf", + "300": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcTxwcv7GykboaLg.ttf", + "500": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcIxwcv7GykboaLg.ttf", + "600": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfczxscv7GykboaLg.ttf", + "700": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfc9hscv7GykboaLg.ttf", + "800": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRscv7GykboaLg.ttf", + "900": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcuBscv7GykboaLg.ttf", + "regular": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwsvru2.ttf" + }, + { + "family": "Noto Sans Cherokee", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "cherokee", "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-28", + "files": { + "100": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5ODkm5rAffjl0.ttf", + "200": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5PDkm5rAffjl0.ttf", + "300": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWnBPDkm5rAffjl0.ttf", + "500": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWhxPDkm5rAffjl0.ttf", + "600": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWvBIDkm5rAffjl0.ttf", + "700": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWslIDkm5rAffjl0.ttf", + "800": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5IDkm5rAffjl0.ttf", + "900": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWodIDkm5rAffjl0.ttf", + "regular": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PPkizqA.ttf" + }, + { + "family": "Noto Sans Coptic", + "variants": [ "regular" ], + "subsets": [ "coptic", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-28", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd38q1UA.ttf" + }, + { + "family": "Noto Sans Cuneiform", + "variants": [ "regular" ], + "subsets": [ "cuneiform" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanscuneiform/v15/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanscuneiform/v15/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWsb5DkQ.ttf" + }, + { + "family": "Noto Sans Cypriot", + "variants": [ "regular" ], + "subsets": [ "cypriot" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cyItIZc.ttf" + }, + { + "family": "Noto Sans Deseret", + "variants": [ "regular" ], + "subsets": [ "deseret" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansdeseret/v15/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansdeseret/v15/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Wq8bHY.ttf" + }, + { + "family": "Noto Sans Devanagari", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v25", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQky-AzoFoW4Ow.ttf", + "200": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQly-AzoFoW4Ow.ttf", + "300": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlSoly-AzoFoW4Ow.ttf", + "500": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlUYly-AzoFoW4Ow.ttf", + "600": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Alaoiy-AzoFoW4Ow.ttf", + "700": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlZMiy-AzoFoW4Ow.ttf", + "800": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQiy-AzoFoW4Ow.ttf", + "900": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Ald0iy-AzoFoW4Ow.ttf", + "regular": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-AzoFoW4Ow.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQl--E5pA.ttf" + }, + { + "family": "Noto Sans Display", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cLVTGQ2iHrvWM.ttf", + "200": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cKVTGQ2iHrvWM.ttf", + "300": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_ykKVTGQ2iHrvWM.ttf", + "500": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_0UKVTGQ2iHrvWM.ttf", + "600": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_6kNVTGQ2iHrvWM.ttf", + "700": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_5ANVTGQ2iHrvWM.ttf", + "800": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cNVTGQ2iHrvWM.ttf", + "900": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_94NVTGQ2iHrvWM.ttf", + "regular": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKVTGQ2iHrvWM.ttf", + "100italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXOa3gPurWM9uQ.ttf", + "200italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXKa3gPurWM9uQ.ttf", + "300italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9J43Ka3gPurWM9uQ.ttf", + "italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXKa3gPurWM9uQ.ttf", + "500italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9Jj3Ka3gPurWM9uQ.ttf", + "600italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JY3Wa3gPurWM9uQ.ttf", + "700italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JWnWa3gPurWM9uQ.ttf", + "800italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXWa3gPurWM9uQ.ttf", + "900italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JFHWa3gPurWM9uQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKZTCa3g.ttf" + }, + { + "family": "Noto Sans Duployan", + "variants": [ "regular" ], + "subsets": [ "duployan" ], + "version": "v16", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansduployan/v16/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansduployan/v16/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvbF8gj.ttf" + }, + { + "family": "Noto Sans Egyptian Hieroglyphs", + "variants": [ "regular" ], + "subsets": [ "egyptian-hieroglyphs" ], + "version": "v26", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v26/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v26/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYintSFi4.ttf" + }, + { + "family": "Noto Sans Elbasan", + "variants": [ "regular" ], + "subsets": [ "elbasan" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanselbasan/v15/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanselbasan/v15/-F6rfiZqLzI2JPCgQBnw400qp1trvEdkp-o.ttf" + }, + { + "family": "Noto Sans Elymaic", + "variants": [ "regular" ], + "subsets": [ "elymaic" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD7AiUuA.ttf" + }, + { + "family": "Noto Sans Ethiopic", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "ethiopic", "latin", "latin-ext" ], + "version": "v46", + "lastModified": "2023-03-09", + "files": { + "100": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OKqDjwmfeaY9u.ttf", + "200": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OK6DjwmfeaY9u.ttf", + "300": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T34QK6DjwmfeaY9u.ttf", + "500": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T358K6DjwmfeaY9u.ttf", + "600": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36QLKDjwmfeaY9u.ttf", + "700": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36pLKDjwmfeaY9u.ttf", + "800": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OLKDjwmfeaY9u.ttf", + "900": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37nLKDjwmfeaY9u.ttf", + "regular": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OK6DjwmfeaY9u.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OK5DiyGM.ttf" + }, + { + "family": "Noto Sans Georgian", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "georgian", "latin", "latin-ext" ], + "version": "v42", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzVj-f5WK0OQV.ttf", + "200": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptnzFj-f5WK0OQV.ttf", + "300": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpu5zFj-f5WK0OQV.ttf", + "500": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvVzFj-f5WK0OQV.ttf", + "600": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdps5y1j-f5WK0OQV.ttf", + "700": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpsAy1j-f5WK0OQV.ttf", + "800": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptny1j-f5WK0OQV.ttf", + "900": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptOy1j-f5WK0OQV.ttf", + "regular": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzGj_dZE.ttf" + }, + { + "family": "Noto Sans Glagolitic", + "variants": [ "regular" ], + "subsets": [ "glagolitic" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansglagolitic/v15/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansglagolitic/v15/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4HRL6g0.ttf" + }, + { + "family": "Noto Sans Gothic", + "variants": [ "regular" ], + "subsets": [ "gothic" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansgothic/v15/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansgothic/v15/TuGKUUVzXI5FBtUq5a8bj6wRbzxTJMTy1g.ttf" + }, + { + "family": "Noto Sans Grantha", + "variants": [ "regular" ], + "subsets": [ "grantha", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-28", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-o8dH-8.ttf" + }, + { + "family": "Noto Sans Gujarati", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "gujarati", "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFgPM_OdiEH0s.ttf", + "200": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpFwPM_OdiEH0s.ttf", + "300": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_z3FwPM_OdiEH0s.ttf", + "500": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ybFwPM_OdiEH0s.ttf", + "600": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_x3EAPM_OdiEH0s.ttf", + "700": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_xOEAPM_OdiEH0s.ttf", + "800": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpEAPM_OdiEH0s.ttf", + "900": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wAEAPM_OdiEH0s.ttf", + "regular": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPM_OdiEH0s.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFzPN9uM.ttf" + }, + { + "family": "Noto Sans Gunjala Gondi", + "variants": [ "regular" ], + "subsets": [ "gunjala-gondi" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansgunjalagondi/v15/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansgunjalagondi/v15/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5icUV4c.ttf" + }, + { + "family": "Noto Sans Gurmukhi", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "gurmukhi", "latin", "latin-ext" ], + "version": "v26", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oe3bxZ_trdp7h.ttf", + "200": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OenbxZ_trdp7h.ttf", + "300": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG0QenbxZ_trdp7h.ttf", + "500": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG18enbxZ_trdp7h.ttf", + "600": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2QfXbxZ_trdp7h.ttf", + "700": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2pfXbxZ_trdp7h.ttf", + "800": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OfXbxZ_trdp7h.ttf", + "900": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3nfXbxZ_trdp7h.ttf", + "regular": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oekbwbf8.ttf" + }, + { + "family": "Noto Sans HK", + "variants": [ "100", "300", "regular", "500", "700", "900" ], + "subsets": [ "chinese-hongkong", "latin" ], + "version": "v21", + "lastModified": "2022-09-27", + "files": { + "100": "http://fonts.gstatic.com/s/notosanshk/v21/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf", + "300": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf", + "500": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf", + "700": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf", + "900": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf", + "regular": "http://fonts.gstatic.com/s/notosanshk/v21/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanshk/v21/nKKQ-GM_FYFRJvXzVXaAPe9RNXp1.otf" + }, + { + "family": "Noto Sans Hanifi Rohingya", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "hanifi-rohingya", "latin", "latin-ext" ], + "version": "v26", + "lastModified": "2023-03-01", + "files": { + "500": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYq4j6vvcudK8rN.ttf", + "600": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIbG5T6vvcudK8rN.ttf", + "700": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIb_5T6vvcudK8rN.ttf", + "regular": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4j6vvcudK8rN.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4g6ut88.ttf" + }, + { + "family": "Noto Sans Hanunoo", + "variants": [ "regular" ], + "subsets": [ "hanunoo", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanshanunoo/v17/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanshanunoo/v17/f0Xs0fCv8dxkDWlZSoXOj6CphMloFvEtGJw.ttf" + }, + { + "family": "Noto Sans Hatran", + "variants": [ "regular" ], + "subsets": [ "hatran" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanshatran/v15/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanshatran/v15/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_qM49qw.ttf" + }, + { + "family": "Noto Sans Hebrew", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "hebrew", "latin", "latin-ext" ], + "version": "v43", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4utoiJltutR2g.ttf", + "200": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX94qtoiJltutR2g.ttf", + "300": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXKYqtoiJltutR2g.ttf", + "500": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXRYqtoiJltutR2g.ttf", + "600": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXqY2toiJltutR2g.ttf", + "700": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXkI2toiJltutR2g.ttf", + "800": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX942toiJltutR2g.ttf", + "900": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX3o2toiJltutR2g.ttf", + "regular": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qdoyhh.ttf" + }, + { + "family": "Noto Sans Imperial Aramaic", + "variants": [ "regular" ], + "subsets": [ "imperial-aramaic" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansimperialaramaic/v15/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansimperialaramaic/v15/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrudnnXI.ttf" + }, + { + "family": "Noto Sans Indic Siyaq Numbers", + "variants": [ "regular" ], + "subsets": [ "indic-siyaq-numbers" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v15/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v15/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKy2XNu4.ttf" + }, + { + "family": "Noto Sans Inscriptional Pahlavi", + "variants": [ "regular" ], + "subsets": [ "inscriptional-pahlavi" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v15/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v15/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCZtufPA.ttf" + }, + { + "family": "Noto Sans Inscriptional Parthian", + "variants": [ "regular" ], + "subsets": [ "inscriptional-parthian" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansinscriptionalparthian/v15/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansinscriptionalparthian/v15/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2ykmBI0Dc.ttf" + }, + { + "family": "Noto Sans JP", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ + "cyrillic", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v52", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEi75vY0rw-oME.ttf", + "200": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEj75vY0rw-oME.ttf", + "300": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFE8j75vY0rw-oME.ttf", + "500": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj75vY0rw-oME.ttf", + "600": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFM8k75vY0rw-oME.ttf", + "700": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk75vY0rw-oME.ttf", + "800": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEk75vY0rw-oME.ttf", + "900": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFLgk75vY0rw-oME.ttf", + "regular": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj75vY0rw-oME.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj35rS1g.ttf" + }, + { + "family": "Noto Sans Javanese", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "javanese", "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2023-03-09", + "files": { + "500": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxKvkFFliZYWj4O8.ttf", + "600": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxEfjFFliZYWj4O8.ttf", + "700": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxH7jFFliZYWj4O8.ttf", + "regular": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFliZYWj4O8.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkJFhoYQ.ttf" + }, + { + "family": "Noto Sans KR", + "variants": [ "100", "300", "regular", "500", "700", "900" ], + "subsets": [ "korean", "latin" ], + "version": "v27", + "lastModified": "2022-09-27", + "files": { + "100": "http://fonts.gstatic.com/s/notosanskr/v27/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf", + "300": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf", + "500": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf", + "700": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf", + "900": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf", + "regular": "http://fonts.gstatic.com/s/notosanskr/v27/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanskr/v27/PbykFmXiEBPT4ITbgNA5CgmG137u.otf" + }, + { + "family": "Noto Sans Kaithi", + "variants": [ "regular" ], + "subsets": [ "kaithi" ], + "version": "v16", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanskaithi/v16/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanskaithi/v16/buEtppS9f8_vkXadMBJJu0tWjLwjciwAcg.ttf" + }, + { + "family": "Noto Sans Kannada", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "kannada", "latin", "latin-ext" ], + "version": "v26", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvMzSIMLsPKrkY.ttf", + "200": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvNzSIMLsPKrkY.ttf", + "300": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrGXNzSIMLsPKrkY.ttf", + "500": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrAnNzSIMLsPKrkY.ttf", + "600": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrOXKzSIMLsPKrkY.ttf", + "700": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrNzKzSIMLsPKrkY.ttf", + "800": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvKzSIMLsPKrkY.ttf", + "900": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrJLKzSIMLsPKrkY.ttf", + "regular": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvN_SMGKg.ttf" + }, + { + "family": "Noto Sans Kayah Li", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "kayah-li", "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-11-09", + "files": { + "500": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WBU3CZH4EXLuKVM.ttf", + "600": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WPkwCZH4EXLuKVM.ttf", + "700": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WMAwCZH4EXLuKVM.ttf", + "regular": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3OZDyFQ.ttf" + }, + { + "family": "Noto Sans Kharoshthi", + "variants": [ "regular" ], + "subsets": [ "kharoshthi", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanskharoshthi/v16/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanskharoshthi/v16/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE6z5plg.ttf" + }, + { + "family": "Noto Sans Khmer", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "khmer", "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAZz4kAbrddiA.ttf", + "200": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNAJz4kAbrddiA.ttf", + "300": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYvTAJz4kAbrddiA.ttf", + "500": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYu_AJz4kAbrddiA.ttf", + "600": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtTB5z4kAbrddiA.ttf", + "700": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtqB5z4kAbrddiA.ttf", + "800": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNB5z4kAbrddiA.ttf", + "900": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYskB5z4kAbrddiA.ttf", + "regular": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAKz5mgI.ttf" + }, + { + "family": "Noto Sans Khojki", + "variants": [ "regular" ], + "subsets": [ "khojki", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanskhojki/v16/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanskhojki/v16/-nFnOHM29Oofr2wohFbTuPPKVWpmG_Zx1w.ttf" + }, + { + "family": "Noto Sans Khudawadi", + "variants": [ "regular" ], + "subsets": [ "khudawadi" ], + "version": "v16", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanskhudawadi/v16/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanskhudawadi/v16/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHEjVtUQ.ttf" + }, + { + "family": "Noto Sans Lao", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "lao", "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccfdf5MK3riB2w.ttf", + "200": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cbdf5MK3riB2w.ttf", + "300": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4L8bdf5MK3riB2w.ttf", + "500": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4Q8bdf5MK3riB2w.ttf", + "600": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4r8Hdf5MK3riB2w.ttf", + "700": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4lsHdf5MK3riB2w.ttf", + "800": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cHdf5MK3riB2w.ttf", + "900": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt42MHdf5MK3riB2w.ttf", + "regular": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbtfpkO.ttf" + }, + { + "family": "Noto Sans Lao Looped", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "lao", "latin", "latin-ext" ], + "version": "v5", + "lastModified": "2023-03-09", + "files": { + "100": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr2M-Zw5V_T71k.ttf", + "200": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHr3M-Zw5V_T71k.ttf", + "300": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomKT3M-Zw5V_T71k.ttf", + "500": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomMj3M-Zw5V_T71k.ttf", + "600": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomCTwM-Zw5V_T71k.ttf", + "700": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomB3wM-Zw5V_T71k.ttf", + "800": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHrwM-Zw5V_T71k.ttf", + "900": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomFPwM-Zw5V_T71k.ttf", + "regular": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr3M-Zw5V_T71k.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr3A-d64Q.ttf" + }, + { + "family": "Noto Sans Lepcha", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "lepcha" ], + "version": "v16", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanslepcha/v16/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanslepcha/v16/0QI7MWlB_JWgA166SKhu05TekNS36ANmsg.ttf" + }, + { + "family": "Noto Sans Limbu", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "limbu" ], + "version": "v22", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVT0ctz.ttf" + }, + { + "family": "Noto Sans Linear A", + "variants": [ "regular" ], + "subsets": [ "linear-a" ], + "version": "v16", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanslineara/v16/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanslineara/v16/oPWS_l16kP4jCuhpgEGmwJOiA18FZj2Gz2vU.ttf" + }, + { + "family": "Noto Sans Linear B", + "variants": [ "regular" ], + "subsets": [ "linear-b" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanslinearb/v15/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanslinearb/v15/HhyJU4wt9vSgfHoORYOiXOckKNB737Il3RMB.ttf" + }, + { + "family": "Noto Sans Lisu", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "lisu" ], + "version": "v25", + "lastModified": "2023-03-09", + "files": { + "500": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP61wt29IlxkVdig.ttf", + "600": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPB1st29IlxkVdig.ttf", + "700": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPPlst29IlxkVdig.ttf", + "regular": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwd2tgh.ttf" + }, + { + "family": "Noto Sans Lycian", + "variants": [ "regular" ], + "subsets": [ "lycian" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA1_jQDA.ttf" + }, + { + "family": "Noto Sans Lydian", + "variants": [ "regular" ], + "subsets": [ "lydian" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanslydian/v15/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanslydian/v15/c4m71mVzGN7s8FmIukZJ1v4ZlcPRSULdNg.ttf" + }, + { + "family": "Noto Sans Mahajani", + "variants": [ "regular" ], + "subsets": [ "mahajani" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansmahajani/v15/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmahajani/v15/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD51hsoV.ttf" + }, + { + "family": "Noto Sans Malayalam", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "malayalam" ], + "version": "v26", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuH9BFzEr6HxEA.ttf", + "200": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuD9BFzEr6HxEA.ttf", + "300": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_GOD9BFzEr6HxEA.ttf", + "500": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_dOD9BFzEr6HxEA.ttf", + "600": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_mOf9BFzEr6HxEA.ttf", + "700": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_oef9BFzEr6HxEA.ttf", + "800": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuf9BFzEr6HxEA.ttf", + "900": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_7-f9BFzEr6HxEA.ttf", + "regular": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuDNBVbA.ttf" + }, + { + "family": "Noto Sans Mandaic", + "variants": [ "regular" ], + "subsets": [ "mandaic" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansmandaic/v15/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmandaic/v15/cIfnMbdWt1w_HgCcilqhKQBo_OsMI6_B9Ac.ttf" + }, + { + "family": "Noto Sans Manichaean", + "variants": [ "regular" ], + "subsets": [ "manichaean" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansmanichaean/v15/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmanichaean/v15/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfenqDPz8.ttf" + }, + { + "family": "Noto Sans Marchen", + "variants": [ "regular" ], + "subsets": [ "marchen" ], + "version": "v17", + "lastModified": "2022-11-02", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansmarchen/v17/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmarchen/v17/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMEhOmao.ttf" + }, + { + "family": "Noto Sans Masaram Gondi", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "masaram-gondi" ], + "version": "v17", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPntGf5xY.ttf" + }, + { + "family": "Noto Sans Math", + "variants": [ "regular" ], + "subsets": [ "math" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UEkH81k.ttf" + }, + { + "family": "Noto Sans Mayan Numerals", + "variants": [ "regular" ], + "subsets": [ "mayan-numerals" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansmayannumerals/v15/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmayannumerals/v15/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIi06sAs.ttf" + }, + { + "family": "Noto Sans Medefaidrin", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "medefaidrin" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmHjWlT318e5A3rw.ttf", + "600": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmJTRlT318e5A3rw.ttf", + "700": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmK3RlT318e5A3rw.ttf", + "regular": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWpTz_9Q.ttf" + }, + { + "family": "Noto Sans Meetei Mayek", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "meetei-mayek" ], + "version": "v14", + "lastModified": "2022-09-28", + "files": { + "100": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ__TW5PgeFYVa.ttf", + "200": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ_vTW5PgeFYVa.ttf", + "300": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1SX_vTW5PgeFYVa.ttf", + "500": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1T7_vTW5PgeFYVa.ttf", + "600": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1QX-fTW5PgeFYVa.ttf", + "700": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Qu-fTW5PgeFYVa.ttf", + "800": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ-fTW5PgeFYVa.ttf", + "900": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Rg-fTW5PgeFYVa.ttf", + "regular": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_sTX7vw.ttf" + }, + { + "family": "Noto Sans Mende Kikakui", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "mende-kikakui" ], + "version": "v28", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansmendekikakui/v28/11hRGoLHz17aKjQCWj-JHcLvu2Q5zZrnkbNCLUx_aDJLAHer.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmendekikakui/v28/11hRGoLHz17aKjQCWj-JHcLvu2Q5zZrnkbNCLXx-YjY.ttf" + }, + { + "family": "Noto Sans Meroitic", + "variants": [ "regular" ], + "subsets": [ "meroitic" ], + "version": "v16", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansmeroitic/v16/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmeroitic/v16/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UzgTJX.ttf" + }, + { + "family": "Noto Sans Miao", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "miao" ], + "version": "v17", + "lastModified": "2022-09-28", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZXjhW4E.ttf" + }, + { + "family": "Noto Sans Modi", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "modi" ], + "version": "v20", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansmodi/v20/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmodi/v20/pe03MIySN5pO62Z5YkFyT7jeas5rU1Q.ttf" + }, + { + "family": "Noto Sans Mongolian", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "mongolian" ], + "version": "v17", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrTo9Loq7w.ttf" + }, + { + "family": "Noto Sans Mono", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v26", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNI49rXVEQQL8Y.ttf", + "200": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNJ49rXVEQQL8Y.ttf", + "300": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_A1J49rXVEQQL8Y.ttf", + "500": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_GFJ49rXVEQQL8Y.ttf", + "600": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_I1O49rXVEQQL8Y.ttf", + "700": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_LRO49rXVEQQL8Y.ttf", + "800": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNO49rXVEQQL8Y.ttf", + "900": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_PpO49rXVEQQL8Y.ttf", + "regular": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49rXVEQQL8Y.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ09vdUA.ttf" + }, + { + "family": "Noto Sans Mro", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "mro" ], + "version": "v18", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39aD3bsg.ttf" + }, + { + "family": "Noto Sans Multani", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "multani" ], + "version": "v20", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO2A1r_Q.ttf" + }, + { + "family": "Noto Sans Myanmar", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "myanmar" ], + "version": "v20", + "lastModified": "2022-09-28", + "files": { + "100": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZs_y1ZtY3ymOryg38hOCSdOnFq0HGS1uEapkAC3AY.ttf", + "200": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HE-98EwiEwLxR-r.ttf", + "300": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFa9MEwiEwLxR-r.ttf", + "500": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEC9cEwiEwLxR-r.ttf", + "600": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEu8sEwiEwLxR-r.ttf", + "700": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFK88EwiEwLxR-r.ttf", + "800": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFW8MEwiEwLxR-r.ttf", + "900": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFy8cEwiEwLxR-r.ttf", + "regular": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0Hn31uE.ttf" + }, + { + "family": "Noto Sans NKo", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "nko" ], + "version": "v2", + "lastModified": "2023-01-25", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansnko/v2/esDX31ZdNv-KYGGJpKGk2_RpMpCMHMLBrdA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansnko/v2/esDX31ZdNv-KYGGJpKGk2_RpApGGGA.ttf" + }, + { + "family": "Noto Sans Nabataean", + "variants": [ "regular" ], + "subsets": [ "nabataean" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansnabataean/v15/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansnabataean/v15/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNkBN3gA.ttf" + }, + { + "family": "Noto Sans New Tai Lue", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "new-tai-lue" ], + "version": "v20", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pddfAYUbghFPKzeY.ttf", + "600": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdTvHYUbghFPKzeY.ttf", + "700": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdQLHYUbghFPKzeY.ttf", + "regular": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAYUbghFPKzeY.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAUUfqgA.ttf" + }, + { + "family": "Noto Sans Newa", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "newa" ], + "version": "v16", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg_n-oto.ttf" + }, + { + "family": "Noto Sans Nushu", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "nushu" ], + "version": "v19", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansnushu/v19/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansnushu/v19/rnCw-xRQ3B7652emAbAe_Ai1IYa1WVoI.ttf" + }, + { + "family": "Noto Sans Ogham", + "variants": [ "regular" ], + "subsets": [ "ogham" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansogham/v15/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansogham/v15/kmKlZqk1GBDGN0mY6k5lmEmww4hbtpNe.ttf" + }, + { + "family": "Noto Sans Ol Chiki", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "ol-chiki" ], + "version": "v21", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALVs267I6gVrz5gQ.ttf", + "600": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALbcx67I6gVrz5gQ.ttf", + "700": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALY4x67I6gVrz5gQ.ttf", + "regular": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk227MwhQ.ttf" + }, + { + "family": "Noto Sans Old Hungarian", + "variants": [ "regular" ], + "subsets": [ "old-hungarian" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansoldhungarian/v15/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansoldhungarian/v15/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgSfiZAo.ttf" + }, + { + "family": "Noto Sans Old Italic", + "variants": [ "regular" ], + "subsets": [ "old-italic" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansolditalic/v15/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansolditalic/v15/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tVlQfxw.ttf" + }, + { + "family": "Noto Sans Old North Arabian", + "variants": [ "regular" ], + "subsets": [ "old-north-arabian" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansoldnortharabian/v15/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansoldnortharabian/v15/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBgmEA7.ttf" + }, + { + "family": "Noto Sans Old Permic", + "variants": [ "regular" ], + "subsets": [ "old-permic" ], + "version": "v16", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansoldpermic/v16/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansoldpermic/v16/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKIdWiPs.ttf" + }, + { + "family": "Noto Sans Old Persian", + "variants": [ "regular" ], + "subsets": [ "old-persian" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansoldpersian/v15/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansoldpersian/v15/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_dqeNU.ttf" + }, + { + "family": "Noto Sans Old Sogdian", + "variants": [ "regular" ], + "subsets": [ "old-sogdian" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansoldsogdian/v15/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansoldsogdian/v15/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURtLnOgu.ttf" + }, + { + "family": "Noto Sans Old South Arabian", + "variants": [ "regular" ], + "subsets": [ "old-south-arabian" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansoldsoutharabian/v15/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansoldsoutharabian/v15/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKB1eFH.ttf" + }, + { + "family": "Noto Sans Old Turkic", + "variants": [ "regular" ], + "subsets": [ "old-turkic" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansoldturkic/v15/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansoldturkic/v15/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsH2Qhkg.ttf" + }, + { + "family": "Noto Sans Oriya", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "oriya" ], + "version": "v27", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0fq_c6LhHBRe-.ttf", + "200": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0f6_c6LhHBRe-.ttf", + "300": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Iviqf6_c6LhHBRe-.ttf", + "500": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvjGf6_c6LhHBRe-.ttf", + "600": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgqeK_c6LhHBRe-.ttf", + "700": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgTeK_c6LhHBRe-.ttf", + "800": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0eK_c6LhHBRe-.ttf", + "900": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvhdeK_c6LhHBRe-.ttf", + "regular": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_c6LhHBRe-.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f5_d4rw.ttf" + }, + { + "family": "Noto Sans Osage", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "osage" ], + "version": "v18", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtnR1yW.ttf" + }, + { + "family": "Noto Sans Osmanya", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "osmanya" ], + "version": "v18", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmw6lTYo.ttf" + }, + { + "family": "Noto Sans Pahawh Hmong", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "pahawh-hmong" ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanspahawhhmong/v18/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanspahawhhmong/v18/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7knzY1dw.ttf" + }, + { + "family": "Noto Sans Palmyrene", + "variants": [ "regular" ], + "subsets": [ "palmyrene" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanspalmyrene/v15/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanspalmyrene/v15/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCDnOzYg.ttf" + }, + { + "family": "Noto Sans Pau Cin Hau", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "pau-cin-hau" ], + "version": "v20", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanspaucinhau/v20/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanspaucinhau/v20/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehItjU-u.ttf" + }, + { + "family": "Noto Sans Phags Pa", + "variants": [ "regular" ], + "subsets": [ "phags-pa" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChUq06o.ttf" + }, + { + "family": "Noto Sans Phoenician", + "variants": [ "regular" ], + "subsets": [ "phoenician" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansphoenician/v15/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansphoenician/v15/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5U7IqNs.ttf" + }, + { + "family": "Noto Sans Psalter Pahlavi", + "variants": [ "regular" ], + "subsets": [ "psalter-pahlavi" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanspsalterpahlavi/v15/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanspsalterpahlavi/v15/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w5GzAtQ.ttf" + }, + { + "family": "Noto Sans Rejang", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "rejang" ], + "version": "v18", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansrejang/v18/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansrejang/v18/Ktk2AKuMeZjqPnXgyqrib7DIogqwB4K9XQ.ttf" + }, + { + "family": "Noto Sans Runic", + "variants": [ "regular" ], + "subsets": [ "runic" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansrunic/v15/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansrunic/v15/H4c_BXWPl9DZ0Xe_nHUaus7W68WmahBr.ttf" + }, + { + "family": "Noto Sans SC", + "variants": [ "100", "300", "regular", "500", "700", "900" ], + "subsets": [ "chinese-simplified", "latin" ], + "version": "v26", + "lastModified": "2022-09-27", + "files": { + "100": "http://fonts.gstatic.com/s/notosanssc/v26/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf", + "300": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf", + "500": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf", + "700": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf", + "900": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf", + "regular": "http://fonts.gstatic.com/s/notosanssc/v26/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssc/v26/k3kXo84MPvpLmixcA63oeALRKIKL.otf" + }, + { + "family": "Noto Sans Samaritan", + "variants": [ "regular" ], + "subsets": [ "samaritan" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanssamaritan/v15/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUo5jNlOVMzQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssamaritan/v15/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOYo9pMg.ttf" + }, + { + "family": "Noto Sans Saurashtra", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "saurashtra" ], + "version": "v19", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanssaurashtra/v19/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssaurashtra/v19/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef-nchBc.ttf" + }, + { + "family": "Noto Sans Sharada", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "sharada" ], + "version": "v16", + "lastModified": "2022-11-18", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwrXKNug.ttf" + }, + { + "family": "Noto Sans Shavian", + "variants": [ "regular" ], + "subsets": [ "shavian" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansshavian/v15/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansshavian/v15/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4HFRQJ0.ttf" + }, + { + "family": "Noto Sans Siddham", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "siddham" ], + "version": "v17", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanssiddham/v17/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssiddham/v17/OZpZg-FwqiNLe9PELUikxTWDoCCeGpncmXY.ttf" + }, + { + "family": "Noto Sans SignWriting", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "signwriting" ], + "version": "v1", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanssignwriting/v1/Noas6VX_wIWFbTTCrYmvy9A2UnkL-2SZAWiUEVCARYQemg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssignwriting/v1/Noas6VX_wIWFbTTCrYmvy9A2UnkL-2SZAWikEFqE.ttf" + }, + { + "family": "Noto Sans Sinhala", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "sinhala" ], + "version": "v26", + "lastModified": "2022-09-28", + "files": { + "100": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2b5lgLpJwbQRM.ttf", + "200": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2a5lgLpJwbQRM.ttf", + "300": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwlOa5lgLpJwbQRM.ttf", + "500": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwj-a5lgLpJwbQRM.ttf", + "600": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwtOd5lgLpJwbQRM.ttf", + "700": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwuqd5lgLpJwbQRM.ttf", + "800": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2d5lgLpJwbQRM.ttf", + "900": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwqSd5lgLpJwbQRM.ttf", + "regular": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a1lkBoA.ttf" + }, + { + "family": "Noto Sans Sogdian", + "variants": [ "regular" ], + "subsets": [ "sogdian" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanssogdian/v15/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssogdian/v15/taiQGn5iC4--qtsfi4Jp6eHPnfxQBr-_NGo.ttf" + }, + { + "family": "Noto Sans Sora Sompeng", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "sora-sompeng" ], + "version": "v24", + "lastModified": "2023-03-09", + "files": { + "500": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHRO18DpZXJQd4Mu.ttf", + "600": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSi0MDpZXJQd4Mu.ttf", + "700": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSb0MDpZXJQd4Mu.ttf", + "regular": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR81_Dob3Y.ttf" + }, + { + "family": "Noto Sans Soyombo", + "variants": [ "regular" ], + "subsets": [ "soyombo" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanssoyombo/v15/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssoyombo/v15/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY3FqKlc.ttf" + }, + { + "family": "Noto Sans Sundanese", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "sundanese" ], + "version": "v24", + "lastModified": "2023-03-01", + "files": { + "500": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxbNNHCizv7fQES.ttf", + "600": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6cty3M9HCizv7fQES.ttf", + "700": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctyOM9HCizv7fQES.ttf", + "regular": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNOHDgT8.ttf" + }, + { + "family": "Noto Sans Syloti Nagri", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "syloti-nagri" ], + "version": "v20", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGJVb7Mw.ttf" + }, + { + "family": "Noto Sans Symbols", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "symbols" ], + "version": "v40", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ4gavVFRkzrbQ.ttf", + "200": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_Q8gavVFRkzrbQ.ttf", + "300": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gIw8gavVFRkzrbQ.ttf", + "500": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gTw8gavVFRkzrbQ.ttf", + "600": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gowggavVFRkzrbQ.ttf", + "700": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gmgggavVFRkzrbQ.ttf", + "800": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_QggavVFRkzrbQ.ttf", + "900": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g1AggavVFRkzrbQ.ttf", + "regular": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8Qa_9B.ttf" + }, + { + "family": "Noto Sans Symbols 2", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "symbols" ], + "version": "v17", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanssymbols2/v17/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssymbols2/v17/I_uyMoGduATTei9eI8daxVHDyfisHr71-pLgeQ.ttf" + }, + { + "family": "Noto Sans Syriac", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "syriac" ], + "version": "v16", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9caJyZfUL_FC.ttf", + "200": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD9MaJyZfUL_FC.ttf", + "300": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Ud9MaJyZfUL_FC.ttf", + "500": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Vx9MaJyZfUL_FC.ttf", + "600": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wd88aJyZfUL_FC.ttf", + "700": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wk88aJyZfUL_FC.ttf", + "800": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD88aJyZfUL_FC.ttf", + "900": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Xq88aJyZfUL_FC.ttf", + "regular": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9MaJyZfUL_FC.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9PaIw5M.ttf" + }, + { + "family": "Noto Sans TC", + "variants": [ "100", "300", "regular", "500", "700", "900" ], + "subsets": [ "chinese-traditional", "latin" ], + "version": "v26", + "lastModified": "2022-09-27", + "files": { + "100": "http://fonts.gstatic.com/s/notosanstc/v26/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf", + "300": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf", + "500": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf", + "700": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf", + "900": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf", + "regular": "http://fonts.gstatic.com/s/notosanstc/v26/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanstc/v26/-nF7OG829Oofr2wohFbTp9i1PiEJ.otf" + }, + { + "family": "Noto Sans Tagalog", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "tagalog" ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanstagalog/v18/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanstagalog/v18/J7aFnoNzCnFcV9ZI-sUYuvote1R0wzEBCcw.ttf" + }, + { + "family": "Noto Sans Tagbanwa", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "tagbanwa" ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanstagbanwa/v18/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanstagbanwa/v18/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_npRz4A.ttf" + }, + { + "family": "Noto Sans Tai Le", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "tai-le" ], + "version": "v17", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR5wtO_Xw.ttf" + }, + { + "family": "Noto Sans Tai Tham", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "tai-tham" ], + "version": "v19", + "lastModified": "2022-11-09", + "files": { + "500": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBBcbPgquyaRGKMw.ttf", + "600": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBPscPgquyaRGKMw.ttf", + "700": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBMIcPgquyaRGKMw.ttf", + "regular": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbDgukzQ.ttf" + }, + { + "family": "Noto Sans Tai Viet", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "tai-viet" ], + "version": "v16", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanstaiviet/v16/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanstaiviet/v16/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZb6oQb.ttf" + }, + { + "family": "Noto Sans Takri", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "takri" ], + "version": "v21", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanstakri/v21/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanstakri/v21/TuGJUVpzXI5FBtUq5a8bnKIOdTwgNeXS.ttf" + }, + { + "family": "Noto Sans Tamil", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "tamil" ], + "version": "v27", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGor0RqKDt_EvT.ttf", + "200": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGo70RqKDt_EvT.ttf", + "300": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7uYo70RqKDt_EvT.ttf", + "500": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7v0o70RqKDt_EvT.ttf", + "600": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7sYpL0RqKDt_EvT.ttf", + "700": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7shpL0RqKDt_EvT.ttf", + "800": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGpL0RqKDt_EvT.ttf", + "900": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tvpL0RqKDt_EvT.ttf", + "regular": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo40QoqQ.ttf" + }, + { + "family": "Noto Sans Tamil Supplement", + "variants": [ "regular" ], + "subsets": [ "tamil-supplement" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanstamilsupplement/v19/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanstamilsupplement/v19/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax8vtC-c.ttf" + }, + { + "family": "Noto Sans Tangsa", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "tangsa" ], + "version": "v3", + "lastModified": "2023-03-09", + "files": { + "500": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1qkyoRYdplyJDA.ttf", + "600": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2GlCoRYdplyJDA.ttf", + "700": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2_lCoRYdplyJDA.ttf", + "regular": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1YkyoRYdplyJDA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1YkxoQa94.ttf" + }, + { + "family": "Noto Sans Telugu", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "telugu" ], + "version": "v25", + "lastModified": "2023-04-04", + "files": { + "100": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezfqQUbf-3v37w.ttf", + "200": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zbqQUbf-3v37w.ttf", + "300": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntJTbqQUbf-3v37w.ttf", + "500": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntSTbqQUbf-3v37w.ttf", + "600": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntpTHqQUbf-3v37w.ttf", + "700": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntnDHqQUbf-3v37w.ttf", + "800": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zHqQUbf-3v37w.ttf", + "900": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt0jHqQUbf-3v37w.ttf", + "regular": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbaQEzb.ttf" + }, + { + "family": "Noto Sans Thaana", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "thaana" ], + "version": "v23", + "lastModified": "2023-03-09", + "files": { + "100": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbxLhnu4-tbNu.ttf", + "200": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VrbhLhnu4-tbNu.ttf", + "300": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4W1bhLhnu4-tbNu.ttf", + "500": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XZbhLhnu4-tbNu.ttf", + "600": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4U1aRLhnu4-tbNu.ttf", + "700": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4UMaRLhnu4-tbNu.ttf", + "800": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VraRLhnu4-tbNu.ttf", + "900": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VCaRLhnu4-tbNu.ttf", + "regular": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbiLglOo.ttf" + }, + { + "family": "Noto Sans Thai", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "thai" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RspzF-QRvzzXg.ttf", + "200": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRtpzF-QRvzzXg.ttf", + "300": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU8ptpzF-QRvzzXg.ttf", + "500": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU6ZtpzF-QRvzzXg.ttf", + "600": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU0pqpzF-QRvzzXg.ttf", + "700": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU3NqpzF-QRvzzXg.ttf", + "800": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRqpzF-QRvzzXg.ttf", + "900": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUz1qpzF-QRvzzXg.ttf", + "regular": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtlzB0RQ.ttf" + }, + { + "family": "Noto Sans Thai Looped", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "thai" ], + "version": "v14", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50fF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3YX6AYeCT_Wfd1.ttf", + "200": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y84E4UgrzUO5sKA.ttf", + "300": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yl4I4UgrzUO5sKA.ttf", + "500": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yz4M4UgrzUO5sKA.ttf", + "600": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y44Q4UgrzUO5sKA.ttf", + "700": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yh4U4UgrzUO5sKA.ttf", + "800": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Ym4Y4UgrzUO5sKA.ttf", + "900": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yv4c4UgrzUO5sKA.ttf", + "regular": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gO6ocWiHvWQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3QOqAY.ttf" + }, + { + "family": "Noto Sans Tifinagh", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "tifinagh" ], + "version": "v17", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanstifinagh/v17/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanstifinagh/v17/I_uzMoCduATTei9eI8dawkHIwvmhCvbX67PA.ttf" + }, + { + "family": "Noto Sans Tirhuta", + "variants": [ "regular" ], + "subsets": [ "tirhuta" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanstirhuta/v15/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanstirhuta/v15/t5t6IQYRNJ6TWjahPR6X-M-apUyby4uHWh8.ttf" + }, + { + "family": "Noto Sans Ugaritic", + "variants": [ "regular" ], + "subsets": [ "ugaritic" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansugaritic/v15/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansugaritic/v15/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXUMxAM.ttf" + }, + { + "family": "Noto Sans Vai", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vai" ], + "version": "v17", + "lastModified": "2022-09-28", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrUdMXmCA.ttf" + }, + { + "family": "Noto Sans Wancho", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "wancho" ], + "version": "v17", + "lastModified": "2022-09-28", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBmALiog.ttf" + }, + { + "family": "Noto Sans Warang Citi", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "warang-citi" ], + "version": "v17", + "lastModified": "2022-09-28", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKhpO9G.ttf" + }, + { + "family": "Noto Sans Yi", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "yi" ], + "version": "v19", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/notosansyi/v19/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosansyi/v19/sJoD3LFXjsSdcnzn071rO3aZxFrN.ttf" + }, + { + "family": "Noto Sans Zanabazar Square", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "zanabazar-square" ], + "version": "v16", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notosanszanabazarsquare/v16/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notosanszanabazarsquare/v16/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQuJwMiU.ttf" + }, + { + "family": "Noto Serif", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/notoserif/v21/ga6Law1J5X9T9RW6j9bNdOwzTRCUcM1IKoY.ttf", + "regular": "http://fonts.gstatic.com/s/notoserif/v21/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf", + "italic": "http://fonts.gstatic.com/s/notoserif/v21/ga6Kaw1J5X9T9RW6j9bNfFIWbTq6fMRRMw.ttf", + "700italic": "http://fonts.gstatic.com/s/notoserif/v21/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedO9NOoYIDg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserif/v21/ga6Iaw1J5X9T9RW6j9bNfFEWbQ.ttf" + }, + { + "family": "Noto Serif Ahom", + "variants": [ "regular" ], + "subsets": [ "ahom", "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/notoserifahom/v19/FeVIS0hfp6cprmEUffAW_fUL_AN-wuYrPFiwaw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifahom/v19/FeVIS0hfp6cprmEUffAW_fUL_ANOw-wv.ttf" + }, + { + "family": "Noto Serif Armenian", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "armenian", "latin", "latin-ext" ], + "version": "v25", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8ObxvXagGdkbg.ttf", + "200": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8KbxvXagGdkbg.ttf", + "300": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZ1cKbxvXagGdkbg.ttf", + "500": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZucKbxvXagGdkbg.ttf", + "600": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZVcWbxvXagGdkbg.ttf", + "700": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZbMWbxvXagGdkbg.ttf", + "800": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8WbxvXagGdkbg.ttf", + "900": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZIsWbxvXagGdkbg.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8KbxvXagGdkbg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8Krx__e.ttf" + }, + { + "family": "Noto Serif Balinese", + "variants": [ "regular" ], + "subsets": [ "balinese", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/notoserifbalinese/v16/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRbgJdhapcUU.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifbalinese/v16/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXdbkDcg.ttf" + }, + { + "family": "Noto Serif Bengali", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "bengali", "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAH3qn4LjQH8yD.ttf", + "200": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAHnqn4LjQH8yD.ttf", + "300": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfdeHnqn4LjQH8yD.ttf", + "500": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcyHnqn4LjQH8yD.ttf", + "600": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffeGXqn4LjQH8yD.ttf", + "700": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffnGXqn4LjQH8yD.ttf", + "800": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAGXqn4LjQH8yD.ttf", + "900": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfepGXqn4LjQH8yD.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHnqn4LjQH8yD.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHkqm6rw.ttf" + }, + { + "family": "Noto Serif Devanagari", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v28", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-og-HMUe1u_dv.ttf", + "200": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-ow-HMUe1u_dv.ttf", + "300": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTBgow-HMUe1u_dv.ttf", + "500": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTAMow-HMUe1u_dv.ttf", + "600": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDgpA-HMUe1u_dv.ttf", + "700": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDZpA-HMUe1u_dv.ttf", + "800": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-pA-HMUe1u_dv.ttf", + "900": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTCXpA-HMUe1u_dv.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-ow-HMUe1u_dv.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-oz-GO0M.ttf" + }, + { + "family": "Noto Serif Display", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd49gKaDU9hvzC.ttf", + "200": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd4tgKaDU9hvzC.ttf", + "300": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVoD4tgKaDU9hvzC.ttf", + "500": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpv4tgKaDU9hvzC.ttf", + "600": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVqD5dgKaDU9hvzC.ttf", + "700": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVq65dgKaDU9hvzC.ttf", + "800": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd5dgKaDU9hvzC.ttf", + "900": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVr05dgKaDU9hvzC.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4tgKaDU9hvzC.ttf", + "100italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBIYjEfg-zCmf4.ttf", + "200italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBJYjEfg-zCmf4.ttf", + "300italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoW5JYjEfg-zCmf4.ttf", + "italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBJYjEfg-zCmf4.ttf", + "500italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoQJJYjEfg-zCmf4.ttf", + "600italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-Voe5OYjEfg-zCmf4.ttf", + "700italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoddOYjEfg-zCmf4.ttf", + "800italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBOYjEfg-zCmf4.ttf", + "900italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoZlOYjEfg-zCmf4.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4ugLYjE.ttf" + }, + { + "family": "Noto Serif Dogra", + "variants": [ "regular" ], + "subsets": [ "dogra" ], + "version": "v16", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/notoserifdogra/v16/MQpP-XquKMC7ROPP3QOOlm7xPu3fGy63IbPzkns.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifdogra/v16/MQpP-XquKMC7ROPP3QOOlm7xPu3fKy-9JQ.ttf" + }, + { + "family": "Noto Serif Ethiopic", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "ethiopic", "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSQjkaO9UVLyiw.ttf", + "200": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSUjkaO9UVLyiw.ttf", + "300": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCkyUjkaO9UVLyiw.ttf", + "500": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxC_yUjkaO9UVLyiw.ttf", + "600": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCEyIjkaO9UVLyiw.ttf", + "700": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCKiIjkaO9UVLyiw.ttf", + "800": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSIjkaO9UVLyiw.ttf", + "900": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCZCIjkaO9UVLyiw.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUjkaO9UVLyiw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUTkKm5.ttf" + }, + { + "family": "Noto Serif Georgian", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "georgian", "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvsfdzTw-FgZxQ.ttf", + "200": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzvofdzTw-FgZxQ.ttf", + "300": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSEPofdzTw-FgZxQ.ttf", + "500": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSfPofdzTw-FgZxQ.ttf", + "600": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSkP0fdzTw-FgZxQ.ttf", + "700": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSqf0fdzTw-FgZxQ.ttf", + "800": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzv0fdzTw-FgZxQ.ttf", + "900": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aS5_0fdzTw-FgZxQ.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvofdzTw-FgZxQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvovdj70.ttf" + }, + { + "family": "Noto Serif Grantha", + "variants": [ "regular" ], + "subsets": [ "grantha", "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-28", + "files": { + "regular": "http://fonts.gstatic.com/s/notoserifgrantha/v19/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqFENLR7fHGw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifgrantha/v19/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiaFUlP.ttf" + }, + { + "family": "Noto Serif Gujarati", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "gujarati", "latin", "latin-ext" ], + "version": "v26", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycYzuM1Kf-OJu.ttf", + "200": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuaycIzuM1Kf-OJu.ttf", + "300": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuZscIzuM1Kf-OJu.ttf", + "500": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYAcIzuM1Kf-OJu.ttf", + "600": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Hubsd4zuM1Kf-OJu.ttf", + "700": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HubVd4zuM1Kf-OJu.ttf", + "800": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huayd4zuM1Kf-OJu.ttf", + "900": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huabd4zuM1Kf-OJu.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycIzuM1Kf-OJu.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycLzvOVY.ttf" + }, + { + "family": "Noto Serif Gurmukhi", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "gurmukhi", "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eBTNmqVU7y6l.ttf", + "200": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-eRTNmqVU7y6l.ttf", + "300": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr7geRTNmqVU7y6l.ttf", + "500": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6MeRTNmqVU7y6l.ttf", + "600": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5gfhTNmqVU7y6l.ttf", + "700": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5ZfhTNmqVU7y6l.ttf", + "800": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-fhTNmqVU7y6l.ttf", + "900": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4XfhTNmqVU7y6l.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eRTNmqVU7y6l.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eSTMkKE.ttf" + }, + { + "family": "Noto Serif HK", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ + "chinese-hongkong", + "cyrillic", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v2", + "lastModified": "2022-09-27", + "files": { + "200": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-K2RmV9Su1M6i.ttf", + "300": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMcgK2RmV9Su1M6i.ttf", + "500": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMdMK2RmV9Su1M6i.ttf", + "600": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMegLGRmV9Su1M6i.ttf", + "700": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMeZLGRmV9Su1M6i.ttf", + "800": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-LGRmV9Su1M6i.ttf", + "900": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMfXLGRmV9Su1M6i.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMd-K2RmV9Su1M6i.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMd-K1RnXdA.ttf" + }, + { + "family": "Noto Serif Hebrew", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "hebrew", "latin", "latin-ext" ], + "version": "v25", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwTAG8_vlQxz24.ttf", + "200": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwSAG8_vlQxz24.ttf", + "300": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVFISAG8_vlQxz24.ttf", + "500": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVD4SAG8_vlQxz24.ttf", + "600": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVNIVAG8_vlQxz24.ttf", + "700": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVOsVAG8_vlQxz24.ttf", + "800": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwVAG8_vlQxz24.ttf", + "900": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVKUVAG8_vlQxz24.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSAG8_vlQxz24.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSMG41ug.ttf" + }, + { + "family": "Noto Serif JP", + "variants": [ "200", "300", "regular", "500", "600", "700", "900" ], + "subsets": [ "japanese", "latin" ], + "version": "v21", + "lastModified": "2022-09-27", + "files": { + "200": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf", + "300": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf", + "500": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf", + "600": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf", + "700": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf", + "900": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf", + "regular": "http://fonts.gstatic.com/s/notoserifjp/v21/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifjp/v21/xn7mYHs72GKoTvER4Gn3b5eMbN-uYA.otf" + }, + { + "family": "Noto Serif KR", + "variants": [ "200", "300", "regular", "500", "600", "700", "900" ], + "subsets": [ "korean", "latin" ], + "version": "v20", + "lastModified": "2022-09-27", + "files": { + "200": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf", + "300": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf", + "500": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf", + "600": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf", + "700": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf", + "900": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf", + "regular": "http://fonts.gstatic.com/s/notoserifkr/v20/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifkr/v20/3Jn7SDn90Gmq2mr3blnHaTZXRuFj1g.otf" + }, + { + "family": "Noto Serif Kannada", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "kannada", "latin", "latin-ext" ], + "version": "v26", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYCceRJ71svgcI.ttf", + "200": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYDceRJ71svgcI.ttf", + "300": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgZgDceRJ71svgcI.ttf", + "500": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgfQDceRJ71svgcI.ttf", + "600": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgRgEceRJ71svgcI.ttf", + "700": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgSEEceRJ71svgcI.ttf", + "800": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYEceRJ71svgcI.ttf", + "900": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgW8EceRJ71svgcI.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDceRJ71svgcI.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDQeVD6w.ttf" + }, + { + "family": "Noto Serif Khmer", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "khmer", "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B4wXEZK9Xo4xg.ttf", + "200": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaB8wXEZK9Xo4xg.ttf", + "300": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNth8wXEZK9Xo4xg.ttf", + "500": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN2h8wXEZK9Xo4xg.ttf", + "600": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNNhgwXEZK9Xo4xg.ttf", + "700": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNDxgwXEZK9Xo4xg.ttf", + "800": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaBgwXEZK9Xo4xg.ttf", + "900": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNQRgwXEZK9Xo4xg.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8wXEZK9Xo4xg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8AXUxO.ttf" + }, + { + "family": "Noto Serif Khojki", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "khojki", "latin", "latin-ext" ], + "version": "v8", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY4AhvyZ0Qtc5HAQ.ttf", + "600": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYDA9vyZ0Qtc5HAQ.ttf", + "700": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYNQ9vyZ0Qtc5HAQ.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY0ghvyZ0Qtc5HAQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY0ghfyJcU.ttf" + }, + { + "family": "Noto Serif Lao", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "lao", "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMLrvOjlmyhHHQ.ttf", + "200": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMKrvOjlmyhHHQ.ttf", + "300": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8Vb0KrvOjlmyhHHQ.ttf", + "500": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VdEKrvOjlmyhHHQ.ttf", + "600": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VT0NrvOjlmyhHHQ.ttf", + "700": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VQQNrvOjlmyhHHQ.ttf", + "800": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMNrvOjlmyhHHQ.ttf", + "900": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VUoNrvOjlmyhHHQ.ttf", + "regular": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKrvOjlmyhHHQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKnvKpkg.ttf" + }, + { + "family": "Noto Serif Malayalam", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "malayalam" ], + "version": "v28", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-1fnVwHpQVySg.ttf", + "200": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-xfnVwHpQVySg.ttf", + "300": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL16exfnVwHpQVySg.ttf", + "500": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1hexfnVwHpQVySg.ttf", + "600": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1aetfnVwHpQVySg.ttf", + "700": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1UOtfnVwHpQVySg.ttf", + "800": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-tfnVwHpQVySg.ttf", + "900": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1HutfnVwHpQVySg.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xfnVwHpQVySg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xvnFYD.ttf" + }, + { + "family": "Noto Serif Myanmar", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "myanmar" ], + "version": "v13", + "lastModified": "2022-09-28", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJudM7F2Yv76aBKKs-bHMQfAHUw3jnNwBDsU9X6RPzQ.ttf", + "200": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNbDHMefv2TeXJng.ttf", + "300": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNCDLMefv2TeXJng.ttf", + "500": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNUDPMefv2TeXJng.ttf", + "600": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNfDTMefv2TeXJng.ttf", + "700": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNGDXMefv2TeXJng.ttf", + "800": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNBDbMefv2TeXJng.ttf", + "900": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNIDfMefv2TeXJng.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1pBrocdDqRA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jnFpRDs.ttf" + }, + { + "family": "Noto Serif NP Hmong", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "nyiakeng-puachue-hmong" ], + "version": "v1", + "lastModified": "2022-12-08", + "files": { + "500": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbj9hFLp3u0rVO-d.ttf", + "600": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgRg1Lp3u0rVO-d.ttf", + "700": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgog1Lp3u0rVO-d.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbjPhFLp3u0rVO-d.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbjPhGLo1Ok.ttf" + }, + { + "family": "Noto Serif Oriya", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "oriya" ], + "version": "v4", + "lastModified": "2023-03-09", + "files": { + "500": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxru_Hy-v039MF1j.ttf", + "600": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxoC-3y-v039MF1j.ttf", + "700": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxo7-3y-v039MF1j.ttf", + "regular": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxrc_Hy-v039MF1j.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxrc_Ey_tUk.ttf" + }, + { + "family": "Noto Serif SC", + "variants": [ "200", "300", "regular", "500", "600", "700", "900" ], + "subsets": [ "chinese-simplified", "latin" ], + "version": "v22", + "lastModified": "2022-09-27", + "files": { + "200": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf", + "300": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf", + "500": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf", + "600": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf", + "700": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf", + "900": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf", + "regular": "http://fonts.gstatic.com/s/notoserifsc/v22/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifsc/v22/H4chBXePl9DZ0Xe7gG9cyOj7kqeWbQ.otf" + }, + { + "family": "Noto Serif Sinhala", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "sinhala" ], + "version": "v26", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxRlMsxaLRn3W-.ttf", + "200": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExR1MsxaLRn3W-.ttf", + "300": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pHvR1MsxaLRn3W-.ttf", + "500": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGDR1MsxaLRn3W-.ttf", + "600": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFvQFMsxaLRn3W-.ttf", + "700": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFWQFMsxaLRn3W-.ttf", + "800": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExQFMsxaLRn3W-.ttf", + "900": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pEYQFMsxaLRn3W-.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR1MsxaLRn3W-.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR2Mtz6Y.ttf" + }, + { + "family": "Noto Serif TC", + "variants": [ "200", "300", "regular", "500", "600", "700", "900" ], + "subsets": [ "chinese-traditional", "latin" ], + "version": "v23", + "lastModified": "2022-09-27", + "files": { + "200": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf", + "300": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf", + "500": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf", + "600": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf", + "700": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf", + "900": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf", + "regular": "http://fonts.gstatic.com/s/notoseriftc/v23/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoseriftc/v23/XLYgIZb5bJNDGYxLBibeHZ0BtnYOSw.otf" + }, + { + "family": "Noto Serif Tamil", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "tamil" ], + "version": "v28", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN6R8Pz3v8Etew.ttf", + "200": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNN-R8Pz3v8Etew.ttf", + "300": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecat6t-R8Pz3v8Etew.ttf", + "500": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatht-R8Pz3v8Etew.ttf", + "600": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatatiR8Pz3v8Etew.ttf", + "700": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatU9iR8Pz3v8Etew.ttf", + "800": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNNiR8Pz3v8Etew.ttf", + "900": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatHdiR8Pz3v8Etew.ttf", + "regular": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-R8Pz3v8Etew.ttf", + "100italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5svbzncQ9e3wx.ttf", + "200italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5s_bzncQ9e3wx.ttf", + "300italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJwns_bzncQ9e3wx.ttf", + "italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5s_bzncQ9e3wx.ttf", + "500italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJxLs_bzncQ9e3wx.ttf", + "600italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyntPbzncQ9e3wx.ttf", + "700italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyetPbzncQ9e3wx.ttf", + "800italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5tPbzncQ9e3wx.ttf", + "900italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJzQtPbzncQ9e3wx.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-h8fbz.ttf" + }, + { + "family": "Noto Serif Tangut", + "variants": [ "regular" ], + "subsets": [ "tangut" ], + "version": "v15", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/notoseriftangut/v15/xn76YGc72GKoTvER4Gn3b4m9Ern7Em41fcvN2KT4.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoseriftangut/v15/xn76YGc72GKoTvER4Gn3b4m9Ern7El40d88.ttf" + }, + { + "family": "Noto Serif Telugu", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "telugu" ], + "version": "v25", + "lastModified": "2023-04-04", + "files": { + "100": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TGwuY2fjgrZYA.ttf", + "200": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTCwuY2fjgrZYA.ttf", + "300": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DqzCwuY2fjgrZYA.ttf", + "500": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DxzCwuY2fjgrZYA.ttf", + "600": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DKzewuY2fjgrZYA.ttf", + "700": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DEjewuY2fjgrZYA.ttf", + "800": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTewuY2fjgrZYA.ttf", + "900": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DXDewuY2fjgrZYA.ttf", + "regular": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCwuY2fjgrZYA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCAuIeb.ttf" + }, + { + "family": "Noto Serif Thai", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "thai" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiFuRRCmsdu0Qx.ttf", + "200": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiF-RRCmsdu0Qx.ttf", + "300": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0p8F-RRCmsdu0Qx.ttf", + "500": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oQF-RRCmsdu0Qx.ttf", + "600": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0r8EORRCmsdu0Qx.ttf", + "700": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0rFEORRCmsdu0Qx.ttf", + "800": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiEORRCmsdu0Qx.ttf", + "900": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qLEORRCmsdu0Qx.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF-RRCmsdu0Qx.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF9RQAG8.ttf" + }, + { + "family": "Noto Serif Tibetan", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "tibetan" ], + "version": "v22", + "lastModified": "2023-03-09", + "files": { + "100": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYdPS7rdSy_32c.ttf", + "200": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYcPS7rdSy_32c.ttf", + "300": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIugcPS7rdSy_32c.ttf", + "500": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIoQcPS7rdSy_32c.ttf", + "600": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmImgbPS7rdSy_32c.ttf", + "700": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIlEbPS7rdSy_32c.ttf", + "800": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYbPS7rdSy_32c.ttf", + "900": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIh8bPS7rdSy_32c.ttf", + "regular": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcPS7rdSy_32c.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcDS_hcQ.ttf" + }, + { + "family": "Noto Serif Toto", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "toto" ], + "version": "v4", + "lastModified": "2023-03-09", + "files": { + "500": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCx_Il-aj55vdNug.ttf", + "600": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC_PPl-aj55vdNug.ttf", + "700": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC8rPl-aj55vdNug.ttf", + "regular": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCy3Il-aj55vdNug.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCy3Ip-ep4w.ttf" + }, + { + "family": "Noto Serif Yezidi", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "yezidi" ], + "version": "v16", + "lastModified": "2022-07-19", + "files": { + "500": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD6SEkrlGJgmVCqg.ttf", + "600": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDBSYkrlGJgmVCqg.ttf", + "700": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDPCYkrlGJgmVCqg.ttf", + "regular": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEkrlGJgmVCqg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEUr1uN.ttf" + }, + { + "family": "Noto Traditional Nushu", + "variants": [ "regular" ], + "subsets": [ "nushu" ], + "version": "v16", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/nototraditionalnushu/v16/SZco3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67J011GNh6SYA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nototraditionalnushu/v16/SZco3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67F0x_HA.ttf" + }, + { + "family": "Nova Cut", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/novacut/v24/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/novacut/v24/KFOkCnSYu8mL-39LkVxOIzc.ttf" + }, + { + "family": "Nova Flat", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/novaflat/v24/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/novaflat/v24/QdVUSTc-JgqpytEbVeb0uCFg.ttf" + }, + { + "family": "Nova Mono", + "variants": [ "regular" ], + "subsets": [ "greek", "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/novamono/v18/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/novamono/v18/Cn-0JtiGWQ5Ajb--MRKvYWZc.ttf" + }, + { + "family": "Nova Oval", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/novaoval/v24/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/novaoval/v24/jAnEgHdmANHvPenMaswyMIWl.ttf" + }, + { + "family": "Nova Round", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/novaround/v21/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/novaround/v21/flU9Rqquw5UhEnlwTJYTUYbUfQ.ttf" + }, + { + "family": "Nova Script", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v25", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/novascript/v25/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/novascript/v25/7Au7p_IpkSWSTWaFWkumvlQMGFk.ttf" + }, + { + "family": "Nova Slim", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/novaslim/v24/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/novaslim/v24/Z9XUDmZNQAuem8jyZcnOycmM.ttf" + }, + { + "family": "Nova Square", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/novasquare/v20/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/novasquare/v20/RrQUbo9-9DV7b06QHgSWsahBT4c.ttf" + }, + { + "family": "Numans", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH84YBIk.ttf" + }, + { + "family": "Nunito", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v25", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshRTM9jo7eTWk.ttf", + "300": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhRTM9jo7eTWk.ttf", + "500": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTM9jo7eTWk.ttf", + "600": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM9jo7eTWk.ttf", + "700": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM9jo7eTWk.ttf", + "800": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTM9jo7eTWk.ttf", + "900": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTM9jo7eTWk.ttf", + "regular": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM9jo7eTWk.ttf", + "200italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXA3iqzbXWnoeg.ttf", + "300italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83A3iqzbXWnoeg.ttf", + "italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3iqzbXWnoeg.ttf", + "500italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNin3A3iqzbXWnoeg.ttf", + "600italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3c3iqzbXWnoeg.ttf", + "700italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSnc3iqzbXWnoeg.ttf", + "800italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXc3iqzbXWnoeg.ttf", + "900italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3iqzbXWnoeg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTI3ig.ttf" + }, + { + "family": "Nunito Sans", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v15", + "lastModified": "2023-04-27", + "files": { + "200": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVilntF8kA_Ykqw.ttf", + "300": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GiClntF8kA_Ykqw.ttf", + "500": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G5ClntF8kA_Ykqw.ttf", + "600": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GCC5ntF8kA_Ykqw.ttf", + "700": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5ntF8kA_Ykqw.ttf", + "800": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVi5ntF8kA_Ykqw.ttf", + "900": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4Gfy5ntF8kA_Ykqw.ttf", + "regular": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilntF8kA_Ykqw.ttf", + "200italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP91UgIfM0qxVd.ttf", + "300italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmrR91UgIfM0qxVd.ttf", + "italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmqP91UgIfM0qxVd.ttf", + "500italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmq991UgIfM0qxVd.ttf", + "600italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpR8FUgIfM0qxVd.ttf", + "700italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpo8FUgIfM0qxVd.ttf", + "800italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP8FUgIfM0qxVd.ttf", + "900italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmom8FUgIfM0qxVd.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilXtVUg.ttf" + }, + { + "family": "Nuosu SIL", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "yi" ], + "version": "v5", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/nuosusil/v5/8vIK7wM3wmRn_kc4uAjeFGxbO_zo-w.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/nuosusil/v5/8vIK7wM3wmRn_kc4uAjuFWZf.ttf" + }, + { + "family": "Odibee Sans", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/odibeesans/v14/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/odibeesans/v14/neIPzCSooYAho6WvjeToRbkzcJU.ttf" + }, + { + "family": "Odor Mean Chey", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin" ], + "version": "v27", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/odormeanchey/v27/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/odormeanchey/v27/raxkHiKDttkTe1aOGcJMR1A_4lrZ0T4.ttf" + }, + { + "family": "Offside", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-03-21", + "files": { + "regular": "http://fonts.gstatic.com/s/offside/v22/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/offside/v22/HI_KiYMWKa9QrAykc5DoQg.ttf" + }, + { + "family": "Oi", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "tamil", + "vietnamese" + ], + "version": "v16", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/oi/v16/w8gXH2EuRqtaut6yjBOG.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/oi/v16/w8gXH2EuRptbsNo.ttf" + }, + { + "family": "Old Standard TT", + "variants": [ "regular", "italic", "700" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf", + "regular": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf", + "italic": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQubh3o1vLImiwAVvYawgcf2eVerFq9.ttf" + }, + { + "family": "Oldenburg", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/oldenburg/v20/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/oldenburg/v20/fC1jPY5JYWzbywv7c4VKUESs.ttf" + }, + { + "family": "Ole", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rd89fw69qJ_ew.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rdM9PY-.ttf" + }, + { + "family": "Oleo Script", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-05-10", + "files": { + "700": "http://fonts.gstatic.com/s/oleoscript/v14/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf", + "regular": "http://fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccChbu0o.ttf" + }, + { + "family": "Oleo Script Swash Caps", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-05-10", + "files": { + "700": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf", + "regular": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HAXukTQ.ttf" + }, + { + "family": "Oooh Baby", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v4", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/ooohbaby/v4/2sDcZGJWgJTT2Jf76xQDb2-4C7wFZQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ooohbaby/v4/2sDcZGJWgJTT2Jf76xQzbmW8.ttf" + }, + { + "family": "Open Sans", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "800", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v35", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4nY1M2xLER.ttf", + "500": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4nY1M2xLER.ttf", + "600": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4nY1M2xLER.ttf", + "700": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4nY1M2xLER.ttf", + "800": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4nY1M2xLER.ttf", + "regular": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4nY1M2xLER.ttf", + "300italic": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVcUwaERZjA.ttf", + "italic": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVcUwaERZjA.ttf", + "500italic": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVcUwaERZjA.ttf", + "600italic": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVcUwaERZjA.ttf", + "700italic": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVcUwaERZjA.ttf", + "800italic": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVcUwaERZjA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4maVc.ttf" + }, + { + "family": "Oranienbaum", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-0zm5Eg.ttf" + }, + { + "family": "Orbitron", + "variants": [ "regular", "500", "600", "700", "800", "900" ], + "subsets": [ "latin" ], + "version": "v29", + "lastModified": "2023-03-21", + "files": { + "500": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xpmIyXjU1pg.ttf", + "600": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxpmIyXjU1pg.ttf", + "700": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_CmxpmIyXjU1pg.ttf", + "800": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxpmIyXjU1pg.ttf", + "900": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxpmIyXjU1pg.ttf", + "regular": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6Bp2g2.ttf" + }, + { + "family": "Oregano", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/oregano/v13/If2IXTPxciS3H4S2kZffPznO3yM.ttf", + "italic": "http://fonts.gstatic.com/s/oregano/v13/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/oregano/v13/If2IXTPxciS3H4S2oZbVOw.ttf" + }, + { + "family": "Orelega One", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/orelegaone/v10/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/orelegaone/v10/3qTpojOggD2XtAdFb-QXZFt73kM.ttf" + }, + { + "family": "Orienta", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-03-21", + "files": { + "regular": "http://fonts.gstatic.com/s/orienta/v15/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/orienta/v15/PlI9FlK4Jrl5Y9zNSyai8A.ttf" + }, + { + "family": "Original Surfer", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/originalsurfer/v18/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/originalsurfer/v18/RWmQoKGZ9vIirYntXJ3_MbekzNMSDUFr.ttf" + }, + { + "family": "Oswald", + "variants": [ "200", "300", "regular", "500", "600", "700" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v49", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf", + "300": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf", + "500": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf", + "600": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf", + "700": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf", + "regular": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUBiYA.ttf" + }, + { + "family": "Outfit", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2023-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4G-EiAou6Y.ttf", + "200": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bC1C4G-EiAou6Y.ttf", + "300": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4G-EiAou6Y.ttf", + "500": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4G-EiAou6Y.ttf", + "600": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf", + "700": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4G-EiAou6Y.ttf", + "800": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bCyC4G-EiAou6Y.ttf", + "900": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4G-EiAou6Y.ttf", + "regular": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1O4C0Fg.ttf" + }, + { + "family": "Over the Rainbow", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/overtherainbow/v16/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/overtherainbow/v16/11haGoXG1k_HKhMLUWz7Mc7vvW5ulvKs8A.ttf" + }, + { + "family": "Overlock", + "variants": [ + "regular", + "italic", + "700", + "700italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf", + "900": "http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf", + "regular": "http://fonts.gstatic.com/s/overlock/v15/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf", + "italic": "http://fonts.gstatic.com/s/overlock/v15/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf", + "700italic": "http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf", + "900italic": "http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/overlock/v15/Z9XVDmdMWRiN1_T9Z7Tf6Ok.ttf" + }, + { + "family": "Overlock SC", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/overlocksc/v21/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/overlocksc/v21/1cX3aUHKGZrstGAY8nwVzEGBocA.ttf" + }, + { + "family": "Overpass", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PLrOZCLtce-og.ttf", + "200": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPPrOZCLtce-og.ttf", + "300": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrOZCLtce-og.ttf", + "500": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6zvPrOZCLtce-og.ttf", + "600": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6IvTrOZCLtce-og.ttf", + "700": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6G_TrOZCLtce-og.ttf", + "800": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPTrOZCLtce-og.ttf", + "900": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6VfTrOZCLtce-og.ttf", + "regular": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrOZCLtce-og.ttf", + "100italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADe5qPl8Kuosgz.ttf", + "200italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDepqPl8Kuosgz.ttf", + "300italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqPl8Kuosgz.ttf", + "italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqPl8Kuosgz.ttf", + "500italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLAxepqPl8Kuosgz.ttf", + "600italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDdfZqPl8Kuosgz.ttf", + "700italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDkfZqPl8Kuosgz.ttf", + "800italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDfZqPl8Kuosgz.ttf", + "900italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCqfZqPl8Kuosgz.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPbOJqP.ttf" + }, + { + "family": "Overpass Mono", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EWKokzzXur-SmIr.ttf", + "500": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXmokzzXur-SmIr.ttf", + "600": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUKpUzzXur-SmIr.ttf", + "700": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUzpUzzXur-SmIr.ttf", + "regular": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUokzzXur-SmIr.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUonzyVO4.ttf" + }, + { + "family": "Ovo", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ovo/v17/yYLl0h7Wyfzjy4Q5_3WVxA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ovo/v17/yYLl0h7WyfzTyo49.ttf" + }, + { + "family": "Oxanium", + "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JfniMBXQ7d67x.ttf", + "300": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G80XfniMBXQ7d67x.ttf", + "500": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G817fniMBXQ7d67x.ttf", + "600": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82XeXiMBXQ7d67x.ttf", + "700": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82ueXiMBXQ7d67x.ttf", + "800": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JeXiMBXQ7d67x.ttf", + "regular": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfniMBXQ7d67x.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfkiND3A.ttf" + }, + { + "family": "Oxygen", + "variants": [ "300", "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf", + "700": "http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf", + "regular": "http://fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4LcnbuKiE0j.ttf" + }, + { + "family": "Oxygen Mono", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/oxygenmono/v14/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/oxygenmono/v14/h0GsssGg9FxgDgCjLeAd7hjex-s.ttf" + }, + { + "family": "PT Mono", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9AnCkzNg.ttf" + }, + { + "family": "PT Sans", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf", + "regular": "http://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79P0WOxOGMMDQ.ttf", + "italic": "http://fonts.gstatic.com/s/ptsans/v17/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf", + "700italic": "http://fonts.gstatic.com/s/ptsans/v17/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0SEwA.ttf" + }, + { + "family": "PT Sans Caption", + "variants": [ "regular", "700" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf", + "regular": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlMVP6Hrxmt7-fsUFhlFXNIlpcafA_0.ttf" + }, + { + "family": "PT Sans Narrow", + "variants": [ "regular", "700" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf", + "regular": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngRUXNadjH0qYEzV7ab-oWlsbCAwRg.ttf" + }, + { + "family": "PT Serif", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/ptserif/v18/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf", + "regular": "http://fonts.gstatic.com/s/ptserif/v18/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf", + "italic": "http://fonts.gstatic.com/s/ptserif/v18/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf", + "700italic": "http://fonts.gstatic.com/s/ptserif/v18/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ptserif/v18/EJRVQgYoZZY2vCFuvAFQzro.ttf" + }, + { + "family": "PT Serif Caption", + "variants": [ "regular", "italic" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf", + "italic": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU019S7CA.ttf" + }, + { + "family": "Pacifico", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ-6B6Mw.ttf" + }, + { + "family": "Padauk", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext", "myanmar" ], + "version": "v16", + "lastModified": "2022-11-09", + "files": { + "700": "http://fonts.gstatic.com/s/padauk/v16/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf", + "regular": "http://fonts.gstatic.com/s/padauk/v16/RrQRboJg-id7OnbBa0_g3LlYbg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/padauk/v16/RrQRboJg-id7OnbxakXk.ttf" + }, + { + "family": "Padyakke Expanded One", + "variants": [ "regular" ], + "subsets": [ "kannada", "latin", "latin-ext" ], + "version": "v2", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/padyakkeexpandedone/v2/K2FvfY9El_tbR0JfHb6WWvrBaU6XAUvC4IAYOKRkpDjeoQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/padyakkeexpandedone/v2/K2FvfY9El_tbR0JfHb6WWvrBaU6XAUvC4IAoOa5g.ttf" + }, + { + "family": "Palanquin", + "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/palanquin/v13/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf", + "200": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf", + "300": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf", + "500": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf", + "600": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf", + "700": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf", + "regular": "http://fonts.gstatic.com/s/palanquin/v13/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/palanquin/v13/9XUnlJ90n1fBFg7ceXwcd1tI.ttf" + }, + { + "family": "Palanquin Dark", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf", + "600": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf", + "700": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf", + "regular": "http://fonts.gstatic.com/s/palanquindark/v12/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/palanquindark/v12/xn75YHgl1nqmANMB-26xC7yuF86PRk4.ttf" + }, + { + "family": "Pangolin", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/pangolin/v11/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pangolin/v11/cY9GfjGcW0FPpi-tWMfL79k.ttf" + }, + { + "family": "Paprika", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/paprika/v21/8QIJdijZitv49rDfuIgOq7jkAOw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/paprika/v21/8QIJdijZitv49rDfiIkErw.ttf" + }, + { + "family": "Parisienne", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpQy5wCg.ttf" + }, + { + "family": "Passero One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2022-05-10", + "files": { + "regular": "http://fonts.gstatic.com/s/passeroone/v24/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/passeroone/v24/JTUTjIko8DOq5FeaeEAjgH5A7g4.ttf" + }, + { + "family": "Passion One", + "variants": [ "regular", "700", "900" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf", + "900": "http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf", + "regular": "http://fonts.gstatic.com/s/passionone/v16/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/passionone/v16/PbynFmL8HhTPqbjUzux3JEuX9l4.ttf" + }, + { + "family": "Passions Conflict", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/passionsconflict/v5/kmKnZrcrFhfafnWX9x0GuEC-zowow5NeYRI4CN2V.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/passionsconflict/v5/kmKnZrcrFhfafnWX9x0GuEC-zowow6NfaxY.ttf" + }, + { + "family": "Pathway Extreme", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2023-04-20", + "files": { + "100": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2Nx1Kyw3igP5eg.ttf", + "200": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWN11Kyw3igP5eg.ttf", + "300": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakht11Kyw3igP5eg.ttf", + "500": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak6t11Kyw3igP5eg.ttf", + "600": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakBtp1Kyw3igP5eg.ttf", + "700": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakP9p1Kyw3igP5eg.ttf", + "800": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWNp1Kyw3igP5eg.ttf", + "900": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakcdp1Kyw3igP5eg.ttf", + "regular": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2N11Kyw3igP5eg.ttf", + "100italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daSYzqAbpepnF.ttf", + "200italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4daCYzqAbpepnF.ttf", + "300italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ7DaCYzqAbpepnF.ttf", + "italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daCYzqAbpepnF.ttf", + "500italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6vaCYzqAbpepnF.ttf", + "600italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ5DbyYzqAbpepnF.ttf", + "700italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ56byYzqAbpepnF.ttf", + "800italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4dbyYzqAbpepnF.ttf", + "900italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ40byYzqAbpepnF.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2N1FKiYz.ttf" + }, + { + "family": "Pathway Gothic One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/pathwaygothicone/v15/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pathwaygothicone/v15/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-tTVZa.ttf" + }, + { + "family": "Patrick Hand", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/patrickhand/v20/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/patrickhand/v20/LDI1apSQOAYtSuYWp8ZhfYe8WMLO.ttf" + }, + { + "family": "Patrick Hand SC", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/patrickhandsc/v13/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/patrickhandsc/v13/0nkwC9f7MfsBiWcLtY65AWDK873liCK-.ttf" + }, + { + "family": "Pattaya", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "latin", + "latin-ext", + "thai", + "vietnamese" + ], + "version": "v13", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/pattaya/v13/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pattaya/v13/ea8ZadcqV_zkHY-XBdGt8w.ttf" + }, + { + "family": "Patua One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/patuaone/v16/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/patuaone/v16/ZXuke1cDvLCKLDcimxB45flr.ttf" + }, + { + "family": "Pavanam", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "tamil" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/pavanam/v11/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pavanam/v11/BXRrvF_aiezLh0xPPOpa8Q.ttf" + }, + { + "family": "Paytone One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v21", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/paytoneone/v21/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/paytoneone/v21/0nksC9P7MfYHj2oFtYm2ChTrgP4.ttf" + }, + { + "family": "Peddana", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/peddana/v20/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/peddana/v20/aFTU7PBhaX89UcKWthyQAQ.ttf" + }, + { + "family": "Peralta", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/peralta/v17/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/peralta/v17/hYkJPu0-RP_9d3kRKxErqg.ttf" + }, + { + "family": "Permanent Marker", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004LauCeg.ttf" + }, + { + "family": "Petemoss", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/petemoss/v5/A2BZn5tA2xgtGWHZgxkesKb9UouQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/petemoss/v5/A2BZn5tA2xgtGWHZgykfuqI.ttf" + }, + { + "family": "Petit Formal Script", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/petitformalscript/v14/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/petitformalscript/v14/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qkHjgOw.ttf" + }, + { + "family": "Petrona", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v32", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsARBH452Mvds.ttf", + "200": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NsQRBH452Mvds.ttf", + "300": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk7TsQRBH452Mvds.ttf", + "500": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6_sQRBH452Mvds.ttf", + "600": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5TtgRBH452Mvds.ttf", + "700": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5qtgRBH452Mvds.ttf", + "800": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NtgRBH452Mvds.ttf", + "900": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4ktgRBH452Mvds.ttf", + "regular": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsQRBH452Mvds.ttf", + "100italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwDFYpUN-dsIWs.ttf", + "200italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwCFYpUN-dsIWs.ttf", + "300italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8rICFYpUN-dsIWs.ttf", + "italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwCFYpUN-dsIWs.ttf", + "500italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8t4CFYpUN-dsIWs.ttf", + "600italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8jIFFYpUN-dsIWs.ttf", + "700italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8gsFFYpUN-dsIWs.ttf", + "800italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwFFYpUN-dsIWs.ttf", + "900italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8kUFFYpUN-dsIWs.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsTRAFYo.ttf" + }, + { + "family": "Philosopher", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "vietnamese" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/philosopher/v19/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf", + "regular": "http://fonts.gstatic.com/s/philosopher/v19/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf", + "italic": "http://fonts.gstatic.com/s/philosopher/v19/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf", + "700italic": "http://fonts.gstatic.com/s/philosopher/v19/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/philosopher/v19/vEFV2_5QCwIS4_Dhez5jcWBoT0g.ttf" + }, + { + "family": "Phudu", + "variants": [ "300", "regular", "500", "600", "700", "800", "900" ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], + "version": "v1", + "lastModified": "2023-02-16", + "files": { + "300": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkK62zUSwWuz38Tgg.ttf", + "500": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKh2zUSwWuz38Tgg.ttf", + "600": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKa2vUSwWuz38Tgg.ttf", + "700": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKUmvUSwWuz38Tgg.ttf", + "800": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKNWvUSwWuz38Tgg.ttf", + "900": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKHGvUSwWuz38Tgg.ttf", + "regular": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKtWzUSwWuz38Tgg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKtWzkSg-q.ttf" + }, + { + "family": "Piazzolla", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v33", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYx3Ly1AHfAAy5.ttf", + "200": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYxnLy1AHfAAy5.ttf", + "300": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7KGxnLy1AHfAAy5.ttf", + "500": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LqxnLy1AHfAAy5.ttf", + "600": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7IGwXLy1AHfAAy5.ttf", + "700": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7I_wXLy1AHfAAy5.ttf", + "800": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYwXLy1AHfAAy5.ttf", + "900": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JxwXLy1AHfAAy5.ttf", + "regular": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxnLy1AHfAAy5.ttf", + "100italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqw3gX9BRy5m5M.ttf", + "200italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRqx3gX9BRy5m5M.ttf", + "300italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhcSx3gX9BRy5m5M.ttf", + "italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf", + "500italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhaix3gX9BRy5m5M.ttf", + "600italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhUS23gX9BRy5m5M.ttf", + "700italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhX223gX9BRy5m5M.ttf", + "800italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRq23gX9BRy5m5M.ttf", + "900italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhTO23gX9BRy5m5M.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxkLz3gU.ttf" + }, + { + "family": "Piedra", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/piedra/v22/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/piedra/v22/ke8kOg8aN0Bn7hTenUaD.ttf" + }, + { + "family": "Pinyon Script", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/pinyonscript/v18/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pinyonscript/v18/6xKpdSJbL9-e9LuoeQiDRQR8WOPaPw.ttf" + }, + { + "family": "Pirata One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtofhimOqw.ttf" + }, + { + "family": "Plaster", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4Ii9DPg.ttf" + }, + { + "family": "Play", + "variants": [ "regular", "700" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/play/v17/6ae84K2oVqwItm4TOpc423nTJTM.ttf", + "regular": "http://fonts.gstatic.com/s/play/v17/6aez4K2oVqwIjtI8Hp8Tx3A.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/play/v17/6aez4K2oVqwIvtM2Gg.ttf" + }, + { + "family": "Playball", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v17", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/playball/v17/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/playball/v17/TK3gWksYAxQ7jbsKcg8Cne8.ttf" + }, + { + "family": "Playfair Display", + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], + "version": "v30", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf", + "600": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQZNLo_U2r.ttf", + "700": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQZNLo_U2r.ttf", + "800": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQZNLo_U2r.ttf", + "900": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQZNLo_U2r.ttf", + "regular": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQZNLo_U2r.ttf", + "italic": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtbK-F2rA0s.ttf", + "500italic": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtbK-F2rA0s.ttf", + "600italic": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtbK-F2rA0s.ttf", + "700italic": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtbK-F2rA0s.ttf", + "800italic": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtbK-F2rA0s.ttf", + "900italic": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtbK-F2rA0s.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvXDRbtY.ttf" + }, + { + "family": "Playfair Display SC", + "variants": [ + "regular", + "italic", + "700", + "700italic", + "900", + "900italic" + ], + "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf", + "900": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf", + "regular": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf", + "italic": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf", + "700italic": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf", + "900italic": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lb8MFQ.ttf" + }, + { + "family": "Plus Jakarta Sans", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], + "version": "v7", + "lastModified": "2023-03-21", + "files": { + "200": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NShXUEKi4Rw.ttf", + "300": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_907NShXUEKi4Rw.ttf", + "500": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NShXUEKi4Rw.ttf", + "600": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNShXUEKi4Rw.ttf", + "700": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf", + "800": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNShXUEKi4Rw.ttf", + "regular": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NShXUEKi4Rw.ttf", + "200italic": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lCR_QMq2oR82k.ttf", + "300italic": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ17CR_QMq2oR82k.ttf", + "italic": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_QMq2oR82k.ttf", + "500italic": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_QMq2oR82k.ttf", + "600italic": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ37Dh_QMq2oR82k.ttf", + "700italic": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_QMq2oR82k.ttf", + "800italic": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_QMq2oR82k.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU79Sx_Q.ttf" + }, + { + "family": "Podkova", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v26", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf", + "600": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf", + "700": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf", + "800": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf", + "regular": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzfU5GI4.ttf" + }, + { + "family": "Poiret One", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/poiretone/v14/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/poiretone/v14/UqyVK80NJXN4zfRgbdfbo5hcUg.ttf" + }, + { + "family": "Poller One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/pollerone/v19/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pollerone/v19/ahccv82n0TN3gia5E4BuR-hRhQ.ttf" + }, + { + "family": "Poltawski Nowy", + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v1", + "lastModified": "2023-04-20", + "files": { + "500": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KmiWnDS6V5CzCoQ.ttf", + "600": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KdiKnDS6V5CzCoQ.ttf", + "700": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KTyKnDS6V5CzCoQ.ttf", + "regular": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KqCWnDS6V5CzCoQ.ttf", + "italic": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZPTiSRxinSoROp.ttf", + "500italic": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZ9TiSRxinSoROp.ttf", + "600italic": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaRSSSRxinSoROp.ttf", + "700italic": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaoSSSRxinSoROp.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KqCWXDCSR.ttf" + }, + { + "family": "Poly", + "variants": [ "regular", "italic" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/poly/v16/MQpb-W6wKNitRLCAq2Lpris.ttf", + "italic": "http://fonts.gstatic.com/s/poly/v16/MQpV-W6wKNitdLKKr0DsviuGWA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/poly/v16/MQpb-W6wKNitdLGKrw.ttf" + }, + { + "family": "Pompiere", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/pompiere/v15/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pompiere/v15/VEMyRoxis5Dwuyeov5Ws7DQ.ttf" + }, + { + "family": "Pontano Sans", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2023-04-04", + "files": { + "300": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOSzMncaMp9gzWsE.ttf", + "500": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOUDMncaMp9gzWsE.ttf", + "600": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOazLncaMp9gzWsE.ttf", + "700": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOZXLncaMp9gzWsE.ttf", + "regular": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOXLMncaMp9gzWsE.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOXLMrceGow.ttf" + }, + { + "family": "Poor Story", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v20", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/poorstory/v20/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/poorstory/v20/jizfREFUsnUct9P6cDfd0OitKA.ttf" + }, + { + "family": "Poppins", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf", + "200": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf", + "300": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf", + "500": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf", + "600": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf", + "700": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf", + "800": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf", + "900": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf", + "100italic": "http://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf", + "200italic": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf", + "300italic": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf", + "regular": "http://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf", + "italic": "http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf", + "500italic": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf", + "600italic": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf", + "700italic": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf", + "800italic": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf", + "900italic": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJHedw.ttf" + }, + { + "family": "Port Lligat Sans", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/portlligatsans/v18/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/portlligatsans/v18/kmKmZrYrGBbdN1aV7Vokow6Lw4s4p7J-Sw.ttf" + }, + { + "family": "Port Lligat Slab", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/portlligatslab/v21/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/portlligatslab/v21/LDIpaoiQNgArA8kR7ulhZ8P_NYOsg7sR8w.ttf" + }, + { + "family": "Potta One", + "variants": [ "regular" ], + "subsets": [ "japanese", "latin", "latin-ext", "vietnamese" ], + "version": "v16", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/pottaone/v16/FeVSS05Bp6cy7xI-YfxQ3Z5nm29Gww.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pottaone/v16/FeVSS05Bp6cy7xI-Yfxg3JRj.ttf" + }, + { + "family": "Pragati Narrow", + "variants": [ "regular", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf", + "regular": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8vdRf0T0bS1ffgsPB7WZ-mD27-wNc.ttf" + }, + { + "family": "Praise", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/praise/v5/qkBUXvUZ-cnFXcFyDvO67L9XmQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/praise/v5/qkBUXvUZ-cnFXcFCD_m-.ttf" + }, + { + "family": "Prata", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "vietnamese" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/prata/v18/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/prata/v18/6xKhdSpbNNCT-sWJCms.ttf" + }, + { + "family": "Preahvihear", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin" ], + "version": "v27", + "lastModified": "2022-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/preahvihear/v27/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/preahvihear/v27/6NUS8F-dNQeEYhzj7uluxvwF6dU.ttf" + }, + { + "family": "Press Start 2P", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext" + ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/pressstart2p/v15/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pressstart2p/v15/e3t4euO8T-267oIAQAu6jDQyK3nTivY.ttf" + }, + { + "family": "Pridi", + "variants": [ "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf", + "300": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf", + "500": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf", + "600": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf", + "700": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf", + "regular": "http://fonts.gstatic.com/s/pridi/v11/2sDQZG5JnZLfkfWao2krbl29.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/pridi/v11/2sDQZG5JnZLfkcWbqW0.ttf" + }, + { + "family": "Princess Sofia", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/princesssofia/v22/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/princesssofia/v22/qWczB6yguIb8DZ_GXZst16n7GSz6kjE.ttf" + }, + { + "family": "Prociono", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/prociono/v22/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/prociono/v22/r05YGLlR-KxAf9GGO_uowjI.ttf" + }, + { + "family": "Prompt", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf", + "200": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf", + "300": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf", + "500": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf", + "600": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf", + "700": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf", + "800": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf", + "900": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf", + "100italic": "http://fonts.gstatic.com/s/prompt/v10/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf", + "200italic": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf", + "300italic": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf", + "regular": "http://fonts.gstatic.com/s/prompt/v10/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf", + "italic": "http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf", + "500italic": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf", + "600italic": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf", + "700italic": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf", + "800italic": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf", + "900italic": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/prompt/v10/-W__XJnvUD7dzB2KZtoY.ttf" + }, + { + "family": "Prosto One", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/prostoone/v17/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/prostoone/v17/OpNJno4VhNfK-RgpwWWxlitVXg.ttf" + }, + { + "family": "Proza Libre", + "variants": [ + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v9", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf", + "600": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf", + "700": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf", + "800": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf", + "regular": "http://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf", + "italic": "http://fonts.gstatic.com/s/prozalibre/v9/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf", + "500italic": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf", + "600italic": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf", + "700italic": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf", + "800italic": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyEoudN8.ttf" + }, + { + "family": "Public Sans", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5ww0pX189fg.ttf", + "200": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww0pX189fg.ttf", + "300": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww0pX189fg.ttf", + "500": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww0pX189fg.ttf", + "600": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf", + "700": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww0pX189fg.ttf", + "800": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww0pX189fg.ttf", + "900": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww0pX189fg.ttf", + "regular": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww0pX189fg.ttf", + "100italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQctfVotfj7j.ttf", + "200italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgActfVotfj7j.ttf", + "300italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgActfVotfj7j.ttf", + "italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgActfVotfj7j.ttf", + "500italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgActfVotfj7j.ttf", + "600italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwctfVotfj7j.ttf", + "700italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwctfVotfj7j.ttf", + "800italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwctfVotfj7j.ttf", + "900italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwctfVotfj7j.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpmJwgct.ttf" + }, + { + "family": "Puppies Play", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v6", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/puppiesplay/v6/wlp2gwHZEV99rG6M3NR9uB9vaAJSA_JN3Q.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/puppiesplay/v6/wlp2gwHZEV99rG6M3NR9uB9faQhW.ttf" + }, + { + "family": "Puritan", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/puritan/v24/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf", + "regular": "http://fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf", + "italic": "http://fonts.gstatic.com/s/puritan/v24/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf", + "700italic": "http://fonts.gstatic.com/s/puritan/v24/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIoxJv6QQ.ttf" + }, + { + "family": "Purple Purse", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/purplepurse/v21/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/purplepurse/v21/qWctB66gv53iAp-Vfs4My6qCeRz7.ttf" + }, + { + "family": "Qahiri", + "variants": [ "regular" ], + "subsets": [ "arabic", "latin" ], + "version": "v9", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/qahiri/v9/tsssAp1RZy0C_hGuU3Chrnmupw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/qahiri/v9/tsssAp1RZy0C_hGeUnql.ttf" + }, + { + "family": "Quando", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/quando/v14/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/quando/v14/xMQVuFNaVa6YuW0ZCq-3.ttf" + }, + { + "family": "Quantico", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/quantico/v15/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf", + "regular": "http://fonts.gstatic.com/s/quantico/v15/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf", + "italic": "http://fonts.gstatic.com/s/quantico/v15/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf", + "700italic": "http://fonts.gstatic.com/s/quantico/v15/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/quantico/v15/rax-HiSdp9cPL3KIF7xtJDg.ttf" + }, + { + "family": "Quattrocento", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/quattrocento/v18/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf", + "regular": "http://fonts.gstatic.com/s/quattrocento/v18/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/quattrocento/v18/OZpEg_xvsDZQL_LKIF7q4jP3xWj_.ttf" + }, + { + "family": "Quattrocento Sans", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf", + "regular": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf", + "italic": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf", + "700italic": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9c4lja2NVIDdIAAoMR5MfuElaRB0zPt0o.ttf" + }, + { + "family": "Questrial", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v18", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf70uCFg.ttf" + }, + { + "family": "Quicksand", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v30", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf", + "500": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf", + "600": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf", + "700": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf", + "regular": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o58C-xw.ttf" + }, + { + "family": "Quintessential", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/quintessential/v20/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/quintessential/v20/fdNn9sOGq31Yjnh3qWU14Ddtjb5xQb0.ttf" + }, + { + "family": "Qwigley", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/qwigley/v16/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/qwigley/v16/1cXzaU3UGJb5tGoCiV1mjw.ttf" + }, + { + "family": "Qwitcher Grypen", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxiZypclp9tDilN9RrC5BSI1dZmT9ExkqkSsrvNXiA.ttf", + "regular": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxicypclp9tDilN9RrC5BSI1dZmrSGNAom-wpw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxicypclp9tDilN9RrC5BSI1dZmbSWlE.ttf" + }, + { + "family": "Racing Sans One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/racingsansone/v13/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/racingsansone/v13/sykr-yRtm7EvTrXNxkv5jfKKyDCALnDi.ttf" + }, + { + "family": "Radio Canada", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/radiocanada/v20/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nESkQPIJOdSSfOT.ttf", + "500": "http://fonts.gstatic.com/s/radiocanada/v20/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nF-kQPIJOdSSfOT.ttf", + "600": "http://fonts.gstatic.com/s/radiocanada/v20/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGSlgPIJOdSSfOT.ttf", + "700": "http://fonts.gstatic.com/s/radiocanada/v20/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGrlgPIJOdSSfOT.ttf", + "regular": "http://fonts.gstatic.com/s/radiocanada/v20/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nFMkQPIJOdSSfOT.ttf", + "300italic": "http://fonts.gstatic.com/s/radiocanada/v20/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0rWLLuNwTOOTa9k.ttf", + "italic": "http://fonts.gstatic.com/s/radiocanada/v20/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0uuLLuNwTOOTa9k.ttf", + "500italic": "http://fonts.gstatic.com/s/radiocanada/v20/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0tmLLuNwTOOTa9k.ttf", + "600italic": "http://fonts.gstatic.com/s/radiocanada/v20/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0jWMLuNwTOOTa9k.ttf", + "700italic": "http://fonts.gstatic.com/s/radiocanada/v20/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0gyMLuNwTOOTa9k.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/radiocanada/v20/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nFMkTPJLuM.ttf" + }, + { + "family": "Radley", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/radley/v20/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf", + "italic": "http://fonts.gstatic.com/s/radley/v20/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/radley/v20/LYjDdGzinEIjCN1NoQNA.ttf" + }, + { + "family": "Rajdhani", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf", + "500": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf", + "600": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf", + "700": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf", + "regular": "http://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7p4BM-M.ttf" + }, + { + "family": "Rakkas", + "variants": [ "regular" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rakkas/v17/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rakkas/v17/Qw3cZQlNHiblL3jPl9FL.ttf" + }, + { + "family": "Raleway", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v28", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CPNLA3JC9c.ttf", + "200": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCPNLA3JC9c.ttf", + "300": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCPNLA3JC9c.ttf", + "500": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf", + "600": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCPNLA3JC9c.ttf", + "700": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCPNLA3JC9c.ttf", + "800": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCPNLA3JC9c.ttf", + "900": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCPNLA3JC9c.ttf", + "regular": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf", + "100italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQVIT9c2c8.ttf", + "200italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQVIT9c2c8.ttf", + "300italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", + "italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", + "500italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", + "600italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", + "700italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", + "800italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQVIT9c2c8.ttf", + "900italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQVIT9c2c8.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCOPrQ.ttf" + }, + { + "family": "Raleway Dots", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ralewaydots/v14/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ralewaydots/v14/6NUR8FifJg6AfQvzpshgwJ8UyPVB.ttf" + }, + { + "family": "Ramabhadra", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v15", + "lastModified": "2022-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/ramabhadra/v15/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ramabhadra/v15/EYq2maBOwqRW9P1SQ83LShJMWw.ttf" + }, + { + "family": "Ramaraja", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ramaraja/v15/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ramaraja/v15/SlGTmQearpYAYG1CACIloHQ.ttf" + }, + { + "family": "Rambla", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/rambla/v13/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf", + "regular": "http://fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mr0I7IONthkwQ.ttf", + "italic": "http://fonts.gstatic.com/s/rambla/v13/snfps0ip98hx6mrEIbgKFN10wYKa.ttf", + "700italic": "http://fonts.gstatic.com/s/rambla/v13/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mrEIrgK.ttf" + }, + { + "family": "Rammetto One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/rammettoone/v15/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rammettoone/v15/LhWiMV3HOfMbMetJG3lQDppNM_GY.ttf" + }, + { + "family": "Rampart One", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v7", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/rampartone/v7/K2F1fZFGl_JSR1tAWNG9R6qgLS76ZHOM.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rampartone/v7/K2F1fZFGl_JSR1tAWNG9R5qhJyo.ttf" + }, + { + "family": "Ranchers", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/ranchers/v14/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ranchers/v14/zrfm0H3Lx-P2Xvs2ArDZBio.ttf" + }, + { + "family": "Rancho", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rancho/v17/46kulbzmXjLaqZRlbWXgd0RY1g.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rancho/v17/46kulbzmXjLaqZRVbG_k.ttf" + }, + { + "family": "Ranga", + "variants": [ "regular", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/ranga/v18/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf", + "regular": "http://fonts.gstatic.com/s/ranga/v18/C8ct4cYisGb28p6CLDwZwmGE.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ranga/v18/C8ct4cYisGb28q6DJjg.ttf" + }, + { + "family": "Rasa", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "gujarati", "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN4YJW41fcvN2KT4.ttf", + "500": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN50JW41fcvN2KT4.ttf", + "600": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN6YIm41fcvN2KT4.ttf", + "700": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN6hIm41fcvN2KT4.ttf", + "regular": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJW41fcvN2KT4.ttf", + "300italic": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZth2d8_v3bT4Ycc.ttf", + "italic": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZoZ2d8_v3bT4Ycc.ttf", + "500italic": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZrR2d8_v3bT4Ycc.ttf", + "600italic": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZlhxd8_v3bT4Ycc.ttf", + "700italic": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZmFxd8_v3bT4Ycc.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJV40d88.ttf" + }, + { + "family": "Rationale", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2022-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/rationale/v24/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rationale/v24/9XUnlJ92n0_JFxHIfHccd1tI.ttf" + }, + { + "family": "Ravi Prakash", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/raviprakash/v19/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/raviprakash/v19/gokpH6fsDkVrF9Bv9X8SOAK3mdxA.ttf" + }, + { + "family": "Readex Pro", + "variants": [ "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], + "version": "v21", + "lastModified": "2023-04-27", + "files": { + "200": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCYUSmgmsglvjkag.ttf", + "300": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCv0Smgmsglvjkag.ttf", + "500": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC00Smgmsglvjkag.ttf", + "600": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCP0Omgmsglvjkag.ttf", + "700": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCBkOmgmsglvjkag.ttf", + "regular": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC4USmgmsglvjkag.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC4USWg2Ek.ttf" + }, + { + "family": "Recursive", + "variants": [ "300", "regular", "500", "600", "700", "800", "900" ], + "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], + "version": "v37", + "lastModified": "2023-01-06", + "files": { + "300": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadDck018vwxjDJCL.ttf", + "500": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCwk018vwxjDJCL.ttf", + "600": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBclE18vwxjDJCL.ttf", + "700": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBllE18vwxjDJCL.ttf", + "800": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadAClE18vwxjDJCL.ttf", + "900": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadArlE18vwxjDJCL.ttf", + "regular": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk018vwxjDJCL.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk319tQg.ttf" + }, + { + "family": "Red Hat Display", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWckg5-Xecg3w.ttf", + "500": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbl6Wckg5-Xecg3w.ttf", + "600": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbrKRckg5-Xecg3w.ttf", + "700": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbouRckg5-Xecg3w.ttf", + "800": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbuyRckg5-Xecg3w.ttf", + "900": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbsWRckg5-Xecg3w.ttf", + "regular": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWckg5-Xecg3w.ttf", + "300italic": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVxAsz_VWZk3zJGg.ttf", + "italic": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVmgsz_VWZk3zJGg.ttf", + "500italic": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVqAsz_VWZk3zJGg.ttf", + "600italic": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVRAwz_VWZk3zJGg.ttf", + "700italic": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVfQwz_VWZk3zJGg.ttf", + "800italic": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVGgwz_VWZk3zJGg.ttf", + "900italic": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVMwwz_VWZk3zJGg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWQkkz_Q.ttf" + }, + { + "family": "Red Hat Mono", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQQPI-7HNuW4QuKI.ttf", + "500": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQW_I-7HNuW4QuKI.ttf", + "600": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQYPP-7HNuW4QuKI.ttf", + "700": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQbrP-7HNuW4QuKI.ttf", + "regular": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3I-7HNuW4QuKI.ttf", + "300italic": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLTfLHvUwVqKIJuw.ttf", + "italic": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLE_LHvUwVqKIJuw.ttf", + "500italic": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLIfLHvUwVqKIJuw.ttf", + "600italic": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLzfXHvUwVqKIJuw.ttf", + "700italic": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWL9PXHvUwVqKIJuw.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3Iy7DHvQ.ttf" + }, + { + "family": "Red Hat Text", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML-ZwVrbacYVFtIY.ttf", + "500": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrbacYVFtIY.ttf", + "600": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML2Z3VrbacYVFtIY.ttf", + "700": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML193VrbacYVFtIY.ttf", + "regular": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrbacYVFtIY.ttf", + "300italic": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAz4PXQdadApIYv_g.ttf", + "italic": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzvvXQdadApIYv_g.ttf", + "500italic": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzjPXQdadApIYv_g.ttf", + "600italic": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzYPLQdadApIYv_g.ttf", + "700italic": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzWfLQdadApIYv_g.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwZrfQdQ.ttf" + }, + { + "family": "Red Rose", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v18", + "lastModified": "2023-03-21", + "files": { + "300": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8y8_sDcjSsYUVUjg.ttf", + "500": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yn_sDcjSsYUVUjg.ttf", + "600": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yc_wDcjSsYUVUjg.ttf", + "700": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8ySvwDcjSsYUVUjg.ttf", + "regular": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfsDcjSsYUVUjg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfszcz6o.ttf" + }, + { + "family": "Redacted", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v6", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/redacted/v6/Z9XVDmdRShme2O_7aITe4u2El6GC.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/redacted/v6/Z9XVDmdRShme2O_7aLTf6Ok.ttf" + }, + { + "family": "Redacted Script", + "variants": [ "300", "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v7", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/redactedscript/v7/ypvEbXGRglhokR7dcC3d1-R6zmxqHUzVmbI397ldkg.ttf", + "700": "http://fonts.gstatic.com/s/redactedscript/v7/ypvEbXGRglhokR7dcC3d1-R6zmxqDUvVmbI397ldkg.ttf", + "regular": "http://fonts.gstatic.com/s/redactedscript/v7/ypvBbXGRglhokR7dcC3d1-R6zmxSsWTxkZkr_g.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/redactedscript/v7/ypvBbXGRglhokR7dcC3d1-R6zmxisG71.ttf" + }, + { + "family": "Redressed", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v25", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/redressed/v25/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/redressed/v25/x3dickHUbrmJ7wMy9MsxffoG.ttf" + }, + { + "family": "Reem Kufi", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2022-12-08", + "files": { + "500": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", + "600": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", + "700": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", + "regular": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnIGCV2g.ttf" + }, + { + "family": "Reem Kufi Fun", + "variants": [ "regular", "500", "600", "700" ], + "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], + "version": "v7", + "lastModified": "2023-03-09", + "files": { + "500": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYR3nCgrvqZzZXq.ttf", + "600": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChob92XCgrvqZzZXq.ttf", + "700": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChobE2XCgrvqZzZXq.ttf", + "regular": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYj3nCgrvqZzZXq.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYj3kChpP4.ttf" + }, + { + "family": "Reem Kufi Ink", + "variants": [ "regular" ], + "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], + "version": "v8", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/reemkufiink/v8/oPWJ_kJmmu8hCvB9iFumxZSnRj5dQnSX1ko.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/reemkufiink/v8/oPWJ_kJmmu8hCvB9iFumxZSndj9XRg.ttf" + }, + { + "family": "Reenie Beanie", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/reeniebeanie/v16/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/reeniebeanie/v16/z7NSdR76eDkaJKZJFkkjuvWxXPy1rg.ttf" + }, + { + "family": "Reggae One", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/reggaeone/v15/~CgwKClJlZ2dhZSBPbmUgACoECAEYAQ==.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/reggaeone/v15/~CgwKClJlZ2dhZSBPbmUQASAA.ttf" + }, + { + "family": "Revalia", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/revalia/v20/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/revalia/v20/WwkexPimBE2-4ZPESVvkMA.ttf" + }, + { + "family": "Rhodium Libre", + "variants": [ "regular" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rhodiumlibre/v17/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rhodiumlibre/v17/1q2AY5adA0tn_ukeHcQHqpx6lEXBfg.ttf" + }, + { + "family": "Ribeye", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/ribeye/v22/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ribeye/v22/L0x8DFMxk1MP9R3hvfqi.ttf" + }, + { + "family": "Ribeye Marrow", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ribeyemarrow/v22/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ribeyemarrow/v22/GFDsWApshnqMRO2JdtRZ2d0vIA0ZUQ.ttf" + }, + { + "family": "Righteous", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/righteous/v14/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/righteous/v14/1cXxaUPXBpj2rGoU7C9WjnGA.ttf" + }, + { + "family": "Risque", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/risque/v20/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/risque/v20/VdGfAZUfHosahXxYCEwR.ttf" + }, + { + "family": "Road Rage", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/roadrage/v5/6NUU8F2fKAOBKjjr4ekvtMYAwdRZfw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/roadrage/v5/6NUU8F2fKAOBKjjr4ekftcwE.ttf" + }, + { + "family": "Roboto", + "variants": [ + "100", + "100italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "700", + "700italic", + "900", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v30", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf", + "300": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf", + "500": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf", + "700": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf", + "900": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf", + "100italic": "http://fonts.gstatic.com/s/roboto/v30/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf", + "300italic": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf", + "regular": "http://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf", + "italic": "http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf", + "500italic": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf", + "700italic": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf", + "900italic": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu5GxP.ttf" + }, + { + "family": "Roboto Condensed", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v25", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf", + "700": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf", + "300italic": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf", + "regular": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf", + "italic": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf", + "700italic": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-19S7CA.ttf" + }, + { + "family": "Roboto Flex", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v9", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/robotoflex/v9/NaN4epOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGfttPZktqc2VdZ80KvCLZaPcSBZtOx2MifRuWR28sPJtUMbsFEK6cRrleUx9Xgbm3WLHa_F4Ep4Fm0PN19Ik5Dntczx0wZGzhPlL1YNMYKbv9_1IQXOw7AiUJVXpRJ6cXW4O8TNGoXjC79QRyaLshNDUf3e0O-gn5rrZCu20YNYG0EACUTNK-QKavMlxGIY8dxef0jQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/robotoflex/v9/NaN4epOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGfttPZktqc2VdZ80KvCLZaPcSBZtOx2MifRuWR28sPJtUMbsFEK6cRrleUx9Xgbm3WLHa_F4Ep4Fm0PN19Ik5Dntczx0wZGzhPlL1YNMYKbv9_1IQXOw7AiUJVXpRJ6cXW4O8TNGoXjC79QRyaLshNDUf3e0O-gn5rrZCu20YNYG0EACUTNK-QKavMlx2IIUZ.ttf" + }, + { + "family": "Roboto Mono", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQ--5Ip2sSQ.ttf", + "200": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQ--5Ip2sSQ.ttf", + "300": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQ--5Ip2sSQ.ttf", + "500": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQ--5Ip2sSQ.ttf", + "600": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQ--5Ip2sSQ.ttf", + "700": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQ--5Ip2sSQ.ttf", + "regular": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQ--5Ip2sSQ.ttf", + "100italic": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9AJi8SZwt.ttf", + "200italic": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9AJi8SZwt.ttf", + "300italic": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9AJi8SZwt.ttf", + "italic": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9AJi8SZwt.ttf", + "500italic": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9AJi8SZwt.ttf", + "600italic": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9AJi8SZwt.ttf", + "700italic": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9AJi8SZwt.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_QuW9.ttf" + }, + { + "family": "Roboto Serif", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v13", + "lastModified": "2023-04-04", + "files": { + "100": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliosp6d2Af5fR4k.ttf", + "200": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqotp6d2Af5fR4k.ttf", + "300": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElnQtp6d2Af5fR4k.ttf", + "500": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6d2Af5fR4k.ttf", + "600": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElvQqp6d2Af5fR4k.ttf", + "700": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6d2Af5fR4k.ttf", + "800": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqoqp6d2Af5fR4k.ttf", + "900": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEloMqp6d2Af5fR4k.ttf", + "regular": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6d2Af5fR4k.ttf", + "100italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-V8BdxaV4nUFw.ttf", + "200italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-R8BdxaV4nUFw.ttf", + "300italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuEeR8BdxaV4nUFw.ttf", + "italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8BdxaV4nUFw.ttf", + "500italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JufeR8BdxaV4nUFw.ttf", + "600italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JukeN8BdxaV4nUFw.ttf", + "700italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8BdxaV4nUFw.ttf", + "800italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-N8BdxaV4nUFw.ttf", + "900italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Ju5uN8BdxaV4nUFw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotl6Z8BQ.ttf" + }, + { + "family": "Roboto Slab", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v25", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaG5iddG-1A.ttf", + "200": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaG5iddG-1A.ttf", + "300": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaG5iddG-1A.ttf", + "500": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaG5iddG-1A.ttf", + "600": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaG5iddG-1A.ttf", + "700": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaG5iddG-1A.ttf", + "800": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaG5iddG-1A.ttf", + "900": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaG5iddG-1A.ttf", + "regular": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaG5iddG-1A.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmaWRm.ttf" + }, + { + "family": "Rochester", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rochester/v18/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rochester/v18/6ae-4KCqVa4Zy6Fif-UC3lHS.ttf" + }, + { + "family": "Rock Salt", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rocksalt/v18/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rocksalt/v18/MwQ0bhv11fWD6QsAVOZrsUM_.ttf" + }, + { + "family": "RocknRoll One", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v10", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/rocknrollone/v10/kmK7ZqspGAfCeUiW6FFlmEC9guVhs7tfUxc.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rocknrollone/v10/kmK7ZqspGAfCeUiW6FFlmEC9suRrtw.ttf" + }, + { + "family": "Rokkitt", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v34", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDLE76HvN6n.ttf", + "200": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DLE76HvN6n.ttf", + "300": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DLE76HvN6n.ttf", + "500": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DLE76HvN6n.ttf", + "600": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDLE76HvN6n.ttf", + "700": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDLE76HvN6n.ttf", + "800": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDLE76HvN6n.ttf", + "900": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDLE76HvN6n.ttf", + "regular": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DLE76HvN6n.ttf", + "100italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiJGbqluc6nu9E.ttf", + "200italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiIGbqluc6nu9E.ttf", + "300italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NCaIGbqluc6nu9E.ttf", + "italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiIGbqluc6nu9E.ttf", + "500italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NEqIGbqluc6nu9E.ttf", + "600italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NKaPGbqluc6nu9E.ttf", + "700italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NJ-PGbqluc6nu9E.ttf", + "800italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiPGbqluc6nu9E.ttf", + "900italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NNGPGbqluc6nu9E.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd6DKGbo.ttf" + }, + { + "family": "Romanesco", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSX3XYP.ttf" + }, + { + "family": "Ropa Sans", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf", + "italic": "http://fonts.gstatic.com/s/ropasans/v15/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScy6WzNs.ttf" + }, + { + "family": "Rosario", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v31", + "lastModified": "2023-03-21", + "files": { + "300": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf", + "500": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf", + "600": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf", + "700": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf", + "regular": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf", + "300italic": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf", + "italic": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf", + "500italic": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf", + "600italic": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf", + "700italic": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCVcyfeI.ttf" + }, + { + "family": "Rosarivo", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rosarivo/v20/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf", + "italic": "http://fonts.gstatic.com/s/rosarivo/v20/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rosarivo/v20/PlI-Fl2lO6N9f8HaNDeD0Hw.ttf" + }, + { + "family": "Rouge Script", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rougescript/v14/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rougescript/v14/LYjFdGbiklMoCIQOw1Ep3S4_Vf_f.ttf" + }, + { + "family": "Rowdies", + "variants": [ "300", "regular", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219hth5O7yKQNute8.ttf", + "700": "http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219gtm5O7yKQNute8.ttf", + "regular": "http://fonts.gstatic.com/s/rowdies/v15/ptRJTieMYPNBAK21zrdJwObZNQo.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rowdies/v15/ptRJTieMYPNBAK21_rZDxA.ttf" + }, + { + "family": "Rozha One", + "variants": [ "regular" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rozhaone/v13/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rozhaone/v13/AlZy_zVFtYP12Zncg2kRdH38.ttf" + }, + { + "family": "Rubik", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v26", + "lastModified": "2023-03-09", + "files": { + "300": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UE80V4bVkA.ttf", + "500": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UE80V4bVkA.ttf", + "600": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1UE80V4bVkA.ttf", + "700": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UE80V4bVkA.ttf", + "800": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1UE80V4bVkA.ttf", + "900": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1UE80V4bVkA.ttf", + "regular": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UE80V4bVkA.ttf", + "300italic": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0UwdYPFkJ1O.ttf", + "italic": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0UwdYPFkJ1O.ttf", + "500italic": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0UwdYPFkJ1O.ttf", + "600italic": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEUwdYPFkJ1O.ttf", + "700italic": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEUwdYPFkJ1O.ttf", + "800italic": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEUwdYPFkJ1O.ttf", + "900italic": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEUwdYPFkJ1O.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4iFUUUw.ttf" + }, + { + "family": "Rubik 80s Fade", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v2", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/rubik80sfade/v2/U9MF6dW37nLSmnwZXyoV-uPXUhHwkbL8IHcK.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubik80sfade/v2/U9MF6dW37nLSmnwZXyoV-uPXUiHxm7Y.ttf" + }, + { + "family": "Rubik Beastly", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikbeastly/v10/0QImMXRd5oOmSC2ZQ7o9653X07z8_ApHqqk.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikbeastly/v10/0QImMXRd5oOmSC2ZQ7o9653X4732-A.ttf" + }, + { + "family": "Rubik Bubbles", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v3", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikbubbles/v3/JIA1UVdwbHFJtwA7Us1BPFbRNTENfDxyRXI.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikbubbles/v3/JIA1UVdwbHFJtwA7Us1BPFbRBTAHeA.ttf" + }, + { + "family": "Rubik Burned", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v1", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqniHQuaCY5ZSg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqnSHAGe.ttf" + }, + { + "family": "Rubik Dirt", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v2", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikdirt/v2/DtVmJxC7WLEj1uIXEWAdulwm6gDXvwE.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikdirt/v2/DtVmJxC7WLEj1uIXEWAdil0s7g.ttf" + }, + { + "family": "Rubik Distressed", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v1", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldcWAhatVBaGM.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldQWErbg.ttf" + }, + { + "family": "Rubik Gemstones", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v1", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikgemstones/v1/zrf90HrL0-_8Xb4DFM2rUkWbOVrOiCnGqi1GMw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikgemstones/v1/zrf90HrL0-_8Xb4DFM2rUkWbOVr-iSPC.ttf" + }, + { + "family": "Rubik Glitch", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZvmC7HONiSFQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZfmSTD.ttf" + }, + { + "family": "Rubik Iso", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v2", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikiso/v2/x3dickHUfr-S4VAI4sABfPACvy_1BA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikiso/v2/x3dickHUfr-S4VAI4sAxffoG.ttf" + }, + { + "family": "Rubik Marker Hatch", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v1", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHQDL4iw0H6zw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHgDbQm.ttf" + }, + { + "family": "Rubik Maze", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v2", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikmaze/v2/xMQRuF9ZVa2ftiJEavXSAX7inS-bxV4.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikmaze/v2/xMQRuF9ZVa2ftiJEavXSMX_omQ.ttf" + }, + { + "family": "Rubik Microbe", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZcs8aaKgiauE.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZQs4QbA.ttf" + }, + { + "family": "Rubik Mono One", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikmonoone/v15/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikmonoone/v15/UqyJK8kPP3hjw6ANTdfRk9YSN98xTKA.ttf" + }, + { + "family": "Rubik Moonrocks", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikmoonrocks/v2/845ANMAmAI2VUZMLu_W0M7HqlDHnXcD7JGy1Sw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikmoonrocks/v2/845ANMAmAI2VUZMLu_W0M7HqlDHXXMr_.ttf" + }, + { + "family": "Rubik Pixels", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v2", + "lastModified": "2023-04-04", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikpixels/v2/SlGXmQOaupkIeSx4CEpB7AdSaBYRagrQrA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikpixels/v2/SlGXmQOaupkIeSx4CEpB7AdiaRwV.ttf" + }, + { + "family": "Rubik Puddles", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcJfC0wVMT-aE.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcFfG-xQ.ttf" + }, + { + "family": "Rubik Spray Paint", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v1", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikspraypaint/v1/WnzhHBAoeBPUDTB4EWR82y6EXWPH-Ro-QoaBZQxP.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikspraypaint/v1/WnzhHBAoeBPUDTB4EWR82y6EXWPH-So_SII.ttf" + }, + { + "family": "Rubik Storm", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v1", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikstorm/v1/eLGYP-_uPgO5Ag7ju9JaouL9T2Xh9NQk.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikstorm/v1/eLGYP-_uPgO5Ag7ju9JaotL8RWE.ttf" + }, + { + "family": "Rubik Vinyl", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v1", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikvinyl/v1/iJWABXKIfDnIV4mQ5BfjvUXexox2ztOU.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikvinyl/v1/iJWABXKIfDnIV4mQ5BfjvXXfzIg.ttf" + }, + { + "family": "Rubik Wet Paint", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "hebrew", + "latin", + "latin-ext" + ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-F-zz313DuvQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-1-jbz.ttf" + }, + { + "family": "Ruda", + "variants": [ "regular", "500", "600", "700", "800", "900" ], + "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], + "version": "v23", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_-2KiSGg-H.ttf", + "600": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_-2KiSGg-H.ttf", + "700": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_-2KiSGg-H.ttf", + "800": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_-2KiSGg-H.ttf", + "900": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_-2KiSGg-H.ttf", + "regular": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_-2KiSGg-H.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsh__0qw.ttf" + }, + { + "family": "Rufina", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/rufina/v13/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf", + "regular": "http://fonts.gstatic.com/s/rufina/v13/Yq6V-LyURyLy-aKyoxRktOdClg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rufina/v13/Yq6V-LyURyLy-aKCoh5g.ttf" + }, + { + "family": "Ruge Boogie", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v25", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/rugeboogie/v25/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rugeboogie/v25/JIA3UVFwbHRF_GIWSMhKNSOjNTE.ttf" + }, + { + "family": "Ruluko", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0ZCq-3.ttf" + }, + { + "family": "Rum Raisin", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rumraisin/v20/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rumraisin/v20/nwpRtKu3Ih8D5avB4h2uF36Czw.ttf" + }, + { + "family": "Ruslan Display", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ruslandisplay/v22/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ruslandisplay/v22/Gw6jwczl81XcIZuckK_e3Upfdwxqn9g.ttf" + }, + { + "family": "Russo One", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsHOycmM.ttf" + }, + { + "family": "Ruthie", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ruthie/v24/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ruthie/v24/gokvH63sGkdqXuUNlTRz.ttf" + }, + { + "family": "Rye", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/rye/v13/r05XGLJT86YDFpTsXOqx4w.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/rye/v13/r05XGLJT86YzF57o.ttf" + }, + { + "family": "STIX Two Text", + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v11", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YihS2SOYWxFMN1WD.ttf", + "600": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yii-3iOYWxFMN1WD.ttf", + "700": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YiiH3iOYWxFMN1WD.ttf", + "regular": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2SOYWxFMN1WD.ttf", + "italic": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omsvbURVuMkWDmSo.ttf", + "500italic": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omvnbURVuMkWDmSo.ttf", + "600italic": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omhXcURVuMkWDmSo.ttf", + "700italic": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omizcURVuMkWDmSo.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2ROZURU.ttf" + }, + { + "family": "Sacramento", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sacramento/v13/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sacramento/v13/buEzpo6gcdjy0EiZMBUG4Csf-A.ttf" + }, + { + "family": "Sahitya", + "variants": [ "regular", "700" ], + "subsets": [ "devanagari", "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/sahitya/v17/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf", + "regular": "http://fonts.gstatic.com/s/sahitya/v17/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sahitya/v17/6qLAKZkOuhnuqlJAWSYPOw.ttf" + }, + { + "family": "Sail", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJFBTDADYAbvw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJJBXJBA.ttf" + }, + { + "family": "Saira", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rDosg7lwYmUVY.ttf", + "200": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rCosg7lwYmUVY.ttf", + "300": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7wTCosg7lwYmUVY.ttf", + "500": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA72jCosg7lwYmUVY.ttf", + "600": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA74TFosg7lwYmUVY.ttf", + "700": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773Fosg7lwYmUVY.ttf", + "800": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rFosg7lwYmUVY.ttf", + "900": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7_PFosg7lwYmUVY.ttf", + "regular": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCosg7lwYmUVY.ttf", + "100italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSooxkyQjQVYmxA.ttf", + "200italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByosxkyQjQVYmxA.ttf", + "300italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBFIsxkyQjQVYmxA.ttf", + "italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSosxkyQjQVYmxA.ttf", + "500italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBeIsxkyQjQVYmxA.ttf", + "600italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBlIwxkyQjQVYmxA.ttf", + "700italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBrYwxkyQjQVYmxA.ttf", + "800italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByowxkyQjQVYmxA.ttf", + "900italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKB44wxkyQjQVYmxA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCkskxkw.ttf" + }, + { + "family": "Saira Condensed", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf", + "200": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf", + "300": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf", + "500": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf", + "600": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf", + "700": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf", + "800": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf", + "900": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf", + "regular": "http://fonts.gstatic.com/s/sairacondensed/v11/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sairacondensed/v11/EJROQgErUN8XuHNEtX81i9TmEkrvpOtA.ttf" + }, + { + "family": "Saira Extra Condensed", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf", + "200": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf", + "300": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf", + "500": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf", + "600": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf", + "700": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf", + "800": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf", + "900": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf", + "regular": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTj7kjx.ttf" + }, + { + "family": "Saira Semi Condensed", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf", + "200": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf", + "300": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf", + "500": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf", + "600": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf", + "700": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf", + "800": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf", + "900": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf", + "regular": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRX8KaOM.ttf" + }, + { + "family": "Saira Stencil One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sairastencilone/v14/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sairastencilone/v14/SLXSc03I6HkvZGJ1GvvipLoYSTEL9DsNYQw.ttf" + }, + { + "family": "Salsa", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/salsa/v17/gNMKW3FiRpKj-imY8ncKEZez.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/salsa/v17/gNMKW3FiRpKj-hmZ-HM.ttf" + }, + { + "family": "Sanchez", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sanchez/v13/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf", + "italic": "http://fonts.gstatic.com/s/sanchez/v13/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sanchez/v13/Ycm2sZJORluHnXbIfm9R-A.ttf" + }, + { + "family": "Sancreek", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sancreek/v23/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sancreek/v23/pxiHypAnsdxUm159X4D_V1s.ttf" + }, + { + "family": "Sansita", + "variants": [ + "regular", + "italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf", + "800": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf", + "900": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf", + "regular": "http://fonts.gstatic.com/s/sansita/v11/QldONTRRphEb_-V7HBm7TXFf3qw.ttf", + "italic": "http://fonts.gstatic.com/s/sansita/v11/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf", + "700italic": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf", + "800italic": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf", + "900italic": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sansita/v11/QldONTRRphEb_-V7LBixSQ.ttf" + }, + { + "family": "Sansita Swashed", + "variants": [ "300", "regular", "500", "600", "700", "800", "900" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW-ppbToVehmEa4Q.ttf", + "500": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW4ZpbToVehmEa4Q.ttf", + "600": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW2pubToVehmEa4Q.ttf", + "700": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW1NubToVehmEa4Q.ttf", + "800": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWzRubToVehmEa4Q.ttf", + "900": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWx1ubToVehmEa4Q.ttf", + "regular": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpbToVehmEa4Q.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpXTsffg.ttf" + }, + { + "family": "Sarabun", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic" + ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf", + "200": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf", + "300": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf", + "500": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf", + "600": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf", + "700": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf", + "800": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf", + "100italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf", + "200italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf", + "300italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf", + "regular": "http://fonts.gstatic.com/s/sarabun/v13/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf", + "italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf", + "500italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf", + "600italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf", + "700italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf", + "800italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sarabun/v13/DtVjJx26TKEr37c9aBNJmg.ttf" + }, + { + "family": "Sarala", + "variants": [ "regular", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/sarala/v10/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf", + "regular": "http://fonts.gstatic.com/s/sarala/v10/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sarala/v10/uK_y4riEZv4o1w9hCxcX.ttf" + }, + { + "family": "Sarina", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sarina/v21/-F6wfjF3ITQwasLhLkDUriBQxw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sarina/v21/-F6wfjF3ITQwasLRL0rQ.ttf" + }, + { + "family": "Sarpanch", + "variants": [ "regular", "500", "600", "700", "800", "900" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf", + "600": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf", + "700": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf", + "800": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf", + "900": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf", + "regular": "http://fonts.gstatic.com/s/sarpanch/v11/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sarpanch/v11/hESy6Xt4NCpRuk6Pzi2BTo4.ttf" + }, + { + "family": "Sassy Frass", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sassyfrass/v5/LhWhMVrGOe0FLb97BjhsE99dGNWQg_am.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sassyfrass/v5/LhWhMVrGOe0FLb97BjhsE-9cEtE.ttf" + }, + { + "family": "Satisfy", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/satisfy/v17/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/satisfy/v17/rP2Hp2yn6lkG50LoCZWIGA.ttf" + }, + { + "family": "Sawarabi Gothic", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v12", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/sawarabigothic/v12/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sawarabigothic/v12/x3d4ckfVaqqa-BEj-I9mE65u3k39BCMz.ttf" + }, + { + "family": "Sawarabi Mincho", + "variants": [ "regular" ], + "subsets": [ "japanese", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJjLKJL.ttf" + }, + { + "family": "Scada", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/scada/v15/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf", + "regular": "http://fonts.gstatic.com/s/scada/v15/RLpxK5Pv5qumeWJoxzUobkvv.ttf", + "italic": "http://fonts.gstatic.com/s/scada/v15/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf", + "700italic": "http://fonts.gstatic.com/s/scada/v15/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/scada/v15/RLpxK5Pv5qumeVJpzTE.ttf" + }, + { + "family": "Scheherazade New", + "variants": [ "regular", "700" ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-11-09", + "files": { + "700": "http://fonts.gstatic.com/s/scheherazadenew/v14/4UaerFhTvxVnHDvUkUiHg8jprP4DM79DHlYC-IKnoSE.ttf", + "regular": "http://fonts.gstatic.com/s/scheherazadenew/v14/4UaZrFhTvxVnHDvUkUiHg8jprP4DCwNsOl4p5Is.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/scheherazadenew/v14/4UaZrFhTvxVnHDvUkUiHg8jprP4DOwJmPg.ttf" + }, + { + "family": "Schibsted Grotesk", + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v3", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNEMEAT8JuXFGVOQ.ttf", + "600": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMN_MYAT8JuXFGVOQ.ttf", + "700": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYAT8JuXFGVOQ.ttf", + "800": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNosYAT8JuXFGVOQ.ttf", + "900": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNi8YAT8JuXFGVOQ.ttf", + "regular": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNIsEAT8JuXFGVOQ.ttf", + "italic": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLoDMhqflSFOTXs.ttf", + "500italic": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLaDMhqflSFOTXs.ttf", + "600italic": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oI2C8hqflSFOTXs.ttf", + "700italic": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oIPC8hqflSFOTXs.ttf", + "800italic": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJoC8hqflSFOTXs.ttf", + "900italic": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJBC8hqflSFOTXs.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNIsEwTshq.ttf" + }, + { + "family": "Schoolbell", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIZxMa7g.ttf" + }, + { + "family": "Scope One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGDFWkXI.ttf" + }, + { + "family": "Seaweed Script", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/seaweedscript/v13/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/seaweedscript/v13/bx6cNx6Tne2pxOATYE8C_Rsoe3WI8qM.ttf" + }, + { + "family": "Secular One", + "variants": [ "regular" ], + "subsets": [ "hebrew", "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/secularone/v11/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/secularone/v11/8QINdiTajsj_87rMuMdKyqDkOO0.ttf" + }, + { + "family": "Sedgwick Ave", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sedgwickave/v12/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sedgwickave/v12/uK_04rKEYuguzAcSYRdWTJqMX2Ix.ttf" + }, + { + "family": "Sedgwick Ave Display", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sedgwickavedisplay/v19/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sedgwickavedisplay/v19/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM1cyfeI.ttf" + }, + { + "family": "Sen", + "variants": [ "regular", "700", "800" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__J9CoKkH1JHUQSQ.ttf", + "800": "http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__O9OoKkH1JHUQSQ.ttf", + "regular": "http://fonts.gstatic.com/s/sen/v7/6xKjdSxYI9_Hm_-MImrpLQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sen/v7/6xKjdSxYI9_3mvWI.ttf" + }, + { + "family": "Send Flowers", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sendflowers/v2/If2PXTjtZS-0Xqy13uCQSULvxwjjouU1iw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sendflowers/v2/If2PXTjtZS-0Xqy13uCQSULfxgLn.ttf" + }, + { + "family": "Sevillana", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/sevillana/v21/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sevillana/v21/KFOlCnWFscmDt1Bfiy1fAhc9.ttf" + }, + { + "family": "Seymour One", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/seymourone/v20/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/seymourone/v20/4iCp6Khla9xbjQpoWGGd0lyJN4Q.ttf" + }, + { + "family": "Shadows Into Light", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/shadowsintolight/v15/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/shadowsintolight/v15/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQzc8D8.ttf" + }, + { + "family": "Shadows Into Light Two", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/shadowsintolighttwo/v14/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/shadowsintolighttwo/v14/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmpArHHA.ttf" + }, + { + "family": "Shalimar", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/shalimar/v5/uU9MCBoE6I6iNWFUvTPx8PCOg0uX.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/shalimar/v5/uU9MCBoE6I6iNWFUvQPw-vQ.ttf" + }, + { + "family": "Shantell Sans", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "800", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v7", + "lastModified": "2023-04-27", + "files": { + "300": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYQiS2i2yPwxjyRN.ttf", + "500": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYROS2i2yPwxjyRN.ttf", + "600": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSiTGi2yPwxjyRN.ttf", + "700": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSbTGi2yPwxjyRN.ttf", + "800": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYT8TGi2yPwxjyRN.ttf", + "regular": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYR8S2i2yPwxjyRN.ttf", + "300italic": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CN71wvgTijRNYgQ.ttf", + "italic": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CID1wvgTijRNYgQ.ttf", + "500italic": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CLL1wvgTijRNYgQ.ttf", + "600italic": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CF7ywvgTijRNYgQ.ttf", + "700italic": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CGfywvgTijRNYgQ.ttf", + "800italic": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CADywvgTijRNYgQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYR8S1i3wvg.ttf" + }, + { + "family": "Shanti", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v23", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/shanti/v23/t5thIREMM4uSDgzgU0ezpKfwzA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/shanti/v23/t5thIREMM4uSDgzQUk23.ttf" + }, + { + "family": "Share", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/share/v16/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf", + "regular": "http://fonts.gstatic.com/s/share/v16/i7dEIFliZjKNF5VNHLq2cV5d.ttf", + "italic": "http://fonts.gstatic.com/s/share/v16/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf", + "700italic": "http://fonts.gstatic.com/s/share/v16/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/share/v16/i7dEIFliZjKNF6VMFr4.ttf" + }, + { + "family": "Share Tech", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sharetech/v17/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sharetech/v17/7cHtv4Uyi5K0OeZ7bohU8HsJnQ.ttf" + }, + { + "family": "Share Tech Mono", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFcLpQEA.ttf" + }, + { + "family": "Shippori Antique", + "variants": [ "regular" ], + "subsets": [ "japanese", "latin", "latin-ext" ], + "version": "v8", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/shipporiantique/v8/-F6qfid3KC8pdMyzR0qRyFUht11v8ldPg-IUDNg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/shipporiantique/v8/-F6qfid3KC8pdMyzR0qRyFUht11vwlZFhw.ttf" + }, + { + "family": "Shippori Antique B1", + "variants": [ "regular" ], + "subsets": [ "japanese", "latin", "latin-ext" ], + "version": "v8", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/shipporiantiqueb1/v8/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRFCj9-5Y8Y.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/shipporiantiqueb1/v8/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40gnRBIiw.ttf" + }, + { + "family": "Shippori Mincho", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "japanese", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-27", + "files": { + "500": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4L9am5JEO5--2zg.ttf", + "600": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4A9Gm5JEO5--2zg.ttf", + "700": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4Z9Cm5JEO5--2zg.ttf", + "800": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4e9Om5JEO5--2zg.ttf", + "regular": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGGAZweH5EbgHY6YExcZfDoj0BA2_-C7LoS7g.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGGAZweH5EbgHY6YExcZfDoj0Bw2vWG.ttf" + }, + { + "family": "Shippori Mincho B1", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "japanese", "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-27", + "files": { + "500": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRj0AyAAKgQIARgB.ttf", + "600": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRjYBCAAKgQIARgB.ttf", + "700": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRi8BSAAKgQIARgB.ttf", + "800": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRigBiAAKgQIARgB.ttf", + "regular": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChQKElNoaXBwb3JpIE1pbmNobyBCMSAAKgQIARgB.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChQKElNoaXBwb3JpIE1pbmNobyBCMRABIAA=.ttf" + }, + { + "family": "Shojumaru", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtl8BRha.ttf" + }, + { + "family": "Short Stack", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX9STe3s.ttf" + }, + { + "family": "Shrikhand", + "variants": [ "regular" ], + "subsets": [ "gujarati", "latin", "latin-ext" ], + "version": "v12", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/shrikhand/v12/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/shrikhand/v12/a8IbNovtLWfR7T7bMJwrBYKU.ttf" + }, + { + "family": "Siemreap", + "variants": [ "regular" ], + "subsets": [ "khmer" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/siemreap/v24/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/siemreap/v24/Gg82N5oFbgLvHAfNl1Yalgs.ttf" + }, + { + "family": "Sigmar", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/sigmar/v3/hv-XlzJgIE8a85pUbWY3MTFgVg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sigmar/v3/hv-XlzJgIE8a85pkbGwz.ttf" + }, + { + "family": "Sigmar One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sigmarone/v16/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sigmarone/v16/co3DmWZ8kjZuErj9Ta3do6Lpow.ttf" + }, + { + "family": "Signika", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tIJHJbGhs_cfKe1.ttf", + "500": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJlHJbGhs_cfKe1.ttf", + "600": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKJG5bGhs_cfKe1.ttf", + "700": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKwG5bGhs_cfKe1.ttf", + "regular": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJXHJbGhs_cfKe1.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJXHKbHjMs.ttf" + }, + { + "family": "Signika Negative", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAr5S73st9hiuEq8.ttf", + "500": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqVS73st9hiuEq8.ttf", + "600": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAp5TL3st9hiuEq8.ttf", + "700": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RApATL3st9hiuEq8.ttf", + "regular": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS73st9hiuEq8.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS43tvdw.ttf" + }, + { + "family": "Silkscreen", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v1", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/silkscreen/v1/m8JUjfVPf62XiF7kO-i9aAhATmuo2dudFvc.ttf", + "regular": "http://fonts.gstatic.com/s/silkscreen/v1/m8JXjfVPf62XiF7kO-i9ULRvamODxdI.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/silkscreen/v1/m8JXjfVPf62XiF7kO-i9YLVlbg.ttf" + }, + { + "family": "Simonetta", + "variants": [ "regular", "italic", "900", "900italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2023-05-02", + "files": { + "900": "http://fonts.gstatic.com/s/simonetta/v24/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf", + "regular": "http://fonts.gstatic.com/s/simonetta/v24/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf", + "italic": "http://fonts.gstatic.com/s/simonetta/v24/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf", + "900italic": "http://fonts.gstatic.com/s/simonetta/v24/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/simonetta/v24/x3dickHVYrCU5BU15c4xffoG.ttf" + }, + { + "family": "Single Day", + "variants": [ "regular" ], + "subsets": [ "korean" ], + "version": "v15", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/singleday/v15/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/singleday/v15/LYjHdGDjlEgoAcF95EI5vVsPVA.ttf" + }, + { + "family": "Sintony", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/sintony/v13/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf", + "regular": "http://fonts.gstatic.com/s/sintony/v13/XoHm2YDqR7-98cVUITQnu98ojjs.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sintony/v13/XoHm2YDqR7-98cVUETUtvw.ttf" + }, + { + "family": "Sirin Stencil", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/sirinstencil/v21/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sirinstencil/v21/mem4YaWwznmLx-lzGfN7MdRyRclMAg.ttf" + }, + { + "family": "Six Caps", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sixcaps/v16/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sixcaps/v16/6ae_4KGrU7VR7bNmaYcT_3E.ttf" + }, + { + "family": "Skranji", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/skranji/v13/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf", + "regular": "http://fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMUzqklg.ttf" + }, + { + "family": "Slabo 13px", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/slabo13px/v13/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/slabo13px/v13/11hEGp_azEvXZUdSBzzRQKah3w.ttf" + }, + { + "family": "Slabo 27px", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/slabo27px/v12/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/slabo27px/v12/mFT0WbgBwKPR_Z4hGN2qgxkD0A.ttf" + }, + { + "family": "Slackey", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/slackey/v24/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/slackey/v24/N0bV2SdQO-5yM0-dGlVQIQ.ttf" + }, + { + "family": "Smokum", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/smokum/v24/TK3iWkUbAhopmrdGHjUHte5fKg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/smokum/v24/TK3iWkUbAhopmrd2Hz8D.ttf" + }, + { + "family": "Smooch", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v5", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/smooch/v5/o-0LIps4xW8U1xUBjqp_6hVdYg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/smooch/v5/o-0LIps4xW8U1xUxj6B7.ttf" + }, + { + "family": "Smooch Sans", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v10", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUFodqIeNlzayg.ttf", + "200": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUBodqIeNlzayg.ttf", + "300": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oin0BodqIeNlzayg.ttf", + "500": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oi80BodqIeNlzayg.ttf", + "600": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiH0dodqIeNlzayg.ttf", + "700": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiJkdodqIeNlzayg.ttf", + "800": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUdodqIeNlzayg.ttf", + "900": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiaEdodqIeNlzayg.ttf", + "regular": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUBodqIeNlzayg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUBYd6ga.ttf" + }, + { + "family": "Smythe", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v23", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1BOLh_uGInjA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1xObJ7.ttf" + }, + { + "family": "Sniglet", + "variants": [ "regular", "800" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "800": "http://fonts.gstatic.com/s/sniglet/v17/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf", + "regular": "http://fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJ9CihZA.ttf" + }, + { + "family": "Snippet", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu6v7KeQ.ttf" + }, + { + "family": "Snowburst One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7SZ6eOw.ttf" + }, + { + "family": "Sofadi One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGQDKCFQ.ttf" + }, + { + "family": "Sofia", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_vu-sowsrqjk.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_su_uIg.ttf" + }, + { + "family": "Sofia Sans", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext" + ], + "version": "v16", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sa3trvKCXl8k.ttf", + "200": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6sK3trvKCXl8k.ttf", + "300": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69AksK3trvKCXl8k.ttf", + "500": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69BIsK3trvKCXl8k.ttf", + "600": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Ckt63trvKCXl8k.ttf", + "700": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Cdt63trvKCXl8k.ttf", + "800": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6t63trvKCXl8k.ttf", + "900": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69DTt63trvKCXl8k.ttf", + "regular": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sK3trvKCXl8k.ttf", + "100italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WvpPagW08kdLY.ttf", + "200italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WupPagW08kdLY.ttf", + "300italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8xuupPagW08kdLY.ttf", + "italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WupPagW08kdLY.ttf", + "500italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy83eupPagW08kdLY.ttf", + "600italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy85uppPagW08kdLY.ttf", + "700italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy86KppPagW08kdLY.ttf", + "800italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WppPagW08kdLY.ttf", + "900italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8-yppPagW08kdLY.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sJ3spPY.ttf" + }, + { + "family": "Sofia Sans Condensed", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext" + ], + "version": "v2", + "lastModified": "2023-02-02", + "files": { + "100": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Csl8QO3OfwQQ.ttf", + "200": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-Gsl8QO3OfwQQ.ttf", + "300": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUq2eGsl8QO3OfwQQ.ttf", + "500": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqteGsl8QO3OfwQQ.ttf", + "600": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqWeasl8QO3OfwQQ.ttf", + "700": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqYOasl8QO3OfwQQ.ttf", + "800": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-asl8QO3OfwQQ.ttf", + "900": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqLuasl8QO3OfwQQ.ttf", + "regular": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Gsl8QO3OfwQQ.ttf", + "100italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1c4K_uLgQZ_3.ttf", + "200italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE1M4K_uLgQZ_3.ttf", + "300italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ia1M4K_uLgQZ_3.ttf", + "italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1M4K_uLgQZ_3.ttf", + "500italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6J21M4K_uLgQZ_3.ttf", + "600italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ka084K_uLgQZ_3.ttf", + "700italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Kj084K_uLgQZ_3.ttf", + "800italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE084K_uLgQZ_3.ttf", + "900italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Lt084K_uLgQZ_3.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Gcls4K.ttf" + }, + { + "family": "Sofia Sans Extra Condensed", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext" + ], + "version": "v2", + "lastModified": "2023-02-02", + "files": { + "100": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmmEfzmM356GxA.ttf", + "200": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGmiEfzmM356GxA.ttf", + "300": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLxGiEfzmM356GxA.ttf", + "500": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLqGiEfzmM356GxA.ttf", + "600": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLRG-EfzmM356GxA.ttf", + "700": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLfW-EfzmM356GxA.ttf", + "800": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGm-EfzmM356GxA.ttf", + "900": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLM2-EfzmM356GxA.ttf", + "regular": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmiEfzmM356GxA.ttf", + "100italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPTOI_ZuWxFXe.ttf", + "200italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsPDOI_ZuWxFXe.ttf", + "300italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUisyPDOI_ZuWxFXe.ttf", + "italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPDOI_ZuWxFXe.ttf", + "500italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitePDOI_ZuWxFXe.ttf", + "600italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuyOzOI_ZuWxFXe.ttf", + "700italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuLOzOI_ZuWxFXe.ttf", + "800italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsOzOI_ZuWxFXe.ttf", + "900italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivFOzOI_ZuWxFXe.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmi0fjOI.ttf" + }, + { + "family": "Sofia Sans Semi Condensed", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext" + ], + "version": "v4", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEO9TGahllIhN.ttf", + "200": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbEe9TGahllIhN.ttf", + "300": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvopFEe9TGahllIhN.ttf", + "500": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoopEe9TGahllIhN.ttf", + "600": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvorFFu9TGahllIhN.ttf", + "700": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvor8Fu9TGahllIhN.ttf", + "800": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbFu9TGahllIhN.ttf", + "900": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqyFu9TGahllIhN.ttf", + "regular": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEe9TGahllIhN.ttf", + "100italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcRE6xHkZhNeas.ttf", + "200italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocQE6xHkZhNeas.ttf", + "300italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUlkQE6xHkZhNeas.ttf", + "italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcQE6xHkZhNeas.ttf", + "500italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUjUQE6xHkZhNeas.ttf", + "600italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUtkXE6xHkZhNeas.ttf", + "700italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUuAXE6xHkZhNeas.ttf", + "800italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocXE6xHkZhNeas.ttf", + "900italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUq4XE6xHkZhNeas.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEd9SE6w.ttf" + }, + { + "family": "Solitreo", + "variants": [ "regular" ], + "subsets": [ "hebrew", "latin", "latin-ext" ], + "version": "v2", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/solitreo/v2/r05YGLlS5a9KYsyNO8upyDYtStiJ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/solitreo/v2/r05YGLlS5a9KYsyNO_uowjI.ttf" + }, + { + "family": "Solway", + "variants": [ "300", "regular", "500", "700", "800" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2023-02-16", + "files": { + "300": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuLlgZms0QW3mqyg.ttf", + "500": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCudlkZms0QW3mqyg.ttf", + "700": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuPl8Zms0QW3mqyg.ttf", + "800": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuIlwZms0QW3mqyg.ttf", + "regular": "http://fonts.gstatic.com/s/solway/v18/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/solway/v18/AMOQz46Cs2uTAOCmg3o5.ttf" + }, + { + "family": "Song Myung", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v20", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/songmyung/v20/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/songmyung/v20/1cX2aUDWAJH5-EIC7DIhn1CggQ.ttf" + }, + { + "family": "Sono", + "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v4", + "lastModified": "2023-03-21", + "files": { + "200": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkWdEnR4qYeB4Q.ttf", + "300": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxV6EWdEnR4qYeB4Q.ttf", + "500": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVhEWdEnR4qYeB4Q.ttf", + "600": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVaEKdEnR4qYeB4Q.ttf", + "700": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVUUKdEnR4qYeB4Q.ttf", + "800": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkKdEnR4qYeB4Q.ttf", + "regular": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVtkWdEnR4qYeB4Q.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVtkWtE358.ttf" + }, + { + "family": "Sonsie One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18UVq21g.ttf" + }, + { + "family": "Sora", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSn3-KIwNhBti0.ttf", + "200": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSnn-KIwNhBti0.ttf", + "300": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmScMnn-KIwNhBti0.ttf", + "500": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdgnn-KIwNhBti0.ttf", + "600": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSeMmX-KIwNhBti0.ttf", + "700": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSe1mX-KIwNhBti0.ttf", + "800": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSmX-KIwNhBti0.ttf", + "regular": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSnn-KIwNhBti0.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSnk-LKQc.ttf" + }, + { + "family": "Sorts Mill Goudy", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf", + "italic": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEbHwEig.ttf" + }, + { + "family": "Source Code Pro", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyQhM5hTXUcdJg.ttf", + "300": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhM5hTXUcdJg.ttf", + "500": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf", + "600": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM5hTXUcdJg.ttf", + "700": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXhM5hTXUcdJg.ttf", + "800": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyXhM5hTXUcdJg.ttf", + "900": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DGWXhM5hTXUcdJg.ttf", + "regular": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf", + "200italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7I1rSVcZZJiGpw.ttf", + "300italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTMo1rSVcZZJiGpw.ttf", + "italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1rSVcZZJiGpw.ttf", + "500italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTXo1rSVcZZJiGpw.ttf", + "600italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTsoprSVcZZJiGpw.ttf", + "700italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTi4prSVcZZJiGpw.ttf", + "800italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7IprSVcZZJiGpw.ttf", + "900italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTxYprSVcZZJiGpw.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtM9rSQ.ttf" + }, + { + "family": "Source Sans 3", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v9", + "lastModified": "2023-05-02", + "files": { + "200": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", + "300": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", + "500": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", + "600": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", + "700": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", + "800": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", + "900": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf", + "regular": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", + "200italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlO9C4Ym4fB3Ts.ttf", + "300italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqOdO9C4Ym4fB3Ts.ttf", + "italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqLlO9C4Ym4fB3Ts.ttf", + "500italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqItO9C4Ym4fB3Ts.ttf", + "600italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9C4Ym4fB3Ts.ttf", + "700italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9C4Ym4fB3Ts.ttf", + "800italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlJ9C4Ym4fB3Ts.ttf", + "900italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9C4Ym4fB3Ts.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky462EM9C4.ttf" + }, + { + "family": "Source Sans Pro", + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "600", + "600italic", + "700", + "700italic", + "900", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf", + "300": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf", + "600": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf", + "700": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf", + "900": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf", + "200italic": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf", + "300italic": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf", + "regular": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf", + "italic": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf", + "600italic": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf", + "700italic": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf", + "900italic": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPq7g.ttf" + }, + { + "family": "Source Serif 4", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdqrhxXD-wGvjU.ttf", + "300": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiklqrhxXD-wGvjU.ttf", + "500": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiiVqrhxXD-wGvjU.ttf", + "600": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjisltrhxXD-wGvjU.ttf", + "700": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjivBtrhxXD-wGvjU.ttf", + "800": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdtrhxXD-wGvjU.ttf", + "900": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjir5trhxXD-wGvjU.ttf", + "regular": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhxXD-wGvjU.ttf", + "200italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxl9dC84DrjXEXw.ttf", + "300italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pGF9dC84DrjXEXw.ttf", + "italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dC84DrjXEXw.ttf", + "500italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pdF9dC84DrjXEXw.ttf", + "600italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pmFhdC84DrjXEXw.ttf", + "700italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdC84DrjXEXw.ttf", + "800italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxlhdC84DrjXEXw.ttf", + "900italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98p71hdC84DrjXEXw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqnh1dCw.ttf" + }, + { + "family": "Source Serif Pro", + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "600", + "600italic", + "700", + "700italic", + "900", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasbsfhSugxYUvZrI.ttf", + "300": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasd8chSugxYUvZrI.ttf", + "600": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf", + "700": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf", + "900": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasfcZhSugxYUvZrI.ttf", + "200italic": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGbSqqwacqdrKvbQ.ttf", + "300italic": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGCSmqwacqdrKvbQ.ttf", + "regular": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf", + "italic": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIWzD-0qpwxpaWvjeD0X88SAOeauXE-pQGOyYw2fw.ttf", + "600italic": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGfS-qwacqdrKvbQ.ttf", + "700italic": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGGS6qwacqdrKvbQ.ttf", + "900italic": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGISyqwacqdrKvbQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIQzD-0qpwxpaWvjeD0X88SAOeauXI-pQ.ttf" + }, + { + "family": "Space Grotesk", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v15", + "lastModified": "2023-01-06", + "files": { + "300": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsjNsFjTDJK.ttf", + "500": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsjNsFjTDJK.ttf", + "600": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksjNsFjTDJK.ttf", + "700": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksjNsFjTDJK.ttf", + "regular": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsjNsFjTDJK.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUXsiPMU.ttf" + }, + { + "family": "Space Mono", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v12", + "lastModified": "2023-01-06", + "files": { + "700": "http://fonts.gstatic.com/s/spacemono/v12/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf", + "regular": "http://fonts.gstatic.com/s/spacemono/v12/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf", + "italic": "http://fonts.gstatic.com/s/spacemono/v12/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf", + "700italic": "http://fonts.gstatic.com/s/spacemono/v12/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/spacemono/v12/i7dPIFZifjKcF5UAWdDRYEd8QA.ttf" + }, + { + "family": "Special Elite", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0ntnYOTQ.ttf" + }, + { + "family": "Spectral", + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic" + ], + "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], + "version": "v13", + "lastModified": "2023-01-06", + "files": { + "200": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf", + "300": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf", + "500": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf", + "600": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf", + "700": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf", + "800": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf", + "200italic": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf", + "300italic": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf", + "regular": "http://fonts.gstatic.com/s/spectral/v13/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf", + "italic": "http://fonts.gstatic.com/s/spectral/v13/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf", + "500italic": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf", + "600italic": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf", + "700italic": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf", + "800italic": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/spectral/v13/rnCr-xNNww_2s0amA9M_kn0.ttf" + }, + { + "family": "Spectral SC", + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic" + ], + "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], + "version": "v12", + "lastModified": "2023-05-02", + "files": { + "200": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf", + "300": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf", + "500": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf", + "600": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf", + "700": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf", + "800": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf", + "200italic": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf", + "300italic": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf", + "regular": "http://fonts.gstatic.com/s/spectralsc/v12/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf", + "italic": "http://fonts.gstatic.com/s/spectralsc/v12/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf", + "500italic": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf", + "600italic": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf", + "700italic": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf", + "800italic": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/spectralsc/v12/KtkpALCRZonmalTgyPmRfsWj42Q.ttf" + }, + { + "family": "Spicy Rice", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/spicyrice/v21/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/spicyrice/v21/uK_24rSEd-Uqwk4jY1RyKv68Xg.ttf" + }, + { + "family": "Spinnaker", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/spinnaker/v17/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/spinnaker/v17/w8gYH2oyX-I0_rvR6HmX3XYP.ttf" + }, + { + "family": "Spirax", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3cXktt-Csn-Q.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3sX0Fp.ttf" + }, + { + "family": "Splash", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/splash/v2/KtksAL2RZoDkbU6hpPPGNdS6wg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/splash/v2/KtksAL2RZoDkbU6RpfnC.ttf" + }, + { + "family": "Spline Sans", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v9", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpZlnYEtvlUfE2kw.ttf", + "500": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpClnYEtvlUfE2kw.ttf", + "600": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp5l7YEtvlUfE2kw.ttf", + "700": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp317YEtvlUfE2kw.ttf", + "regular": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnYEtvlUfE2kw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnoE9Hh.ttf" + }, + { + "family": "Spline Sans Mono", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v8", + "lastModified": "2023-03-21", + "files": { + "300": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGA8MrtVy4d4dGb1.ttf", + "500": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBQMrtVy4d4dGb1.ttf", + "600": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGC8NbtVy4d4dGb1.ttf", + "700": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGCFNbtVy4d4dGb1.ttf", + "regular": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBiMrtVy4d4dGb1.ttf", + "300italic": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcQ0WwYNacXb12MM.ttf", + "italic": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcVMWwYNacXb12MM.ttf", + "500italic": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcWEWwYNacXb12MM.ttf", + "600italic": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcY0RwYNacXb12MM.ttf", + "700italic": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcbQRwYNacXb12MM.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBiMotUwYM.ttf" + }, + { + "family": "Squada One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/squadaone/v14/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/squadaone/v14/BCasqZ8XsOrx4mcOk6MtaaE2XA.ttf" + }, + { + "family": "Square Peg", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/squarepeg/v2/y83eW48Nzw6ZlUHc-phrBDHrHHfrFPE.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/squarepeg/v2/y83eW48Nzw6ZlUHc-phrNDDhGA.ttf" + }, + { + "family": "Sree Krushnadevaraya", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sreekrushnadevaraya/v21/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sreekrushnadevaraya/v21/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_HWa0lw.ttf" + }, + { + "family": "Sriracha", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v11", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/sriracha/v11/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sriracha/v11/0nkrC9D4IuYBgWcI9NbZTwQ.ttf" + }, + { + "family": "Srisakdi", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/srisakdi/v16/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf", + "regular": "http://fonts.gstatic.com/s/srisakdi/v16/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/srisakdi/v16/yMJRMIlvdpDbkB0A-gq9dyg.ttf" + }, + { + "family": "Staatliches", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/staatliches/v11/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/staatliches/v11/HI_OiY8KO6hCsQSoAPmtMYedvpU.ttf" + }, + { + "family": "Stalemate", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/stalemate/v20/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/stalemate/v20/taiIGmZ_EJq97-UfkZRZu66o.ttf" + }, + { + "family": "Stalinist One", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin", "latin-ext" ], + "version": "v54", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/stalinistone/v54/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/stalinistone/v54/MQpS-WezM9W4Dd7D3B7I-UT7SZ6eOw.ttf" + }, + { + "family": "Stardos Stencil", + "variants": [ "regular", "700" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf", + "regular": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2Th7l5z.ttf" + }, + { + "family": "Stick", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/stick/v15/Qw3TZQpMCyTtJSvfvPVDMPoF.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/stick/v15/Qw3TZQpMCyTtJRvetvE.ttf" + }, + { + "family": "Stick No Bills", + "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], + "subsets": [ "latin", "latin-ext", "sinhala" ], + "version": "v9", + "lastModified": "2023-05-02", + "files": { + "200": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8Q7KriwKhcTKA.ttf", + "300": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcV4cQ7KriwKhcTKA.ttf", + "500": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVjcQ7KriwKhcTKA.ttf", + "600": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVYcM7KriwKhcTKA.ttf", + "700": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVWMM7KriwKhcTKA.ttf", + "800": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8M7KriwKhcTKA.ttf", + "regular": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8Q7KriwKhcTKA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8QLK7K0.ttf" + }, + { + "family": "Stint Ultra Condensed", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/stintultracondensed/v21/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/stintultracondensed/v21/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2AOqx8K.ttf" + }, + { + "family": "Stint Ultra Expanded", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/stintultraexpanded/v20/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/stintultraexpanded/v20/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd3qpCzA.ttf" + }, + { + "family": "Stoke", + "variants": [ "300", "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/stoke/v22/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf", + "regular": "http://fonts.gstatic.com/s/stoke/v22/z7NadRb7aTMfKONpfihK1YTV.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/stoke/v22/z7NadRb7aTMfKNNodCw.ttf" + }, + { + "family": "Strait", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-03-21", + "files": { + "regular": "http://fonts.gstatic.com/s/strait/v15/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/strait/v15/DtViJxy6WaEr1LZDeTJp.ttf" + }, + { + "family": "Style Script", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v8", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/stylescript/v8/vm8xdRX3SV7Z0aPa88xzW5npeFT76NZnMw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/stylescript/v8/vm8xdRX3SV7Z0aPa88xzW5nZeV7_.ttf" + }, + { + "family": "Stylish", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/stylish/v20/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/stylish/v20/m8JSjfhPYriQkk7-TozzcA.ttf" + }, + { + "family": "Sue Ellen Francisco", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sueellenfrancisco/v16/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sueellenfrancisco/v16/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9notP3g.ttf" + }, + { + "family": "Suez One", + "variants": [ "regular" ], + "subsets": [ "hebrew", "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/suezone/v11/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/suezone/v11/taiJGmd_EZ6rqscQgOFImo4.ttf" + }, + { + "family": "Sulphur Point", + "variants": [ "300", "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afVU6n6kFUHPIFaU.ttf", + "700": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afUU9n6kFUHPIFaU.ttf", + "regular": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLp5K5vv8KaycDcazWFPBj2adfgYvw.ttf" + }, + { + "family": "Sumana", + "variants": [ "regular", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v10", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/sumana/v10/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf", + "regular": "http://fonts.gstatic.com/s/sumana/v10/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sumana/v10/4UaDrE5TqRBjGj-28RLm.ttf" + }, + { + "family": "Sunflower", + "variants": [ "300", "500", "700" ], + "subsets": [ "korean", "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf", + "500": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf", + "700": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-06MfSqIEC.ttf" + }, + { + "family": "Sunshiney", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcQEsOs.ttf" + }, + { + "family": "Supermercado One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/supermercadoone/v22/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/supermercadoone/v22/OpNXnpQWg8jc_xps_Gi14kVVEXOn20f9NA.ttf" + }, + { + "family": "Sura", + "variants": [ "regular", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2023-05-02", + "files": { + "700": "http://fonts.gstatic.com/s/sura/v16/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf", + "regular": "http://fonts.gstatic.com/s/sura/v16/SZc23FL5PbyzFf5UWzXtjUM.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/sura/v16/SZc23FL5PbyzJf9eXw.ttf" + }, + { + "family": "Suranna", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v13", + "lastModified": "2022-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/suranna/v13/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/suranna/v13/gokuH6ztGkFjWe58hBVTSw.ttf" + }, + { + "family": "Suravaram", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/suravaram/v21/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/suravaram/v21/_gP61R_usiY7SCym4xIwimSx.ttf" + }, + { + "family": "Suwannaphum", + "variants": [ "100", "300", "regular", "700", "900" ], + "subsets": [ "khmer", "latin" ], + "version": "v29", + "lastModified": "2022-04-27", + "files": { + "100": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnAgHV7GtDvc8jbe8hXXL3B9cSWXx2VZmk.ttf", + "300": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0J1-S8cRGcf3Ai.ttf", + "700": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0Z0OS8cRGcf3Ai.ttf", + "900": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0h0uS8cRGcf3Ai.ttf", + "regular": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnCgHV7GtDvc8jbe8hXXLWk9cQ.ttf" + }, + { + "family": "Swanky and Moo Moo", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v22", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/swankyandmoomoo/v22/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/swankyandmoomoo/v22/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kktLng.ttf" + }, + { + "family": "Syncopate", + "variants": [ "regular", "700" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/syncopate/v19/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf", + "regular": "http://fonts.gstatic.com/s/syncopate/v19/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/syncopate/v19/pe0sMIuPIYBCpEV5eFdCA_e6.ttf" + }, + { + "family": "Syne", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "greek", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6kR47NCV5Z.ttf", + "600": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf", + "700": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf", + "800": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6kR47NCV5Z.ttf", + "regular": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6kR47NCV5Z.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_04uQ6lTYo.ttf" + }, + { + "family": "Syne Mono", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/synemono/v15/K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/synemono/v15/K2FzfZNHj_FHBmRbFvHDI6qg.ttf" + }, + { + "family": "Syne Tactile", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/synetactile/v15/11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/synetactile/v15/11hGGpna2UTQKjMCVzjAPMKR3iEZ.ttf" + }, + { + "family": "Tai Heritage Pro", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext", "tai-viet", "vietnamese" ], + "version": "v5", + "lastModified": "2023-04-27", + "files": { + "700": "http://fonts.gstatic.com/s/taiheritagepro/v5/sZlYdQid-zgaNiNIYcUzJMU3IYyNmMB9NNRFMuhjCXY.ttf", + "regular": "http://fonts.gstatic.com/s/taiheritagepro/v5/sZlfdQid-zgaNiNIYcUzJMU3IYyNoHxSENxuLuE.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/taiheritagepro/v5/sZlfdQid-zgaNiNIYcUzJMU3IYyNkH1YFA.ttf" + }, + { + "family": "Tajawal", + "variants": [ "200", "300", "regular", "500", "700", "800", "900" ], + "subsets": [ "arabic", "latin" ], + "version": "v9", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf", + "300": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf", + "500": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf", + "700": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf", + "800": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf", + "900": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf", + "regular": "http://fonts.gstatic.com/s/tajawal/v9/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tajawal/v9/Iura6YBj_oCad4k1nzeBDg.ttf" + }, + { + "family": "Tangerine", + "variants": [ "regular", "700" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/tangerine/v17/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf", + "regular": "http://fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOxD5ZJ.ttf" + }, + { + "family": "Tapestry", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/tapestry/v2/SlGTmQecrosEYXhaGBIkqnB6aSQU.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tapestry/v2/SlGTmQecrosEYXhaGCIloHQ.ttf" + }, + { + "family": "Taprom", + "variants": [ "regular" ], + "subsets": [ "khmer", "latin" ], + "version": "v27", + "lastModified": "2022-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/taprom/v27/UcCn3F82JHycULbFQyk3-0kvHg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/taprom/v27/UcCn3F82JHycULb1QiMz.ttf" + }, + { + "family": "Tauri", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/tauri/v16/TwMA-IISS0AM3IpVWHU_TBqO.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tauri/v16/TwMA-IISS0AM3LpUUnE.ttf" + }, + { + "family": "Taviraj", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf", + "200": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf", + "300": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf", + "500": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf", + "600": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf", + "700": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf", + "800": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf", + "900": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf", + "100italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf", + "200italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf", + "300italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf", + "regular": "http://fonts.gstatic.com/s/taviraj/v11/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf", + "italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf", + "500italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf", + "600italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf", + "700italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf", + "800italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf", + "900italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/taviraj/v11/ahcZv8Cj3ylylTXzTO8rVw.ttf" + }, + { + "family": "Teko", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf", + "500": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf", + "600": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf", + "700": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf", + "regular": "http://fonts.gstatic.com/s/teko/v16/LYjNdG7kmE0gTaR3pCtBtVs.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/teko/v16/LYjNdG7kmE0gfaV9oA.ttf" + }, + { + "family": "Telex", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-12-08", + "files": { + "regular": "http://fonts.gstatic.com/s/telex/v17/ieVw2Y1fKWmIO9fTB1piKFIf.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/telex/v17/ieVw2Y1fKWmIO-fSDV4.ttf" + }, + { + "family": "Tenali Ramakrishna", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/tenaliramakrishna/v12/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tenaliramakrishna/v12/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-MKZ_u.ttf" + }, + { + "family": "Tenor Sans", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/tenorsans/v17/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tenorsans/v17/bx6ANxqUneKx06UkIXISn3N4Dw.ttf" + }, + { + "family": "Text Me One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/textmeone/v21/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/textmeone/v21/i7dOIFdlayuLUvgoFvHQFVZdYFI.ttf" + }, + { + "family": "Texturina", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYG_Ug25riW1OD.ttf", + "200": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYGvUg25riW1OD.ttf", + "300": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2fGGvUg25riW1OD.ttf", + "500": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eqGvUg25riW1OD.ttf", + "600": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2dGHfUg25riW1OD.ttf", + "700": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2d_HfUg25riW1OD.ttf", + "800": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYHfUg25riW1OD.ttf", + "900": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cxHfUg25riW1OD.ttf", + "regular": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGvUg25riW1OD.ttf", + "100italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1i0Z7AXkODN94.ttf", + "200italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1j0Z7AXkODN94.ttf", + "300italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWUNj0Z7AXkODN94.ttf", + "italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1j0Z7AXkODN94.ttf", + "500italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWS9j0Z7AXkODN94.ttf", + "600italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWcNk0Z7AXkODN94.ttf", + "700italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWfpk0Z7AXkODN94.ttf", + "800italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1k0Z7AXkODN94.ttf", + "900italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWbRk0Z7AXkODN94.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGsUh0Z4.ttf" + }, + { + "family": "Thasadith", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v9", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/thasadith/v9/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf", + "regular": "http://fonts.gstatic.com/s/thasadith/v9/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf", + "italic": "http://fonts.gstatic.com/s/thasadith/v9/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf", + "700italic": "http://fonts.gstatic.com/s/thasadith/v9/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/thasadith/v9/mtG44_1TIqPYrd_f5R1osUMQ.ttf" + }, + { + "family": "The Girl Next Door", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/thegirlnextdoor/v18/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/thegirlnextdoor/v18/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCY4VrF_.ttf" + }, + { + "family": "The Nautigal", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/thenautigal/v3/VdGGAZ8ZH51Lvng9fQV2bfKTWypA2_-C7LoS7g.ttf", + "regular": "http://fonts.gstatic.com/s/thenautigal/v3/VdGZAZ8ZH51Lvng9fQV2bfKr5wVk09Se5Q.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/thenautigal/v3/VdGZAZ8ZH51Lvng9fQV2bfKb5g9g.ttf" + }, + { + "family": "Tienne", + "variants": [ "regular", "700", "900" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf", + "900": "http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf", + "regular": "http://fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP07kUnD.ttf" + }, + { + "family": "Tillana", + "variants": [ "regular", "500", "600", "700", "800" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf", + "600": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf", + "700": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf", + "800": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf", + "regular": "http://fonts.gstatic.com/s/tillana/v11/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tillana/v11/VuJxdNvf35P4qJ1OSKfdPA.ttf" + }, + { + "family": "Tilt Neon", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v6", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/tiltneon/v6/E21L_d7gguXdwD9LEFY2WCeElCNtd-eBqpHp1TzrkJSmwpj5ndxquXK9WualJ9DS.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tiltneon/v6/E21L_d7gguXdwD9LEFY2WCeElCNtd-eBqpHp1TzrkJSmwpj5ndxquUK8UOI.ttf" + }, + { + "family": "Tilt Prism", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v8", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/tiltprism/v8/5h11iZgyPHoZ3YikNzWGfWey2dCAZXT-bH9V4VGn-FJ7tLI25oc_rIbwoTSrn86NKw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tiltprism/v8/5h11iZgyPHoZ3YikNzWGfWey2dCAZXT-bH9V4VGn-FJ7tLI25oc_rIbAoD6v.ttf" + }, + { + "family": "Tilt Warp", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v9", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/tiltwarp/v9/AlZc_zVDs5XpmO7yn3w7flUoytXJp3z29uEwmEMLEJljLXvT8UJSZTBxAVfMGOPb.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tiltwarp/v9/AlZc_zVDs5XpmO7yn3w7flUoytXJp3z29uEwmEMLEJljLXvT8UJSZQBwC1M.ttf" + }, + { + "family": "Timmana", + "variants": [ "regular" ], + "subsets": [ "latin", "telugu" ], + "version": "v12", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/timmana/v12/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/timmana/v12/6xKvdShfL9yK-rvpOmrRLA.ttf" + }, + { + "family": "Tinos", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/tinos/v24/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf", + "regular": "http://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwgX8dGVh8TI-.ttf", + "italic": "http://fonts.gstatic.com/s/tinos/v24/buE2poGnedXvwjX-fmFD9CI-4NU.ttf", + "700italic": "http://fonts.gstatic.com/s/tinos/v24/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwjX9fmE.ttf" + }, + { + "family": "Tiro Bangla", + "variants": [ "regular", "italic" ], + "subsets": [ "bengali", "latin", "latin-ext" ], + "version": "v6", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/tirobangla/v6/IFSgHe1Tm95E3O8b5i2V8MG9-UPeuz4i.ttf", + "italic": "http://fonts.gstatic.com/s/tirobangla/v6/IFSiHe1Tm95E3O8b5i2V8PG_80f8vi4imBM.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tirobangla/v6/IFSgHe1Tm95E3O8b5i2V8PG880c.ttf" + }, + { + "family": "Tiro Devanagari Hindi", + "variants": [ "regular", "italic" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v5", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9fSOkOfG0Y3A.ttf", + "italic": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55x8ezN7P8T4e0_CfIJrwdodg9HoYw0i-M9vSuMKXmgI3F_o.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9vSeMK.ttf" + }, + { + "family": "Tiro Devanagari Marathi", + "variants": [ "regular", "italic" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v5", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkotDrDJYM2lAZ.ttf", + "italic": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1zPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkouDpBpIu30AZbUY.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkouDqBpI.ttf" + }, + { + "family": "Tiro Devanagari Sanskrit", + "variants": [ "regular", "italic" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v5", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59pEoEqgtOh0w.ttf", + "italic": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoGzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59ZEIsuoNax06MM.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59ZE4su.ttf" + }, + { + "family": "Tiro Gurmukhi", + "variants": [ "regular", "italic" ], + "subsets": [ "gurmukhi", "latin", "latin-ext" ], + "version": "v6", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3dmckXSYq-Uqjc048JUF7Jvly7HAQsyA2Y.ttf", + "italic": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3d4ckXSYq-Uqjc048JUF7JvpyzNBSk3E2YljQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3dmckXSYq-Uqjc048JUF7Jvpy_NBQ.ttf" + }, + { + "family": "Tiro Kannada", + "variants": [ "regular", "italic" ], + "subsets": [ "kannada", "latin", "latin-ext" ], + "version": "v6", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/tirokannada/v6/CSR44ztKmvqaDxEDJFY7CIYKSPl6tOU9Eg.ttf", + "italic": "http://fonts.gstatic.com/s/tirokannada/v6/CSRm4ztKmvqaDxEDJFY7CIY6SvN-luAtEnKp.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tirokannada/v6/CSR44ztKmvqaDxEDJFY7CIY6SfN-.ttf" + }, + { + "family": "Tiro Tamil", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext", "tamil" ], + "version": "v6", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/tirotamil/v6/m8JXjfVIf7OT22n3M-S_ULRvamODxdI.ttf", + "italic": "http://fonts.gstatic.com/s/tirotamil/v6/m8JVjfVIf7OT22n3M-S_YLZlbkGG1dKEDw.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tirotamil/v6/m8JXjfVIf7OT22n3M-S_YLVlbg.ttf" + }, + { + "family": "Tiro Telugu", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext", "telugu" ], + "version": "v7", + "lastModified": "2023-02-02", + "files": { + "regular": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTQ7PxlZWk2EPiSymjXdKSNQqn0X0BO.ttf", + "italic": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTS7PxlZWk2EPiSymjXdJSPSK3WWlBOoas.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTQ7PxlZWk2EPiSymjXdJSMSK0.ttf" + }, + { + "family": "Titan One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/titanone/v13/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/titanone/v13/mFTzWbsGxbbS_J5cQcjCkjgj.ttf" + }, + { + "family": "Titillium Web", + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "600", + "600italic", + "700", + "700italic", + "900" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf", + "300": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf", + "600": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf", + "700": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf", + "900": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf", + "200italic": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf", + "300italic": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf", + "regular": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf", + "italic": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf", + "600italic": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf", + "700italic": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPecZTIAOhVxoMyOr9n_E7fdMXmCA.ttf" + }, + { + "family": "Tomorrow", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgR2xe2XiKMiokE4.ttf", + "200": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0dWkXIBsShiVd4.ttf", + "300": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR15WUXIBsShiVd4.ttf", + "500": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0hWEXIBsShiVd4.ttf", + "600": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0NX0XIBsShiVd4.ttf", + "700": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1pXkXIBsShiVd4.ttf", + "800": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR11XUXIBsShiVd4.ttf", + "900": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1RXEXIBsShiVd4.ttf", + "100italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLirETNbFtZCeGqgRXXQwHoLOqtgE5h0A.ttf", + "200italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ63JDMCDjEd4yVY.ttf", + "300italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8nKDMCDjEd4yVY.ttf", + "regular": "http://fonts.gstatic.com/s/tomorrow/v15/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf", + "italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgRXXe2XiKMiokE4.ttf", + "500italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ5HLDMCDjEd4yVY.ttf", + "600italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ73MDMCDjEd4yVY.ttf", + "700italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ9nNDMCDjEd4yVY.ttf", + "800italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8XODMCDjEd4yVY.ttf", + "900italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ-HPDMCDjEd4yVY.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tomorrow/v15/WBLmrETNbFtZCeGqgRXUe2U.ttf" + }, + { + "family": "Tourney", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v11", + "lastModified": "2023-03-09", + "files": { + "100": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQByZTp1I1LcGA.ttf", + "200": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQFyZTp1I1LcGA.ttf", + "300": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GZwFyZTp1I1LcGA.ttf", + "500": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GCwFyZTp1I1LcGA.ttf", + "600": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G5wZyZTp1I1LcGA.ttf", + "700": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G3gZyZTp1I1LcGA.ttf", + "800": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQZyZTp1I1LcGA.ttf", + "900": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GkAZyZTp1I1LcGA.ttf", + "regular": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFyZTp1I1LcGA.ttf", + "100italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJzBxAVfMGOPb.ttf", + "200italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaJjBxAVfMGOPb.ttf", + "300italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8ULEJjBxAVfMGOPb.ttf", + "italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJjBxAVfMGOPb.ttf", + "500italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKoJjBxAVfMGOPb.ttf", + "600italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJEITBxAVfMGOPb.ttf", + "700italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJ9ITBxAVfMGOPb.ttf", + "800italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaITBxAVfMGOPb.ttf", + "900italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIzITBxAVfMGOPb.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFCZDBx.ttf" + }, + { + "family": "Trade Winds", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/tradewinds/v17/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tradewinds/v17/AYCPpXPpYNIIT7h8-QenM0Jr5vY.ttf" + }, + { + "family": "Train One", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/trainone/v13/gyB-hwkiNtc6KnxUVjWHOqbZRY7JVQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/trainone/v13/gyB-hwkiNtc6KnxUVjW3O6zd.ttf" + }, + { + "family": "Trirong", + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], + "version": "v12", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/trirong/v12/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf", + "200": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf", + "300": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf", + "500": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf", + "600": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf", + "700": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf", + "800": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf", + "900": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf", + "100italic": "http://fonts.gstatic.com/s/trirong/v12/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf", + "200italic": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf", + "300italic": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf", + "regular": "http://fonts.gstatic.com/s/trirong/v12/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf", + "italic": "http://fonts.gstatic.com/s/trirong/v12/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf", + "500italic": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf", + "600italic": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf", + "700italic": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf", + "800italic": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf", + "900italic": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/trirong/v12/7r3GqXNgp8wxdOdOn40o3Q.ttf" + }, + { + "family": "Trispace", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v22", + "lastModified": "2023-03-21", + "files": { + "100": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9qoQl0zHugpt0.ttf", + "200": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9roQl0zHugpt0.ttf", + "300": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbCFroQl0zHugpt0.ttf", + "500": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbE1roQl0zHugpt0.ttf", + "600": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbKFsoQl0zHugpt0.ttf", + "700": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbJhsoQl0zHugpt0.ttf", + "800": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9soQl0zHugpt0.ttf", + "regular": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9roQl0zHugpt0.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9rkQh-yA.ttf" + }, + { + "family": "Trocchi", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/trocchi/v15/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/trocchi/v15/qWcqB6WkuIDxDZLcPrpeuA.ttf" + }, + { + "family": "Trochut", + "variants": [ "regular", "italic", "700" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/trochut/v20/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf", + "regular": "http://fonts.gstatic.com/s/trochut/v20/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf", + "italic": "http://fonts.gstatic.com/s/trochut/v20/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/trochut/v20/CHyjV-fDDlP9bDIw1nWCeQ.ttf" + }, + { + "family": "Truculenta", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAjswcFHnJMMhg.ttf", + "200": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAiswcFHnJMMhg.ttf", + "300": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMg4iswcFHnJMMhg.ttf", + "500": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMmIiswcFHnJMMhg.ttf", + "600": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMo4lswcFHnJMMhg.ttf", + "700": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMrclswcFHnJMMhg.ttf", + "800": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAlswcFHnJMMhg.ttf", + "900": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMvklswcFHnJMMhg.ttf", + "regular": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAiswcFHnJMMhg.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAigwYPGg.ttf" + }, + { + "family": "Trykker", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPzhNnoOd2j22U.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPztNjiPQ.ttf" + }, + { + "family": "Tulpen One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/tulpenone/v21/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/tulpenone/v21/dFa6ZfeC474skLgesc0Cajw6-A.ttf" + }, + { + "family": "Turret Road", + "variants": [ "200", "300", "regular", "500", "700", "800" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf", + "300": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf", + "500": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf", + "700": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf", + "800": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf", + "regular": "http://fonts.gstatic.com/s/turretroad/v7/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/turretroad/v7/pxiAypMgpcBFjE84Zv-fE0tEMPc.ttf" + }, + { + "family": "Twinkle Star", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/twinklestar/v3/pe0pMI6IL4dPoFl9LGEmY6WaA_Rue1UwVg.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/twinklestar/v3/pe0pMI6IL4dPoFl9LGEmY6WqAv5q.ttf" + }, + { + "family": "Ubuntu", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "700", + "700italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf", + "500": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf", + "700": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf", + "300italic": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf", + "regular": "http://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf", + "italic": "http://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf", + "500italic": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf", + "700italic": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKeQ7z.ttf" + }, + { + "family": "Ubuntu Condensed", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtT-bfrg.ttf" + }, + { + "family": "Ubuntu Mono", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext" + ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf", + "regular": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf", + "italic": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf", + "700italic": "http://fonts.gstatic.com/s/ubuntumono/v15/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbCc8CsE.ttf" + }, + { + "family": "Uchen", + "variants": [ "regular" ], + "subsets": [ "latin", "tibetan" ], + "version": "v7", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/uchen/v7/nKKZ-GokGZ1baIaSEQGodLxA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/uchen/v7/nKKZ-GokGZ1baLaTGwU.ttf" + }, + { + "family": "Ultra", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/ultra/v19/zOLy4prXmrtY-tT6yLOD6NxF.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ultra/v19/zOLy4prXmrtY-uT7wrc.ttf" + }, + { + "family": "Unbounded", + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v6", + "lastModified": "2023-04-27", + "files": { + "200": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65jx043HgP6LR0Y.ttf", + "300": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG60bx043HgP6LR0Y.ttf", + "500": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx043HgP6LR0Y.ttf", + "600": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG68b2043HgP6LR0Y.ttf", + "700": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6__2043HgP6LR0Y.ttf", + "800": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65j2043HgP6LR0Y.ttf", + "900": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG67H2043HgP6LR0Y.ttf", + "regular": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx043HgP6LR0Y.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx44zNhA.ttf" + }, + { + "family": "Uncial Antiqua", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/uncialantiqua/v20/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/uncialantiqua/v20/N0bM2S5WOex4OUbESzoESK-i-MfQQZE.ttf" + }, + { + "family": "Underdog", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "latin", "latin-ext" ], + "version": "v23", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/underdog/v23/CHygV-jCElj7diMroVSiU14GN2Il.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/underdog/v23/CHygV-jCElj7diMroWSjWVo.ttf" + }, + { + "family": "Unica One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/unicaone/v15/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/unicaone/v15/DPEuYwWHyAYGVTSmalsRd93b.ttf" + }, + { + "family": "UnifrakturCook", + "variants": [ "700" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/unifrakturcook/v19/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/unifrakturcook/v19/IurA6Yli8YOdcoky-0PTTdkm56n05Xw01oY.ttf" + }, + { + "family": "UnifrakturMaguntia", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/unifrakturmaguntia/v16/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/unifrakturmaguntia/v16/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVenmZJ.ttf" + }, + { + "family": "Unkempt", + "variants": [ "regular", "700" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/unkempt/v19/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf", + "regular": "http://fonts.gstatic.com/s/unkempt/v19/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/unkempt/v19/2EbnL-Z2DFZue0DSeYcV9w.ttf" + }, + { + "family": "Unlock", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v24", + "lastModified": "2023-03-21", + "files": { + "regular": "http://fonts.gstatic.com/s/unlock/v24/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/unlock/v24/7Au-p_8ykD-cDl72KQLW.ttf" + }, + { + "family": "Unna", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v21", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/unna/v21/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf", + "regular": "http://fonts.gstatic.com/s/unna/v21/AYCEpXzofN0NCpgBlGHCWFM.ttf", + "italic": "http://fonts.gstatic.com/s/unna/v21/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf", + "700italic": "http://fonts.gstatic.com/s/unna/v21/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/unna/v21/AYCEpXzofN0NOpkLkA.ttf" + }, + { + "family": "Updock", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/updock/v2/nuF4D_3dVZ70UI9SjLK3602XBw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/updock/v2/nuF4D_3dVZ70UI9ijbiz.ttf" + }, + { + "family": "Urbanist", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v10", + "lastModified": "2023-01-06", + "files": { + "100": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx8fFpOrS8SlKw.ttf", + "200": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSx4fFpOrS8SlKw.ttf", + "300": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDlR4fFpOrS8SlKw.ttf", + "500": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fFpOrS8SlKw.ttf", + "600": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFpOrS8SlKw.ttf", + "700": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfFpOrS8SlKw.ttf", + "800": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSxkfFpOrS8SlKw.ttf", + "900": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfFpOrS8SlKw.ttf", + "regular": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fFpOrS8SlKw.ttf", + "100italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VJmvacG1K4S1.ttf", + "200italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113VZmvacG1K4S1.ttf", + "300italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA12pVZmvacG1K4S1.ttf", + "italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VZmvacG1K4S1.ttf", + "500italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA13FVZmvacG1K4S1.ttf", + "600italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10pUpmvacG1K4S1.ttf", + "700italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmvacG1K4S1.ttf", + "800italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113UpmvacG1K4S1.ttf", + "900italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmvacG1K4S1.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4vF5mv.ttf" + }, + { + "family": "VT323", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2hsYHpT2dkNE.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2isZFJA.ttf" + }, + { + "family": "Vampiro One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v18", + "lastModified": "2022-04-27", + "files": { + "regular": "http://fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLnqmuPw.ttf" + }, + { + "family": "Varela", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHX5BR4B.ttf" + }, + { + "family": "Varela Round", + "variants": [ "regular" ], + "subsets": [ "hebrew", "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2023-02-16", + "files": { + "regular": "http://fonts.gstatic.com/s/varelaround/v20/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/varelaround/v20/w8gdH283Tvk__Lua32TysjIfocuK.ttf" + }, + { + "family": "Varta", + "variants": [ "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v21", + "lastModified": "2023-03-21", + "files": { + "300": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x96j4EirE-9PGLfQ.ttf", + "500": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9hj4EirE-9PGLfQ.ttf", + "600": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9ajkEirE-9PGLfQ.ttf", + "700": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9UzkEirE-9PGLfQ.ttf", + "regular": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD4EirE-9PGLfQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD40i7s6.ttf" + }, + { + "family": "Vast Shadow", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/vastshadow/v15/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/vastshadow/v15/pe0qMImKOZ1V62ZwbVY9dce7I94.ttf" + }, + { + "family": "Vazirmatn", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "subsets": [ "arabic", "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2023-05-02", + "files": { + "100": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgyOReZ72DF_QY.ttf", + "200": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklegzOReZ72DF_QY.ttf", + "300": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklTYzOReZ72DF_QY.ttf", + "500": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklVozOReZ72DF_QY.ttf", + "600": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklbY0OReZ72DF_QY.ttf", + "700": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklY80OReZ72DF_QY.ttf", + "800": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRkleg0OReZ72DF_QY.ttf", + "900": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklcE0OReZ72DF_QY.ttf", + "regular": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgzOReZ72DF_QY.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgzCRaT6w.ttf" + }, + { + "family": "Vesper Libre", + "variants": [ "regular", "500", "700", "900" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "500": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf", + "700": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf", + "900": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf", + "regular": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6CNxyWnf-uxPdXDHUD_RdIDkWJ.ttf" + }, + { + "family": "Viaoda Libre", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/viaodalibre/v15/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/viaodalibre/v15/vEFW2_lWCgoR6OKuRz9kcRV5bmgc.ttf" + }, + { + "family": "Vibes", + "variants": [ "regular" ], + "subsets": [ "arabic", "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/vibes/v14/QdVYSTsmIB6tmbd3HpbsuBlh.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/vibes/v14/QdVYSTsmIB6tmYd2FJI.ttf" + }, + { + "family": "Vibur", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v23", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRgToJD4.ttf" + }, + { + "family": "Vidaloka", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEass8yn4hnCci.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEavs9wHo.ttf" + }, + { + "family": "Viga", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiX_QIjD4e2OX8.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiXzQMpCw.ttf" + }, + { + "family": "Vina Sans", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2023-04-20", + "files": { + "regular": "http://fonts.gstatic.com/s/vinasans/v2/m8JQjfZKf6-d2273MP7zcJ5BZmqa3A.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/vinasans/v2/m8JQjfZKf6-d2273MP7DcZRF.ttf" + }, + { + "family": "Voces", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/voces/v20/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/voces/v20/-F6_fjJyLyU8d7PADmo.ttf" + }, + { + "family": "Volkhov", + "variants": [ "regular", "italic", "700", "700italic" ], + "subsets": [ "latin" ], + "version": "v17", + "lastModified": "2022-04-27", + "files": { + "700": "http://fonts.gstatic.com/s/volkhov/v17/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf", + "regular": "http://fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf", + "italic": "http://fonts.gstatic.com/s/volkhov/v17/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf", + "700italic": "http://fonts.gstatic.com/s/volkhov/v17/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNecTMEgA.ttf" + }, + { + "family": "Vollkorn", + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v22", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuGWOdEbD63w.ttf", + "600": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauGWOdEbD63w.ttf", + "700": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auGWOdEbD63w.ttf", + "800": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauGWOdEbD63w.ttf", + "900": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauGWOdEbD63w.ttf", + "regular": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuGWOdEbD63w.ttf", + "italic": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmZM7Xq34g9.ttf", + "500italic": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmZM7Xq34g9.ttf", + "600italic": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmZM7Xq34g9.ttf", + "700italic": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmZM7Xq34g9.ttf", + "800italic": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmZM7Xq34g9.ttf", + "900italic": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmZM7Xq34g9.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGeGGmZ.ttf" + }, + { + "family": "Vollkorn SC", + "variants": [ "regular", "600", "700", "900" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "600": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf", + "700": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf", + "900": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf", + "regular": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_v6-zQ3rXpceZj9cqnViF4Pns.ttf" + }, + { + "family": "Voltaire", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v18", + "lastModified": "2023-03-21", + "files": { + "regular": "http://fonts.gstatic.com/s/voltaire/v18/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/voltaire/v18/1Pttg8PcRfSblAvGvTopaqE.ttf" + }, + { + "family": "Vujahday Script", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v4", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/vujahdayscript/v4/RWmQoKGA8fEkrIPtSZ3_J7er2dUiDEtvAlaMKw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/vujahdayscript/v4/RWmQoKGA8fEkrIPtSZ3_J7er2dUSDUFr.ttf" + }, + { + "family": "Waiting for the Sunrise", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/waitingforthesunrise/v16/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/waitingforthesunrise/v16/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsbZR_Bs.ttf" + }, + { + "family": "Wallpoet", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v16", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/wallpoet/v16/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/wallpoet/v16/f0X10em2_8RnXVVdUObv58E.ttf" + }, + { + "family": "Walter Turncoat", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v19", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/walterturncoat/v19/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/walterturncoat/v19/snfys0Gs98ln43n0d-14ULoToe6LYReZ.ttf" + }, + { + "family": "Warnes", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v25", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/warnes/v25/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/warnes/v25/pONn1hc0GsW6sW5-pyqy.ttf" + }, + { + "family": "Water Brush", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/waterbrush/v2/AYCPpXPqc8cJWLhp4hywKHJq7PKP5Z_G.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/waterbrush/v2/AYCPpXPqc8cJWLhp4hywKEJr5vY.ttf" + }, + { + "family": "Waterfall", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v3", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/waterfall/v3/MCoRzAfo293fACdFKcwY2rH8D_EZwA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/waterfall/v3/MCoRzAfo293fACdFKcwo27v4.ttf" + }, + { + "family": "Wellfleet", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/wellfleet/v20/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/wellfleet/v20/nuF7D_LfQJb3VYgX6eyj4myP.ttf" + }, + { + "family": "Wendy One", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v15", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/wendyone/v15/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/wendyone/v15/2sDcZGJOipXfgfXV5wgzbmW8.ttf" + }, + { + "family": "Whisper", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v2", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/whisper/v2/q5uHsoqtKftx74K9milCBxxdmYU.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/whisper/v2/q5uHsoqtKftx74K9qihIAw.ttf" + }, + { + "family": "WindSong", + "variants": [ "regular", "500" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v8", + "lastModified": "2023-05-02", + "files": { + "500": "http://fonts.gstatic.com/s/windsong/v8/KR1RBsyu-P-GFEW57oeNNPWylS3-jVXm.ttf", + "regular": "http://fonts.gstatic.com/s/windsong/v8/KR1WBsyu-P-GFEW57r95HdG6vjH3.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/windsong/v8/KR1WBsyu-P-GFEW57o94F9U.ttf" + }, + { + "family": "Wire One", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/wireone/v24/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/wireone/v24/qFdH35Wah5htUhV75VGjU94.ttf" + }, + { + "family": "Work Sans", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNigDp6_cOyA.ttf", + "200": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNigDp6_cOyA.ttf", + "300": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNigDp6_cOyA.ttf", + "500": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNigDp6_cOyA.ttf", + "600": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf", + "700": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNigDp6_cOyA.ttf", + "800": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNigDp6_cOyA.ttf", + "900": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf", + "regular": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf", + "100italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJo43ZKyDSQQ.ttf", + "200italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJo43ZKyDSQQ.ttf", + "300italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJo43ZKyDSQQ.ttf", + "italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJo43ZKyDSQQ.ttf", + "500italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJo43ZKyDSQQ.ttf", + "600italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJo43ZKyDSQQ.ttf", + "700italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJo43ZKyDSQQ.ttf", + "800italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJo43ZKyDSQQ.ttf", + "900italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJo43ZKyDSQQ.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXBikJow.ttf" + }, + { + "family": "Xanh Mono", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/xanhmono/v17/R70YjykVmvKCep-vWhSYmACQXzLhTg.ttf", + "italic": "http://fonts.gstatic.com/s/xanhmono/v17/R70ejykVmvKCep-vWhSomgqUfTfxTo24.ttf" + }, + "category": "monospace", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/xanhmono/v17/R70YjykVmvKCep-vWhSomQqU.ttf" + }, + { + "family": "Yaldevi", + "variants": [ "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "latin", "latin-ext", "sinhala" ], + "version": "v12", + "lastModified": "2023-03-21", + "files": { + "200": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpfxJzvobxLCBJkS.ttf", + "300": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpcvJzvobxLCBJkS.ttf", + "500": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdDJzvobxLCBJkS.ttf", + "600": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpevIDvobxLCBJkS.ttf", + "700": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpeWIDvobxLCBJkS.ttf", + "regular": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJzvobxLCBJkS.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJwvpZRY.ttf" + }, + { + "family": "Yanone Kaffeesatz", + "variants": [ "200", "300", "regular", "500", "600", "700" ], + "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], + "version": "v24", + "lastModified": "2022-09-22", + "files": { + "200": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpcGuLCnXkVA.ttf", + "300": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpcGuLCnXkVA.ttf", + "500": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpcGuLCnXkVA.ttf", + "600": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpcGuLCnXkVA.ttf", + "700": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpcGuLCnXkVA.ttf", + "regular": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpcGuLCnXkVA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWZcWGP.ttf" + }, + { + "family": "Yantramanav", + "variants": [ "100", "300", "regular", "500", "700", "900" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "100": "http://fonts.gstatic.com/s/yantramanav/v11/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf", + "300": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf", + "500": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf", + "700": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf", + "900": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf", + "regular": "http://fonts.gstatic.com/s/yantramanav/v11/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/yantramanav/v11/flU8Rqu5zY00QEpyWJYWN5f1XeM.ttf" + }, + { + "family": "Yatra One", + "variants": [ "regular" ], + "subsets": [ "devanagari", "latin", "latin-ext" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/yatraone/v14/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/yatraone/v14/C8ch4copsHzj8p7NaF0BwlmF.ttf" + }, + { + "family": "Yellowtail", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v18", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/yellowtail/v18/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/yellowtail/v18/OZpGg_pnoDtINPfRIlLohl3HxA.ttf" + }, + { + "family": "Yeon Sung", + "variants": [ "regular" ], + "subsets": [ "korean", "latin" ], + "version": "v20", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/yeonsung/v20/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/yeonsung/v20/QldMNTpbohAGtsJvUn6BSFle.ttf" + }, + { + "family": "Yeseva One", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v20", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/yesevaone/v20/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/yesevaone/v20/OpNJno4ck8vc-xYpwWWxlitVXg.ttf" + }, + { + "family": "Yesteryear", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v14", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/yesteryear/v14/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/yesteryear/v14/dg4g_p78rroaKl8kRKo1n70NSw.ttf" + }, + { + "family": "Yomogi", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "japanese", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v8", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/yomogi/v8/VuJwdNrS2ZL7rpoPWIz5NIh-YA.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/yomogi/v8/VuJwdNrS2ZL7rpo_WYb9.ttf" + }, + { + "family": "Yrsa", + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "subsets": [ "latin", "latin-ext", "vietnamese" ], + "version": "v20", + "lastModified": "2023-05-02", + "files": { + "300": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCjASNNV9rRPfrKu.ttf", + "500": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCisSNNV9rRPfrKu.ttf", + "600": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaChAT9NV9rRPfrKu.ttf", + "700": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCh5T9NV9rRPfrKu.ttf", + "regular": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCieSNNV9rRPfrKu.ttf", + "300italic": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", + "italic": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCzsW_LBte6KuGEo.ttf", + "500italic": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", + "600italic": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", + "700italic": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC9wR_LBte6KuGEo.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCieSONU_LA.ttf" + }, + { + "family": "Ysabeau", + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ], + "version": "v1", + "lastModified": "2023-04-20", + "files": { + "100": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCTYwI8Gcw6Oi.ttf", + "200": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWCDYwI8Gcw6Oi.ttf", + "300": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7PICDYwI8Gcw6Oi.ttf", + "500": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OkCDYwI8Gcw6Oi.ttf", + "600": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NIDzYwI8Gcw6Oi.ttf", + "700": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NxDzYwI8Gcw6Oi.ttf", + "800": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWDzYwI8Gcw6Oi.ttf", + "900": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7M_DzYwI8Gcw6Oi.ttf", + "regular": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCDYwI8Gcw6Oi.ttf", + "100italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95yKcW-xrOiIUw.ttf", + "200italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS15zKcW-xrOiIUw.ttf", + "300italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS4BzKcW-xrOiIUw.ttf", + "italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95zKcW-xrOiIUw.ttf", + "500italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS-xzKcW-xrOiIUw.ttf", + "600italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSwB0KcW-xrOiIUw.ttf", + "700italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSzl0KcW-xrOiIUw.ttf", + "800italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS150KcW-xrOiIUw.ttf", + "900italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS3d0KcW-xrOiIUw.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCAYxKcU.ttf" + }, + { + "family": "Yuji Boku", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v5", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/yujiboku/v5/P5sAzZybeNzXsA9xj1Fkjb2r2dgvJA.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/yujiboku/v5/P5sAzZybeNzXsA9xj1FUjLev.ttf" + }, + { + "family": "Yuji Mai", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v5", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/yujimai/v5/ZgNQjPxdJ7DEHrS0gC38hmHmNpCO.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/yujimai/v5/ZgNQjPxdJ7DEHrS0gB39jGU.ttf" + }, + { + "family": "Yuji Syuku", + "variants": [ "regular" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v5", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/yujisyuku/v5/BngNUXdTV3vO6Lw5ApOPqPfgwqiA-Rk.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/yujisyuku/v5/BngNUXdTV3vO6Lw5ApOPmPbqxg.ttf" + }, + { + "family": "Yusei Magic", + "variants": [ "regular" ], + "subsets": [ "japanese", "latin", "latin-ext" ], + "version": "v12", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/yuseimagic/v12/yYLt0hbAyuCmoo5wlhPkpjHR-tdfcIT_.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/yuseimagic/v12/yYLt0hbAyuCmoo5wlhPkpgHQ8NM.ttf" + }, + { + "family": "ZCOOL KuaiLe", + "variants": [ "regular" ], + "subsets": [ "chinese-simplified", "latin" ], + "version": "v19", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/zcoolkuaile/v19/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zcoolkuaile/v19/tssqApdaRQokwFjFJjvM6h2mp4b3.ttf" + }, + { + "family": "ZCOOL QingKe HuangYou", + "variants": [ "regular" ], + "subsets": [ "chinese-simplified", "latin" ], + "version": "v15", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/zcoolqingkehuangyou/v15/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zcoolqingkehuangyou/v15/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mR4ive4.ttf" + }, + { + "family": "ZCOOL XiaoWei", + "variants": [ "regular" ], + "subsets": [ "chinese-simplified", "latin" ], + "version": "v14", + "lastModified": "2022-11-09", + "files": { + "regular": "http://fonts.gstatic.com/s/zcoolxiaowei/v14/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zcoolxiaowei/v14/i7dMIFFrTRywPpUVX9_RJyM1UFOaGw.ttf" + }, + { + "family": "Zen Antique", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "greek", + "japanese", + "latin", + "latin-ext" + ], + "version": "v12", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/zenantique/v12/AYCPpXPnd91Ma_Zf-Ri2JXJq7PKP5Z_G.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zenantique/v12/AYCPpXPnd91Ma_Zf-Ri2JUJr5vY.ttf" + }, + { + "family": "Zen Antique Soft", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "greek", + "japanese", + "latin", + "latin-ext" + ], + "version": "v12", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/zenantiquesoft/v12/DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwBmkui5HNg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zenantiquesoft/v12/DtV4JwqzSL1q_KwnEWMc_3xfgW6itwFslg.ttf" + }, + { + "family": "Zen Dots", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v10", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/zendots/v10/XRXX3ICfm00IGoesQeaETM_FcCIG.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zendots/v10/XRXX3ICfm00IGoesQdaFRss.ttf" + }, + { + "family": "Zen Kaku Gothic Antique", + "variants": [ "300", "regular", "500", "700", "900" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2023-01-06", + "files": { + "300": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cM9TarWJtyZyGU.ttf", + "500": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22dU9DarWJtyZyGU.ttf", + "700": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cc8jarWJtyZyGU.ttf", + "900": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22ck8DarWJtyZyGU.ttf", + "regular": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-g3RKjc4d7.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22-h1xY.ttf" + }, + { + "family": "Zen Kaku Gothic New", + "variants": [ "300", "regular", "500", "700", "900" ], + "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], + "version": "v13", + "lastModified": "2023-01-06", + "files": { + "300": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqpdKaWTSTGlMyd8.ttf", + "500": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqs9LaWTSTGlMyd8.ttf", + "700": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqodNaWTSTGlMyd8.ttf", + "900": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqr9PaWTSTGlMyd8.ttf", + "regular": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMYW2drQpDw0GjzrVNFf_valaDBcznOkjtiTWz5UGA.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMYW2drQpDw0GjzrVNFf_valaDBcznOojpoSQ.ttf" + }, + { + "family": "Zen Kurenaido", + "variants": [ "regular" ], + "subsets": [ + "cyrillic", + "greek", + "japanese", + "latin", + "latin-ext" + ], + "version": "v13", + "lastModified": "2023-05-02", + "files": { + "regular": "http://fonts.gstatic.com/s/zenkurenaido/v13/3XFsEr0515BK2u6UUptu_gWJZfz22PRLd0U.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zenkurenaido/v13/3XFsEr0515BK2u6UUptu_gWJVf383A.ttf" + }, + { + "family": "Zen Loop", + "variants": [ "regular", "italic" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v7", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/zenloop/v7/h0GrssK16UsnJwHsEK9zqwzX5vOG.ttf", + "italic": "http://fonts.gstatic.com/s/zenloop/v7/h0GtssK16UsnJwHsEJ9xoQj14-OGJ0w.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zenloop/v7/h0GrssK16UsnJwHsEJ9yoQg.ttf" + }, + { + "family": "Zen Maru Gothic", + "variants": [ "300", "regular", "500", "700", "900" ], + "subsets": [ + "cyrillic", + "greek", + "japanese", + "latin", + "latin-ext" + ], + "version": "v13", + "lastModified": "2023-03-21", + "files": { + "300": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cQWpCPJqa_ajlvw.ttf", + "500": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cGWtCPJqa_ajlvw.ttf", + "700": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cUW1CPJqa_ajlvw.ttf", + "900": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-caW9CPJqa_ajlvw.ttf", + "regular": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0SIpIxzW5b-RxT-6A8jWAtCp-k7UJmNLGG9A.ttf" + }, + "category": "sans-serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0SIpIxzW5b-RxT-6A8jWAtCp-U7Ehi.ttf" + }, + { + "family": "Zen Old Mincho", + "variants": [ "regular", "500", "600", "700", "900" ], + "subsets": [ + "cyrillic", + "greek", + "japanese", + "latin", + "latin-ext" + ], + "version": "v11", + "lastModified": "2023-01-06", + "files": { + "500": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4Dqlla8dMgPgBu.ttf", + "600": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4vrVla8dMgPgBu.ttf", + "700": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5LrFla8dMgPgBu.ttf", + "900": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5zrlla8dMgPgBu.ttf", + "regular": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss0ApVaYytLwxTqcxfMyBveyYb3g31S2s8p.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss0ApVaYytLwxTqcxfMyBveybb2iXk.ttf" + }, + { + "family": "Zen Tokyo Zoo", + "variants": [ "regular" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v7", + "lastModified": "2023-01-06", + "files": { + "regular": "http://fonts.gstatic.com/s/zentokyozoo/v7/NGSyv5ffC0J_BK6aFNtr6sRv8a1uRWe9amg.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zentokyozoo/v7/NGSyv5ffC0J_BK6aFNtr6sRvwaxkQQ.ttf" + }, + { + "family": "Zeyada", + "variants": [ "regular" ], + "subsets": [ "latin" ], + "version": "v15", + "lastModified": "2022-09-22", + "files": { + "regular": "http://fonts.gstatic.com/s/zeyada/v15/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zeyada/v15/11hAGpPTxVPUbgZzNWyp.ttf" + }, + { + "family": "Zhi Mang Xing", + "variants": [ "regular" ], + "subsets": [ "chinese-simplified", "latin" ], + "version": "v17", + "lastModified": "2022-09-27", + "files": { + "regular": "http://fonts.gstatic.com/s/zhimangxing/v17/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf" + }, + "category": "handwriting", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zhimangxing/v17/f0Xw0ey79sErYFtWQ9a2rq-g4aYneQ.ttf" + }, + { + "family": "Zilla Slab", + "variants": [ + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "subsets": [ "latin", "latin-ext" ], + "version": "v11", + "lastModified": "2022-09-22", + "files": { + "300": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf", + "500": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf", + "600": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf", + "700": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf", + "300italic": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf", + "regular": "http://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf", + "italic": "http://fonts.gstatic.com/s/zillaslab/v11/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf", + "500italic": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf", + "600italic": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf", + "700italic": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf" + }, + "category": "serif", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFajw6-A.ttf" + }, + { + "family": "Zilla Slab Highlight", + "variants": [ "regular", "700" ], + "subsets": [ "latin", "latin-ext" ], + "version": "v17", + "lastModified": "2022-09-22", + "files": { + "700": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf", + "regular": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf" + }, + "category": "display", + "kind": "webfonts#webfont", + "menu": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxitJaWQ.ttf" + } + ] +} From 54cb297a4710dae6a3fa179a18ffc73298429754 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 10 May 2023 17:18:49 -0300 Subject: [PATCH 003/116] more UI work for fonts library --- .../components/global-styles/font-families.js | 95 +++++++++++++++ .../font-library-modal/active-fonts.js | 41 +++++++ .../font-library-modal/constants.js | 30 +++++ .../font-library-modal/font-card.js | 39 ++++++ .../font-library-modal/fonts-grid.js | 19 +++ .../font-library-modal/google-fonts.js | 90 ++++++++++++++ .../global-styles/font-library-modal/index.js | 89 ++++++++++++++ .../font-library-modal/installed-fonts.js | 19 +++ .../font-library-modal/local-fonts.js | 18 +++ .../font-library-modal/tab-layout.js | 47 ++++++++ .../global-styles/font-library-modal/utils.js | 49 ++++++++ .../global-styles/screen-typography.js | 98 +--------------- .../global-styles/typogrphy-elements.js | 111 ++++++++++++++++++ 13 files changed, 653 insertions(+), 92 deletions(-) create mode 100644 packages/edit-site/src/components/global-styles/font-families.js create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/active-fonts.js create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/constants.js create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/font-card.js create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/fonts-grid.js create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/index.js create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/tab-layout.js create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/utils.js create mode 100644 packages/edit-site/src/components/global-styles/typogrphy-elements.js diff --git a/packages/edit-site/src/components/global-styles/font-families.js b/packages/edit-site/src/components/global-styles/font-families.js new file mode 100644 index 0000000000000..234cf86b9cc3c --- /dev/null +++ b/packages/edit-site/src/components/global-styles/font-families.js @@ -0,0 +1,95 @@ +/** + * WordPress dependencies + */ +import { __ } from '@wordpress/i18n'; +import { + __experimentalItemGroup as ItemGroup, + __experimentalVStack as VStack, + __experimentalHStack as HStack, + __experimentalItem as Item, + __experimentalText as Text, + FlexItem, + Button, + MenuGroup, + MenuItem, + Dropdown, +} from '@wordpress/components'; +import { moreVertical } from '@wordpress/icons'; +import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor'; +import { useState } from '@wordpress/element'; + +/** + * Internal dependencies + */ +import FontLibraryModal from './font-library-modal'; +import Subtitle from './subtitle'; +import { unlock } from '../../private-apis'; +const { useGlobalSetting } = unlock( blockEditorPrivateApis ); + +function FontFamiliesMenu ({ onToggle, toggleFontLibrary }) { + + const displayFontLibrary = () => { + onToggle(); // Close the dropdown + toggleFontLibrary(); // Open the modal + }; + + return ( + + { __( 'Manage Font Library' ) } + { __( 'Install Google Fonts' ) } + { __( 'Install Local Fonts' ) } + + ) +} + +function FontFamilies() { + const [ fontFamilies ] = useGlobalSetting( 'typography.fontFamilies' ); + const themeFontFamilies = fontFamilies?.theme || []; + const [ isFontLibraryModalOpen, setIsFontLibraryModalOpen ] = useState( false ); + + const toggleFontLibrary = () => { + setIsFontLibraryModalOpen( !isFontLibraryModalOpen ); + }; + + return ( + <> + { isFontLibraryModalOpen && ( + + )} + + + + + { __( 'Fonts Available' ) } + ( + + )} + renderToggle={ ( { isOpen, onToggle } ) => ( + + ) ) } + - { fonts.length > 0 && ( - <> - {!fontSelected && ( - - { fonts.map( ( font ) => ( - handleSelectFont( font.name ) } - /> - ))} - - )} + + + + { fonts.map( ( font ) => ( + + handleSelectFont( font.name ) + } + actionHandler={ + !installedFontNames.has(font.name) && !installedFontNames.has(font.fontFamily) + ? ( + + + + ); +} + + export default InstalledFonts; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js b/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js new file mode 100644 index 0000000000000..3e5abfe5e40ca --- /dev/null +++ b/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js @@ -0,0 +1,35 @@ +/** + * WordPress dependencies + * + */ +import apiFetch from '@wordpress/api-fetch'; + + +export async function getFontLibrary() { + const config = { + path: '/wp/v2/fonts_library', + }; + const data = await apiFetch( config ); + return data; +} + +export async function getGoogleFonts() { + const config = { + path: '/wp/v2/fonts_library/google_fonts', + }; + const { items, categories } = await apiFetch( config ); + return { + items, + categories, + }; +} + +export async function updateFontsLibrary( data ) { + const config = { + path: '/wp/v2/fonts_library', + method: 'POST', + data: data, + }; + const response = await apiFetch( config ); + return response; +} \ No newline at end of file diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/styles.css b/packages/edit-site/src/components/global-styles/font-library-modal/styles.css new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/tab-layout.js b/packages/edit-site/src/components/global-styles/font-library-modal/tab-layout.js index 1c305c46775f4..6cba1c5f98093 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/tab-layout.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/tab-layout.js @@ -12,11 +12,11 @@ import { import { chevronLeft } from "@wordpress/icons"; -function TabLayout ({ title, description, handleBack, children }) { +function TabLayout ({ title, description, handleBack, children, footer }) { return (
- +
@@ -37,7 +37,7 @@ function TabLayout ({ title, description, handleBack, children }) { { children }
- + { footer }
diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/utils.js b/packages/edit-site/src/components/global-styles/font-library-modal/utils.js index f18b367f58a16..bbb41bbd9a328 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/utils.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/utils.js @@ -1,15 +1,22 @@ +/** + * Internal dependencies + */ +import { GOOGLE_FONT_FALLBACKS } from './constants'; + + /** * Receives a theme.json like FontFamily object and outputs a font object for a FontCard component. * * @param {object} fontFamily a theme.json like FontFamily object * @return {object} font objected used by FontCard component. */ -export function fontFamilyToCardFont ( fontFamily ) { +export function fontFamilyToCardFont ( fontFamily, isActive = false ) { return { - name: fontFamily.name, + name: fontFamily.name || fontFamily.fontFamily, family: fontFamily.fontFamily, variantsCount: fontFamily.fontFace?.length || 1, asset: fontFamily.fontFace?.[ 0 ]?.src, + isActive, }; } @@ -35,15 +42,49 @@ export function googleFontToCardFont ( googleFont ) { * @return {string} a full variant name with the font weight and style. * * @example - * googleVariantToFullVariant( "regular" ) // "Regular 400" - * googleVariantToFullVariant( "italic" ) // "Italic 400" - * googleVariantToFullVariant( "500" ) // "Regular 500" * googleVariantToFullVariant( "500italic" ) // "Italic 500" */ -export function googleVariantToFullVariant ( variantName ) { - const weight = ( variantName === "italic" || variantName === "regular") - ? "400" - : variantName.replace( "italic", "" ); - const style = variantName.includes( "italic" ) ? "Italic" : "Normal"; +export function googleVariantToFullVariant ( variant ) { + const weight = getWeightFromGoogleVariant( variant ); + const style = variant.includes( "italic" ) ? "Italic" : "Normal"; return `${ style } ${ weight }`; -} \ No newline at end of file +} + +function getStyleFromGoogleVariant( variant ) { + return variant.includes( 'italic' ) ? 'italic' : 'normal'; +} + +function getWeightFromGoogleVariant( variant ) { + return variant === 'regular' || variant === 'italic' + ? '400' + : variant.replace( 'italic', '' ); +} + +function getFallbackForGoogleFont ( googleFontCategory ) { + return GOOGLE_FONT_FALLBACKS[ googleFontCategory ] || "system-ui"; +} + +/** +* Get the font definitions for a Google font family +* @param {Object} googleFont font family object as defined by Google Fonts API +* @param {string[]} variantsSelected array of variant names selected +* @return {Object[]} array of font definitions +*/ +export function getGoogleFontDefinitions ( googleFont, variantsSelected=[] ) { + const fontFamilies = [{ + name: googleFont.family, + fontFamily: `${googleFont.family}, ${ getFallbackForGoogleFont( googleFont.category ) }`, + fontFace: googleFont.variants + .filter(variant => ( + !variantsSelected.length ? true : variantsSelected.includes( variant ) + )) + .map( variant => ( + { + src: googleFont.files?.[ variant ], + fontWeight: getWeightFromGoogleVariant( variant ), + fontStyle: getStyleFromGoogleVariant( variant ), + } + ) ), + }]; + return fontFamilies; +} From 6389e605a4ffe0a1bf1112bdd70c6d576023c727 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 12 May 2023 15:50:04 -0300 Subject: [PATCH 006/116] installing complete families of google fonts --- .../fonts-api/class-wp-fonts-library.php | 6 +- .../components/global-styles/font-families.js | 5 +- .../font-library-modal/context.js | 45 ++++++++----- .../font-library-modal/google-font-card.js | 67 +++++++++++++++++++ .../font-library-modal/google-font-details.js | 32 +++++++++ .../font-library-modal/google-font-variant.js | 56 ++++++++++++++++ .../font-library-modal/google-fonts.js | 65 ++---------------- .../font-library-modal/installed-fonts.js | 17 ++--- .../font-library-modal/resolvers.js | 10 +-- .../global-styles/font-library-modal/utils.js | 12 ++-- 10 files changed, 211 insertions(+), 104 deletions(-) create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/google-font-details.js create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/google-font-variant.js diff --git a/lib/experimental/fonts-api/class-wp-fonts-library.php b/lib/experimental/fonts-api/class-wp-fonts-library.php index dec71e12dde4a..736223bfbb63e 100644 --- a/lib/experimental/fonts-api/class-wp-fonts-library.php +++ b/lib/experimental/fonts-api/class-wp-fonts-library.php @@ -71,7 +71,8 @@ function update_fonts_library_permissions_check () { function get_fonts_library () { $post = $this->get_fonts_library_post(); - return new WP_REST_Response( $post ); + $post_content = json_decode( $post->post_content ); + return new WP_REST_Response( $post_content ); } private function get_fonts_library_post () { @@ -102,7 +103,8 @@ function update_fonts_library ( $request ) { ); $updated_post = wp_update_post( $updated_post_data ); $new_post = $this->get_fonts_library_post(); - return new WP_REST_Response( $new_post ); + $post_content = json_decode( $new_post->post_content ); + return new WP_REST_Response( $post_content ); } function get_google_fonts () { diff --git a/packages/edit-site/src/components/global-styles/font-families.js b/packages/edit-site/src/components/global-styles/font-families.js index 234cf86b9cc3c..bd452194ef1e6 100644 --- a/packages/edit-site/src/components/global-styles/font-families.js +++ b/packages/edit-site/src/components/global-styles/font-families.js @@ -79,10 +79,7 @@ function FontFamilies() { {themeFontFamilies.map( family => ( - - { __( 'Aa' ) } - - { family.name } + { family.name } ))} diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index ed5502f1a22e8..33f9319bddb3f 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -16,16 +16,20 @@ const { useGlobalSetting } = unlock( blockEditorPrivateApis ); export const FontLibraryContext = createContext( {} ); function FontLibraryProvider( { children } ) { - const [ customFonts ] = useGlobalSetting( 'typography.fontFamilies' ); - const customFontFamilies = customFonts?.theme || []; - const [ fontLibrary, setFontLibrary ] = useState( {} ); - const libraryFontFamilies = fontLibrary.fontFamilies || []; + // Global Styles Fonts + const [ customFontFamilies ] = useGlobalSetting( 'typography.fontFamilies' ); + const customFonts = customFontFamilies?.theme || []; + + // Library Fonts + const [ libraryFonts, setLibraryFonts ] = useState( [] ); + + // Google Fonts const [ googleFonts, setGoogleFonts ] = useState( [] ); const [ googleFontsCategories, setGoogleFontsCategories ] = useState( [] ); useEffect( () => { getFontLibrary().then( ( response ) => { - setFontLibrary( response ); + setLibraryFonts( response ); } ); getGoogleFonts().then( ( { items, categories } ) => { setGoogleFonts( items ); @@ -33,33 +37,40 @@ function FontLibraryProvider( { children } ) { } ); }, [] ); + // Set used to check if a font is already installed on the Google Fonts Tab of the modal const installedFontNames = useMemo( () => { const names = new Set(); - customFontFamilies.forEach( ( font ) => { - if (font.name || font.fontFamily) names.add( font.name || font.fontFamily ); + customFonts.forEach( ( font ) => { + if ( font.name || font.fontFamily ) names.add( font.name || font.fontFamily ); } ); - libraryFontFamilies.forEach( ( font ) => { - if (font.name || font.fontFamily) names.add( font.name || font.fontFamily ); + libraryFonts.forEach( ( font ) => { + if ( font.name || font.fontFamily ) names.add( font.name || font.fontFamily ); } ); return names; - }, [ customFontFamilies, fontLibrary ] ); + }, [ customFonts, libraryFonts ] ); + + + const addToLibrary = ( newFontFamily ) => { + return [ ...libraryFonts, newFontFamily ]; + } - console.log(installedFontNames); - async function installGoogleFonts ( fonts ) { - const response = await updateFontsLibrary( fonts ); - return response; + async function updateLibrary ( newLibrary ) { + const newFontFamilies = await updateFontsLibrary( newLibrary ); + console.log( 'newFontFamilies', newFontFamilies ); + setLibraryFonts( newFontFamilies ); } return ( { children } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js new file mode 100644 index 0000000000000..bc75c14efeac8 --- /dev/null +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js @@ -0,0 +1,67 @@ +/** + * WordPress dependencies + */ +import { __ } from '@wordpress/i18n'; +import { + Button, +} from '@wordpress/components'; +import { download, check } from '@wordpress/icons'; +import { useContext } from '@wordpress/element'; + +/** + * Internal dependencies + */ +import { FontLibraryContext } from './context'; +import FontCard from './font-card'; +import { fontFamilyFromGoogleFont } from './utils'; + +function GoogleFontCard ( { font, handleSelectFont } ) { + + const { + googleFonts, + addToLibrary, + updateLibrary, + installedFontNames, + } = useContext( FontLibraryContext ); + + const handleDonwloadFont = async ( event, name ) => { + event.stopPropagation(); + const googleFont = googleFonts.find( ( font ) => font.family === name ); + const fontFamily = fontFamilyFromGoogleFont( googleFont ); + const newLibrary = addToLibrary( fontFamily ); + updateLibrary(newLibrary); + }; + + const isInstalled = installedFontNames.has(font.name) || installedFontNames.has(font.fontFamily); + + return ( + + handleSelectFont( font.name ) + } + actionHandler={ + !isInstalled + ? ( + - + ); } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss new file mode 100644 index 0000000000000..6892f7874abae --- /dev/null +++ b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss @@ -0,0 +1,9 @@ +.font-library-modal__tab-layout footer{ + border-top: 1px solid #e5e5e5; + margin: 0 -32px -32px; + padding: 16px 32px; + position: absolute; + bottom: 32px; + width: 100%; + background-color: #fff; +} diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/tab-layout.js b/packages/edit-site/src/components/global-styles/font-library-modal/tab-layout.js index 6cba1c5f98093..424122aa234cf 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/tab-layout.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/tab-layout.js @@ -14,7 +14,7 @@ import { chevronLeft } from "@wordpress/icons"; function TabLayout ({ title, description, handleBack, children, footer }) { return ( -
+
diff --git a/packages/edit-site/src/style.scss b/packages/edit-site/src/style.scss index f271d36ef3c02..8817e5befcfb9 100644 --- a/packages/edit-site/src/style.scss +++ b/packages/edit-site/src/style.scss @@ -34,6 +34,7 @@ @import "./components/style-book/style.scss"; @import "./components/editor-canvas-container/style.scss"; @import "./hooks/push-changes-to-global-styles/style.scss"; +@import "./components/global-styles/font-library-modal/style.scss"; html #wpadminbar { display: none; From d0187b119bc64b032342d839b837fb9a66fdc159 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 16 May 2023 13:34:17 -0300 Subject: [PATCH 009/116] transforming google fonts api response in to themejson fontFamilies format --- lib/experimental/fonts-api/google-fonts.json | 74120 ++++++++++------- 1 file changed, 45969 insertions(+), 28151 deletions(-) diff --git a/lib/experimental/fonts-api/google-fonts.json b/lib/experimental/fonts-api/google-fonts.json index 6238e3b744b87..20c01993a36ed 100644 --- a/lib/experimental/fonts-api/google-fonts.json +++ b/lib/experimental/fonts-api/google-fonts.json @@ -1,28417 +1,46235 @@ { - "kind": "webfonts#webfontList", - "categories": [ - "serif", - "sans-serif", - "display", - "handwriting", - "monospace" - ], - "items": [ - { - "family": "ABeeZee", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN6tKukbcHCpE.ttf", - "italic": "http://fonts.gstatic.com/s/abeezee/v22/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN2tOklQ.ttf" - }, - { - "family": "Abel", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6VhLPJp6qGI.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE2VlBOA.ttf" - }, - { - "family": "Abhaya Libre", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "latin", "latin-ext", "sinhala" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf", - "600": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf", - "700": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf", - "800": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf", - "regular": "http://fonts.gstatic.com/s/abhayalibre/v14/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/abhayalibre/v14/e3tmeuGtX-Co5MNzeAOqinEQeknS.ttf" - }, - { - "family": "Aboreto", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8blKTeA2yuxSY.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8bpKXUBw.ttf" - }, - { - "family": "Abril Fatface", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/abrilfatface/v19/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/abrilfatface/v19/zOL64pLDlL1D99S8g8PtiKchq-FmiA.ttf" - }, - { - "family": "Abyssinica SIL", - "variants": [ "regular" ], - "subsets": [ "ethiopic", "latin", "latin-ext" ], - "version": "v5", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/abyssinicasil/v5/oY1H8ezOqK7iI3rK_45WKoc8J6UZBFOVAXuI.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/abyssinicasil/v5/oY1H8ezOqK7iI3rK_45WKoc8J5UYDlc.ttf" - }, - { - "family": "Aclonica", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/aclonica/v18/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/aclonica/v18/K2FyfZJVlfNNSEBXGY7SAoo.ttf" - }, - { - "family": "Acme", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/acme/v21/RrQfboBx-C5_bx3Lb23lzLk.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/acme/v21/RrQfboBx-C5_XxzBaw.ttf" - }, - { - "family": "Actor", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO3ekXygtUMIO.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO0elVSw.ttf" - }, - { - "family": "Adamina", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-04-20", - "files": { - "regular": "http://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwi-vUFQ.ttf" - }, - { - "family": "Advent Pro", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext" - ], - "version": "v20", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyJPTJoonw1aBA.ttf", - "200": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyNPTJoonw1aBA.ttf", - "300": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLHSNPTJoonw1aBA.ttf", - "500": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLcSNPTJoonw1aBA.ttf", - "600": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLnSRPTJoonw1aBA.ttf", - "700": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLpCRPTJoonw1aBA.ttf", - "800": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyRPTJoonw1aBA.ttf", - "900": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpL6iRPTJoonw1aBA.ttf", - "regular": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyNPTJoonw1aBA.ttf", - "100italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnDpAsvQhKBH4C.ttf", - "200italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnD5AsvQhKBH4C.ttf", - "300italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2D5D5AsvQhKBH4C.ttf", - "italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnD5AsvQhKBH4C.ttf", - "500italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CVD5AsvQhKBH4C.ttf", - "600italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2B5CJAsvQhKBH4C.ttf", - "700italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2BACJAsvQhKBH4C.ttf", - "800italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnCJAsvQhKBH4C.ttf", - "900italic": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AOCJAsvQhKBH4C.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyN_TZAs.ttf" - }, - { - "family": "Aguafina Script", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/aguafinascript/v17/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf" - }, + "fontFamilies": [ + { + "name": "ABeeZee", + "fontFamily": "ABeeZee, sans-serif", + "slug": "abeezee", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN6tKukbcHCpE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "ABeeZee" + }, + { + "src": "http://fonts.gstatic.com/s/abeezee/v22/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "ABeeZee" + } + ] + }, + { + "name": "Abel", + "fontFamily": "Abel, sans-serif", + "slug": "abel", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6VhLPJp6qGI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Abel" + } + ] + }, + { + "name": "Abhaya Libre", + "fontFamily": "Abhaya Libre, serif", + "slug": "abhaya-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + }, + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + }, + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + }, + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + }, + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + } + ] + }, + { + "name": "Aboreto", + "fontFamily": "Aboreto, system-ui", + "slug": "aboreto", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8blKTeA2yuxSY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aboreto" + } + ] + }, + { + "name": "Abril Fatface", + "fontFamily": "Abril Fatface, system-ui", + "slug": "abril-fatface", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abrilfatface/v19/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Abril Fatface" + } + ] + }, + { + "name": "Abyssinica SIL", + "fontFamily": "Abyssinica SIL, serif", + "slug": "abyssinica-sil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abyssinicasil/v5/oY1H8ezOqK7iI3rK_45WKoc8J6UZBFOVAXuI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Abyssinica SIL" + } + ] + }, + { + "name": "Aclonica", + "fontFamily": "Aclonica, sans-serif", + "slug": "aclonica", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aclonica/v18/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aclonica" + } + ] + }, + { + "name": "Acme", + "fontFamily": "Acme, sans-serif", + "slug": "acme", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/acme/v21/RrQfboBx-C5_bx3Lb23lzLk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Acme" + } + ] + }, + { + "name": "Actor", + "fontFamily": "Actor, sans-serif", + "slug": "actor", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO3ekXygtUMIO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Actor" + } + ] + }, + { + "name": "Adamina", + "fontFamily": "Adamina, serif", + "slug": "adamina", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Adamina" + } + ] + }, + { + "name": "Advent Pro", + "fontFamily": "Advent Pro, sans-serif", + "slug": "advent-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyJPTJoonw1aBA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyNPTJoonw1aBA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLHSNPTJoonw1aBA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyNPTJoonw1aBA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLcSNPTJoonw1aBA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLnSRPTJoonw1aBA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLpCRPTJoonw1aBA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyRPTJoonw1aBA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpL6iRPTJoonw1aBA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnDpAsvQhKBH4C.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnD5AsvQhKBH4C.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2D5D5AsvQhKBH4C.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnD5AsvQhKBH4C.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CVD5AsvQhKBH4C.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2B5CJAsvQhKBH4C.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2BACJAsvQhKBH4C.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnCJAsvQhKBH4C.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AOCJAsvQhKBH4C.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + } + ] + }, + { + "name": "Aguafina Script", + "fontFamily": "Aguafina Script, cursive", + "slug": "aguafina-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/aguafinascript/v17/If2QXTv_ZzSxGIO30LemWEOmt1b3q8Qt.ttf" - }, - { - "family": "Akaya Kanadaka", - "variants": [ "regular" ], - "subsets": [ "kannada", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/akayakanadaka/v16/N0bM2S5CPO5oOQqvazoRRb-8-PfRS5VBBSSF.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/akayakanadaka/v16/N0bM2S5CPO5oOQqvazoRRb-8-MfQQZE.ttf" - }, - { - "family": "Akaya Telivigala", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "telugu" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/akayatelivigala/v22/lJwc-oo_iG9wXqU3rCTD395tp0uifdLdsIH0YH8.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/akayatelivigala/v22/lJwc-oo_iG9wXqU3rCTD395tp0uiTdPXtA.ttf" - }, - { - "family": "Akronim", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRpygF7lA.ttf" - }, - { - "family": "Akshar", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v9", - "lastModified": "2023-03-21", - "files": { - "300": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSSgFy9CY94XsnPc.ttf", - "500": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSUQFy9CY94XsnPc.ttf", - "600": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSagCy9CY94XsnPc.ttf", - "700": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSZECy9CY94XsnPc.ttf", - "regular": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSXYFy9CY94XsnPc.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSXYF-9GS8w.ttf" - }, - { - "family": "Aladin", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/aladin/v19/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aguafinascript/v17/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aguafina Script" + } + ] + }, + { + "name": "Akaya Kanadaka", + "fontFamily": "Akaya Kanadaka, system-ui", + "slug": "akaya-kanadaka", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/akayakanadaka/v16/N0bM2S5CPO5oOQqvazoRRb-8-PfRS5VBBSSF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Akaya Kanadaka" + } + ] + }, + { + "name": "Akaya Telivigala", + "fontFamily": "Akaya Telivigala, system-ui", + "slug": "akaya-telivigala", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/akayatelivigala/v22/lJwc-oo_iG9wXqU3rCTD395tp0uifdLdsIH0YH8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Akaya Telivigala" + } + ] + }, + { + "name": "Akronim", + "fontFamily": "Akronim, system-ui", + "slug": "akronim", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Akronim" + } + ] + }, + { + "name": "Akshar", + "fontFamily": "Akshar, sans-serif", + "slug": "akshar", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSSgFy9CY94XsnPc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Akshar" + }, + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSXYFy9CY94XsnPc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Akshar" + }, + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSUQFy9CY94XsnPc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Akshar" + }, + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSagCy9CY94XsnPc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Akshar" + }, + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSZECy9CY94XsnPc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Akshar" + } + ] + }, + { + "name": "Aladin", + "fontFamily": "Aladin, cursive", + "slug": "aladin", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/aladin/v19/ZgNSjPJFPrvJV5fF6C38.ttf" - }, - { - "family": "Alata", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v9", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/alata/v9/PbytFmztEwbIofe6xKcRQEOX.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alata/v9/PbytFmztEwbIoce7zqM.ttf" - }, - { - "family": "Alatsi", - "variants": [ "regular" ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], - "version": "v11", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/alatsi/v11/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alatsi/v11/TK3iWkUJAxQ2nLN2Hz8D.ttf" - }, - { - "family": "Albert Sans", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v1", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5L_rI32TxAj1g.ttf", - "200": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5P_rI32TxAj1g.ttf", - "300": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSH9ZP_rI32TxAj1g.ttf", - "500": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHmZP_rI32TxAj1g.ttf", - "600": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_rI32TxAj1g.ttf", - "700": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_rI32TxAj1g.ttf", - "800": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5T_rI32TxAj1g.ttf", - "900": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHApT_rI32TxAj1g.ttf", - "regular": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_rI32TxAj1g.ttf", - "100italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX7ofybRUz1r5t.ttf", - "200italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX74fybRUz1r5t.ttf", - "300italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9BJ74fybRUz1r5t.ttf", - "italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX74fybRUz1r5t.ttf", - "500italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", - "600italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", - "700italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", - "800italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", - "900italic": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9C-6IfybRUz1r5t.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5PPrYfy.ttf" - }, - { - "family": "Aldrich", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/aldrich/v17/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/aldrich/v17/MCoTzAn-1s3IGyJMVaEY2g.ttf" - }, - { - "family": "Alef", - "variants": [ "regular", "700" ], - "subsets": [ "hebrew", "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/alef/v21/FeVQS0NQpLYglo50L5la2bxii28.ttf", - "regular": "http://fonts.gstatic.com/s/alef/v21/FeVfS0NQpLYgrjJbC5FxxbU.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alef/v21/FeVfS0NQpLYgnjNRDw.ttf" - }, - { - "family": "Alegreya", - "variants": [ - "regular", - "500", - "600", - "700", - "800", - "900", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v35", - "lastModified": "2023-03-21", - "files": { - "500": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBUI_KCisSGVrw.ttf", - "600": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGKBII_KCisSGVrw.ttf", - "700": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERII_KCisSGVrw.ttf", - "800": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhII_KCisSGVrw.ttf", - "900": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxII_KCisSGVrw.ttf", - "regular": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI_KCisSGVrw.ttf", - "italic": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbgv6qmkySFr9V9.ttf", - "500italic": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbSv6qmkySFr9V9.ttf", - "600italic": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlY-uKqmkySFr9V9.ttf", - "700italic": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlYHuKqmkySFr9V9.ttf", - "800italic": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZguKqmkySFr9V9.ttf", - "900italic": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZJuKqmkySFr9V9.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hU4_aqm.ttf" - }, - { - "family": "Alegreya SC", - "variants": [ - "regular", - "italic", - "500", - "500italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v25", - "lastModified": "2022-12-08", - "files": { - "500": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf", - "700": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf", - "800": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf", - "900": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf", - "regular": "http://fonts.gstatic.com/s/alegreyasc/v25/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf", - "italic": "http://fonts.gstatic.com/s/alegreyasc/v25/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf", - "500italic": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf", - "700italic": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf", - "800italic": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf", - "900italic": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alegreyasc/v25/taiOGmRtCJ62-O0HhNEa-Z6p2ZU.ttf" - }, - { - "family": "Alegreya Sans", - "variants": [ - "100", - "100italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v24", - "lastModified": "2022-12-08", - "files": { - "100": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf", - "300": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf", - "500": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf", - "700": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf", - "800": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf", - "900": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf", - "100italic": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf", - "300italic": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf", - "regular": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf", - "italic": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf", - "500italic": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf", - "700italic": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf", - "800italic": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf", - "900italic": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUz9_-1phKLFgshYDvh6Vwt7VxtuA.ttf" - }, - { - "family": "Alegreya Sans SC", - "variants": [ - "100", - "100italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v23", - "lastModified": "2022-12-08", - "files": { - "100": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf", - "300": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf", - "500": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf", - "700": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf", - "800": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf", - "900": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf", - "100italic": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf", - "300italic": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf", - "regular": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf", - "italic": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf", - "500italic": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf", - "700italic": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf", - "800italic": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf", - "900italic": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Bk9l8g.ttf" - }, - { - "family": "Aleo", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syKbr9DVDno985KM.ttf", - "700": "http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syLbs9DVDno985KM.ttf", - "300italic": "http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf", - "regular": "http://fonts.gstatic.com/s/aleo/v11/c4mv1nF8G8_s8ArD0D1ogoY.ttf", - "italic": "http://fonts.gstatic.com/s/aleo/v11/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf", - "700italic": "http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/aleo/v11/c4mv1nF8G8_swAvJ1A.ttf" - }, - { - "family": "Alex Brush", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aladin/v19/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aladin" + } + ] + }, + { + "name": "Alata", + "fontFamily": "Alata, sans-serif", + "slug": "alata", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alata/v9/PbytFmztEwbIofe6xKcRQEOX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alata" + } + ] + }, + { + "name": "Alatsi", + "fontFamily": "Alatsi, sans-serif", + "slug": "alatsi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alatsi/v11/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alatsi" + } + ] + }, + { + "name": "Albert Sans", + "fontFamily": "Albert Sans, sans-serif", + "slug": "albert-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5L_rI32TxAj1g.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5P_rI32TxAj1g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSH9ZP_rI32TxAj1g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_rI32TxAj1g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHmZP_rI32TxAj1g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_rI32TxAj1g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_rI32TxAj1g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5T_rI32TxAj1g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHApT_rI32TxAj1g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX7ofybRUz1r5t.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX74fybRUz1r5t.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9BJ74fybRUz1r5t.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX74fybRUz1r5t.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9C-6IfybRUz1r5t.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + } + ] + }, + { + "name": "Aldrich", + "fontFamily": "Aldrich, sans-serif", + "slug": "aldrich", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aldrich/v17/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aldrich" + } + ] + }, + { + "name": "Alef", + "fontFamily": "Alef, sans-serif", + "slug": "alef", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alef/v21/FeVfS0NQpLYgrjJbC5FxxbU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alef" + }, + { + "src": "http://fonts.gstatic.com/s/alef/v21/FeVQS0NQpLYglo50L5la2bxii28.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alef" + } + ] + }, + { + "name": "Alegreya", + "fontFamily": "Alegreya, serif", + "slug": "alegreya", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI_KCisSGVrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBUI_KCisSGVrw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGKBII_KCisSGVrw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERII_KCisSGVrw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhII_KCisSGVrw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxII_KCisSGVrw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbgv6qmkySFr9V9.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbSv6qmkySFr9V9.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlY-uKqmkySFr9V9.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlYHuKqmkySFr9V9.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZguKqmkySFr9V9.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZJuKqmkySFr9V9.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alegreya" + } + ] + }, + { + "name": "Alegreya SC", + "fontFamily": "Alegreya SC, serif", + "slug": "alegreya-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + } + ] + }, + { + "name": "Alegreya Sans", + "fontFamily": "Alegreya Sans, sans-serif", + "slug": "alegreya-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + } + ] + }, + { + "name": "Alegreya Sans SC", + "fontFamily": "Alegreya Sans SC, sans-serif", + "slug": "alegreya-sans-sc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + } + ] + }, + { + "name": "Aleo", + "fontFamily": "Aleo, serif", + "slug": "aleo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syKbr9DVDno985KM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mv1nF8G8_s8ArD0D1ogoY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syLbs9DVDno985KM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Aleo" + } + ] + }, + { + "name": "Alex Brush", + "fontFamily": "Alex Brush, cursive", + "slug": "alex-brush", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EhUPz6A.ttf" - }, - { - "family": "Alexandria", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", - "200": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", - "300": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", - "500": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", - "600": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", - "700": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", - "800": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", - "900": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", - "regular": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7TpbGFps.ttf" - }, - { - "family": "Alfa Slab One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/alfaslabone/v17/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alfaslabone/v17/6NUQ8FmMKwSEKjnm5-4v-4Jh2dRhfg.ttf" - }, - { - "family": "Alice", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6FcJpA_chzJ0.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6GcIrgs.ttf" - }, - { - "family": "Alike", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-04-20", - "files": { - "regular": "http://fonts.gstatic.com/s/alike/v20/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alike/v20/HI_EiYEYI6BIoHjAQ5E.ttf" - }, - { - "family": "Alike Angular", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-04-20", - "files": { - "regular": "http://fonts.gstatic.com/s/alikeangular/v20/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alikeangular/v20/3qTrojWunjGQtEBlIcwMbSoI7kIwaA.ttf" - }, - { - "family": "Alkalami", - "variants": [ "regular" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v7", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/alkalami/v7/zOL_4pfDmqRL95WXi5eLw8BMuvhH.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alkalami/v7/zOL_4pfDmqRL95WXi6eKycQ.ttf" - }, - { - "family": "Alkatra", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ - "bengali", - "devanagari", - "latin", - "latin-ext", - "oriya" - ], - "version": "v3", - "lastModified": "2023-03-21", - "files": { - "500": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedzngUu7cPrNDVemxE.ttf", - "600": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medznj4vLcPrNDVemxE.ttf", - "700": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedznjBvLcPrNDVemxE.ttf", - "regular": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medzngmu7cPrNDVemxE.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medzngmu4cOptQ.ttf" - }, - { - "family": "Allan", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/allan/v21/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf", - "regular": "http://fonts.gstatic.com/s/allan/v21/ea8XadU7WuTxEtb2P9SF8nZE.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/allan/v21/ea8XadU7WuTxEub3NdA.ttf" - }, - { - "family": "Allerta", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940YnAXTQ.ttf" - }, - { - "family": "Allerta Stencil", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/allertastencil/v18/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/allertastencil/v18/HTx0L209KT-LmIE9N7OR6eiycOe1-jbz.ttf" - }, - { - "family": "Allison", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v9", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/allison/v9/X7nl4b88AP2nkbvZOCaQ4MTgAgk.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alex Brush" + } + ] + }, + { + "name": "Alexandria", + "fontFamily": "Alexandria, sans-serif", + "slug": "alexandria", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alexandria" + } + ] + }, + { + "name": "Alfa Slab One", + "fontFamily": "Alfa Slab One, system-ui", + "slug": "alfa-slab-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alfaslabone/v17/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alfa Slab One" + } + ] + }, + { + "name": "Alice", + "fontFamily": "Alice, serif", + "slug": "alice", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6FcJpA_chzJ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alice" + } + ] + }, + { + "name": "Alike", + "fontFamily": "Alike, serif", + "slug": "alike", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alike/v20/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alike" + } + ] + }, + { + "name": "Alike Angular", + "fontFamily": "Alike Angular, serif", + "slug": "alike-angular", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alikeangular/v20/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alike Angular" + } + ] + }, + { + "name": "Alkalami", + "fontFamily": "Alkalami, serif", + "slug": "alkalami", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alkalami/v7/zOL_4pfDmqRL95WXi5eLw8BMuvhH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alkalami" + } + ] + }, + { + "name": "Alkatra", + "fontFamily": "Alkatra, system-ui", + "slug": "alkatra", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medzngmu7cPrNDVemxE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alkatra" + }, + { + "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedzngUu7cPrNDVemxE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alkatra" + }, + { + "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medznj4vLcPrNDVemxE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Alkatra" + }, + { + "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedznjBvLcPrNDVemxE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alkatra" + } + ] + }, + { + "name": "Allan", + "fontFamily": "Allan, system-ui", + "slug": "allan", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allan/v21/ea8XadU7WuTxEtb2P9SF8nZE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allan" + }, + { + "src": "http://fonts.gstatic.com/s/allan/v21/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Allan" + } + ] + }, + { + "name": "Allerta", + "fontFamily": "Allerta, sans-serif", + "slug": "allerta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allerta" + } + ] + }, + { + "name": "Allerta Stencil", + "fontFamily": "Allerta Stencil, sans-serif", + "slug": "allerta-stencil", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allertastencil/v18/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allerta Stencil" + } + ] + }, + { + "name": "Allison", + "fontFamily": "Allison, cursive", + "slug": "allison", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/allison/v9/X7nl4b88AP2nkbvZCCea5A.ttf" - }, - { - "family": "Allura", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v19", - "lastModified": "2023-01-18", - "files": { - "regular": "http://fonts.gstatic.com/s/allura/v19/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allison/v9/X7nl4b88AP2nkbvZOCaQ4MTgAgk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allison" + } + ] + }, + { + "name": "Allura", + "fontFamily": "Allura, cursive", + "slug": "allura", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/allura/v19/9oRPNYsQpS4zjuA_jQgT.ttf" - }, - { - "family": "Almarai", - "variants": [ "300", "regular", "700", "800" ], - "subsets": [ "arabic" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf", - "700": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf", - "800": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf", - "regular": "http://fonts.gstatic.com/s/almarai/v12/tsstApxBaigK_hnnc1qPonC3vqc.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/almarai/v12/tsstApxBaigK_hnnQ1uFpg.ttf" - }, - { - "family": "Almendra", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/almendra/v23/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf", - "regular": "http://fonts.gstatic.com/s/almendra/v23/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf", - "italic": "http://fonts.gstatic.com/s/almendra/v23/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf", - "700italic": "http://fonts.gstatic.com/s/almendra/v23/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/almendra/v23/H4ckBXKAlMnTn0CskxY7yLs.ttf" - }, - { - "family": "Almendra Display", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v26", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/almendradisplay/v26/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/almendradisplay/v26/0FlPVOGWl1Sb4O3tETtADHRRlZhzbS7USw.ttf" - }, - { - "family": "Almendra SC", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v25", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/almendrasc/v25/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/almendrasc/v25/Iure6Yx284eebowr7hbyTaZIrLE.ttf" - }, - { - "family": "Alumni Sans", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v16", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO5QqFsJ3C8qng.ttf", - "200": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uO9QqFsJ3C8qng.ttf", - "300": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Zu9QqFsJ3C8qng.ttf", - "500": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Cu9QqFsJ3C8qng.ttf", - "600": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd95uhQqFsJ3C8qng.ttf", - "700": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd93-hQqFsJ3C8qng.ttf", - "800": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uOhQqFsJ3C8qng.ttf", - "900": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9kehQqFsJ3C8qng.ttf", - "regular": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9QqFsJ3C8qng.ttf", - "100italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky46lEN_io6npfB.ttf", - "200italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", - "300italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", - "italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", - "500italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", - "600italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", - "700italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", - "800italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", - "900italic": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9gqVEN.ttf" - }, - { - "family": "Alumni Sans Collegiate One", - "variants": [ "regular", "italic" ], - "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhjdayDiPw2ta.ttf", - "italic": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpD-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhgdYwjytxntaDFU.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhgdbwjw.ttf" - }, - { - "family": "Alumni Sans Inline One", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpD3AZcr7xbYw.ttf", - "italic": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQDbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpP3ITdpz0fYxcrQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpP3ETdg.ttf" - }, - { - "family": "Alumni Sans Pinstripe", - "variants": [ "regular", "italic" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v2", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObhezYrVIpcDA5w.ttf", - "italic": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNDjOFFPq_AUJD1umyS30W-Xub8zD1ObheDYL9Mh8XQ5_cY.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObheDY79M.ttf" - }, - { - "family": "Amarante", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/amarante/v23/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/amarante/v23/xMQXuF1KTa6EvGx9bp-2AX4.ttf" - }, - { - "family": "Amaranth", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/amaranth/v18/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf", - "regular": "http://fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zPnCF9GqwnzW.ttf", - "italic": "http://fonts.gstatic.com/s/amaranth/v18/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf", - "700italic": "http://fonts.gstatic.com/s/amaranth/v18/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zMnDHdU.ttf" - }, - { - "family": "Amatic SC", - "variants": [ "regular", "700" ], - "subsets": [ - "cyrillic", - "hebrew", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/amaticsc/v24/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf", - "regular": "http://fonts.gstatic.com/s/amaticsc/v24/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allura/v19/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allura" + } + ] + }, + { + "name": "Almarai", + "fontFamily": "Almarai, sans-serif", + "slug": "almarai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Almarai" + }, + { + "src": "http://fonts.gstatic.com/s/almarai/v12/tsstApxBaigK_hnnc1qPonC3vqc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Almarai" + }, + { + "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Almarai" + }, + { + "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Almarai" + } + ] + }, + { + "name": "Almendra", + "fontFamily": "Almendra, serif", + "slug": "almendra", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/almendra/v23/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Almendra" + }, + { + "src": "http://fonts.gstatic.com/s/almendra/v23/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Almendra" + }, + { + "src": "http://fonts.gstatic.com/s/almendra/v23/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Almendra" + }, + { + "src": "http://fonts.gstatic.com/s/almendra/v23/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Almendra" + } + ] + }, + { + "name": "Almendra Display", + "fontFamily": "Almendra Display, system-ui", + "slug": "almendra-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/almendradisplay/v26/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Almendra Display" + } + ] + }, + { + "name": "Almendra SC", + "fontFamily": "Almendra SC, serif", + "slug": "almendra-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/almendrasc/v25/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Almendra SC" + } + ] + }, + { + "name": "Alumni Sans", + "fontFamily": "Alumni Sans, sans-serif", + "slug": "alumni-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO5QqFsJ3C8qng.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uO9QqFsJ3C8qng.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Zu9QqFsJ3C8qng.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9QqFsJ3C8qng.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Cu9QqFsJ3C8qng.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd95uhQqFsJ3C8qng.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd93-hQqFsJ3C8qng.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uOhQqFsJ3C8qng.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9kehQqFsJ3C8qng.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky46lEN_io6npfB.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + } + ] + }, + { + "name": "Alumni Sans Collegiate One", + "fontFamily": "Alumni Sans Collegiate One, sans-serif", + "slug": "alumni-sans-collegiate-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhjdayDiPw2ta.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alumni Sans Collegiate One" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpD-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhgdYwjytxntaDFU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alumni Sans Collegiate One" + } + ] + }, + { + "name": "Alumni Sans Inline One", + "fontFamily": "Alumni Sans Inline One, system-ui", + "slug": "alumni-sans-inline-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpD3AZcr7xbYw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alumni Sans Inline One" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQDbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpP3ITdpz0fYxcrQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alumni Sans Inline One" + } + ] + }, + { + "name": "Alumni Sans Pinstripe", + "fontFamily": "Alumni Sans Pinstripe, sans-serif", + "slug": "alumni-sans-pinstripe", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObhezYrVIpcDA5w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alumni Sans Pinstripe" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNDjOFFPq_AUJD1umyS30W-Xub8zD1ObheDYL9Mh8XQ5_cY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alumni Sans Pinstripe" + } + ] + }, + { + "name": "Amarante", + "fontFamily": "Amarante, system-ui", + "slug": "amarante", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amarante/v23/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amarante" + } + ] + }, + { + "name": "Amaranth", + "fontFamily": "Amaranth, sans-serif", + "slug": "amaranth", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zPnCF9GqwnzW.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amaranth" + }, + { + "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Amaranth" + }, + { + "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amaranth" + }, + { + "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Amaranth" + } + ] + }, + { + "name": "Amatic SC", + "fontFamily": "Amatic SC, cursive", + "slug": "amatic-sc", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/amaticsc/v24/TUZyzwprpvBS1izr_vOEDOSa.ttf" - }, - { - "family": "Amethysta", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-04-20", - "files": { - "regular": "http://fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfW4GT-G.ttf" - }, - { - "family": "Amiko", - "variants": [ "regular", "600", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "600": "http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf", - "700": "http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf", - "regular": "http://fonts.gstatic.com/s/amiko/v12/WwkQxPq1DFK04tqlc17MMZgJ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/amiko/v12/WwkQxPq1DFK04uqkeVo.ttf" - }, - { - "family": "Amiri", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v27", - "lastModified": "2023-01-10", - "files": { - "700": "http://fonts.gstatic.com/s/amiri/v27/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf", - "regular": "http://fonts.gstatic.com/s/amiri/v27/J7aRnpd8CGxBHqUpvrIw74NL.ttf", - "italic": "http://fonts.gstatic.com/s/amiri/v27/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf", - "700italic": "http://fonts.gstatic.com/s/amiri/v27/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/amiri/v27/J7aRnpd8CGxBHpUotLY.ttf" - }, - { - "family": "Amiri Quran", - "variants": [ "regular" ], - "subsets": [ "arabic", "latin" ], - "version": "v7", - "lastModified": "2022-09-14", - "files": { - "regular": "http://fonts.gstatic.com/s/amiriquran/v7/_Xmo-Hk0rD6DbUL4_vH8Zq5t7Cycsu-2.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/amiriquran/v7/_Xmo-Hk0rD6DbUL4_vH8Zp5s5ig.ttf" - }, - { - "family": "Amita", - "variants": [ "regular", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/amita/v16/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf", - "regular": "http://fonts.gstatic.com/s/amita/v16/HhyaU5si9Om7PQlvAfSKEZZL.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amaticsc/v24/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amatic SC" + }, + { + "src": "http://fonts.gstatic.com/s/amaticsc/v24/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amatic SC" + } + ] + }, + { + "name": "Amethysta", + "fontFamily": "Amethysta, serif", + "slug": "amethysta", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amethysta" + } + ] + }, + { + "name": "Amiko", + "fontFamily": "Amiko, sans-serif", + "slug": "amiko", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amiko/v12/WwkQxPq1DFK04tqlc17MMZgJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amiko" + }, + { + "src": "http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Amiko" + }, + { + "src": "http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amiko" + } + ] + }, + { + "name": "Amiri", + "fontFamily": "Amiri, serif", + "slug": "amiri", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amiri/v27/J7aRnpd8CGxBHqUpvrIw74NL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amiri" + }, + { + "src": "http://fonts.gstatic.com/s/amiri/v27/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Amiri" + }, + { + "src": "http://fonts.gstatic.com/s/amiri/v27/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amiri" + }, + { + "src": "http://fonts.gstatic.com/s/amiri/v27/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Amiri" + } + ] + }, + { + "name": "Amiri Quran", + "fontFamily": "Amiri Quran, serif", + "slug": "amiri-quran", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amiriquran/v7/_Xmo-Hk0rD6DbUL4_vH8Zq5t7Cycsu-2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amiri Quran" + } + ] + }, + { + "name": "Amita", + "fontFamily": "Amita, cursive", + "slug": "amita", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/amita/v16/HhyaU5si9Om7PTluC_A.ttf" - }, - { - "family": "Anaheim", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/anaheim/v14/8vII7w042Wp87g4G0UTUEE5eK_w.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anaheim/v14/8vII7w042Wp87g4G4UXeFA.ttf" - }, - { - "family": "Andada Pro", - "variants": [ - "regular", - "500", - "600", - "700", - "800", - "italic", - "500italic", - "600italic", - "700italic", - "800italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2023-03-21", - "files": { - "500": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DP7BY8cFLzvIt2S.ttf", - "600": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8cFLzvIt2S.ttf", - "700": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8cFLzvIt2S.ttf", - "800": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DNJAo8cFLzvIt2S.ttf", - "regular": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBY8cFLzvIt2S.ttf", - "italic": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRmdfHrjNJ82Stjw.ttf", - "500italic": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRlVfHrjNJ82Stjw.ttf", - "600italic": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHrjNJ82Stjw.ttf", - "700italic": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHrjNJ82Stjw.ttf", - "800italic": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRudYHrjNJ82Stjw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBb8dHrg.ttf" - }, - { - "family": "Andika", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v24", - "lastModified": "2023-04-27", - "files": { - "700": "http://fonts.gstatic.com/s/andika/v24/mem8Ya6iyW-Lwqg40ZM1UpcaXcl0Aw.ttf", - "regular": "http://fonts.gstatic.com/s/andika/v24/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf", - "italic": "http://fonts.gstatic.com/s/andika/v24/mem9Ya6iyW-Lwqgwb7YVeLkWVNBt.ttf", - "700italic": "http://fonts.gstatic.com/s/andika/v24/mem6Ya6iyW-Lwqgwb46pV50ef8xkA76a.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/andika/v24/mem_Ya6iyW-LwqgwbLYV.ttf" - }, - { - "family": "Anek Bangla", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800" - ], - "subsets": [ "bengali", "latin", "latin-ext" ], - "version": "v4", - "lastModified": "2023-01-06", - "files": { - "100": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9YIocg56yyvt0.ttf", - "200": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9ZIocg56yyvt0.ttf", - "300": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfjFZIocg56yyvt0.ttf", - "500": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofl1ZIocg56yyvt0.ttf", - "600": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfrFeIocg56yyvt0.ttf", - "700": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfoheIocg56yyvt0.ttf", - "800": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9eIocg56yyvt0.ttf", - "regular": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9ZIocg56yyvt0.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9ZEoYq4w.ttf" - }, - { - "family": "Anek Devanagari", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800" - ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v8", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtk-9nFk0LjZ7E.ttf", - "200": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtku9nFk0LjZ7E.ttf", - "300": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLCzku9nFk0LjZ7E.ttf", - "500": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDfku9nFk0LjZ7E.ttf", - "600": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAzle9nFk0LjZ7E.ttf", - "700": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAKle9nFk0LjZ7E.ttf", - "800": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtle9nFk0LjZ7E.ttf", - "regular": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtku9nFk0LjZ7E.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtkt9mHEk.ttf" - }, - { - "family": "Anek Gujarati", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800" - ], - "subsets": [ "gujarati", "latin", "latin-ext" ], - "version": "v9", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5G7w0KgB7Lm7g.ttf", - "200": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5C7w0KgB7Lm7g.ttf", - "300": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0SZC7w0KgB7Lm7g.ttf", - "500": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0JZC7w0KgB7Lm7g.ttf", - "600": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0yZe7w0KgB7Lm7g.ttf", - "700": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-08Je7w0KgB7Lm7g.ttf", - "800": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5e7w0KgB7Lm7g.ttf", - "regular": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5C7w0KgB7Lm7g.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5CLwkik.ttf" - }, - { - "family": "Anek Gurmukhi", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800" - ], - "subsets": [ "gurmukhi", "latin", "latin-ext" ], - "version": "v8", - "lastModified": "2023-03-09", - "files": { - "100": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5ppXK41H6DjbA.ttf", - "200": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95tpXK41H6DjbA.ttf", - "300": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbKZtpXK41H6DjbA.ttf", - "500": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbRZtpXK41H6DjbA.ttf", - "600": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbqZxpXK41H6DjbA.ttf", - "700": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbkJxpXK41H6DjbA.ttf", - "800": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95xpXK41H6DjbA.ttf", - "regular": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5tpXK41H6DjbA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5tZXaQx.ttf" - }, - { - "family": "Anek Kannada", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800" - ], - "subsets": [ "kannada", "latin", "latin-ext" ], - "version": "v4", - "lastModified": "2023-01-06", - "files": { - "100": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEAukVReA1oef.ttf", - "200": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDEQukVReA1oef.ttf", - "300": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dEdEQukVReA1oef.ttf", - "500": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFxEQukVReA1oef.ttf", - "600": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGdFgukVReA1oef.ttf", - "700": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGkFgukVReA1oef.ttf", - "800": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDFgukVReA1oef.ttf", - "regular": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEQukVReA1oef.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDETulXxM.ttf" - }, - { - "family": "Anek Latin", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v4", - "lastModified": "2023-01-06", - "files": { - "100": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7EZKdClWL3kgw.ttf", - "200": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7AZKdClWL3kgw.ttf", - "300": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuGbAZKdClWL3kgw.ttf", - "500": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PudbAZKdClWL3kgw.ttf", - "600": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PumbcZKdClWL3kgw.ttf", - "700": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuoLcZKdClWL3kgw.ttf", - "800": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7cZKdClWL3kgw.ttf", - "regular": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7AZKdClWL3kgw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7ApKNqh.ttf" - }, - { - "family": "Anek Malayalam", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800" - ], - "subsets": [ "latin", "latin-ext", "malayalam" ], - "version": "v5", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu_HMr5PDO71Qs.ttf", - "200": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu-HMr5PDO71Qs.ttf", - "300": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUcW-HMr5PDO71Qs.ttf", - "500": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUam-HMr5PDO71Qs.ttf", - "600": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUUW5HMr5PDO71Qs.ttf", - "700": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUXy5HMr5PDO71Qs.ttf", - "800": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu5HMr5PDO71Qs.ttf", - "regular": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu-HMr5PDO71Qs.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu-LMvzOA.ttf" - }, - { - "family": "Anek Odia", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800" - ], - "subsets": [ "latin", "latin-ext", "oriya" ], - "version": "v5", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZf63mXZAtm_es.ttf", - "200": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZfq3mXZAtm_es.ttf", - "300": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnnHfq3mXZAtm_es.ttf", - "500": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmrfq3mXZAtm_es.ttf", - "600": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnlHea3mXZAtm_es.ttf", - "700": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnl-ea3mXZAtm_es.ttf", - "800": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZea3mXZAtm_es.ttf", - "regular": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZfq3mXZAtm_es.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZfp3nV5Q.ttf" - }, - { - "family": "Anek Tamil", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800" - ], - "subsets": [ "latin", "latin-ext", "tamil" ], - "version": "v9", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQiZ6q4v4oegjOQ.ttf", - "200": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwid6q4v4oegjOQ.ttf", - "300": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNHCd6q4v4oegjOQ.ttf", - "500": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNcCd6q4v4oegjOQ.ttf", - "600": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNnCB6q4v4oegjOQ.ttf", - "700": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNpSB6q4v4oegjOQ.ttf", - "800": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwiB6q4v4oegjOQ.ttf", - "regular": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQid6q4v4oegjOQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQidKqoH8.ttf" - }, - { - "family": "Anek Telugu", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800" - ], - "subsets": [ "latin", "latin-ext", "telugu" ], - "version": "v8", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y-_oE2G2ep10_8.ttf", - "200": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136--oE2G2ep10_8.ttf", - "300": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i133G-oE2G2ep10_8.ttf", - "500": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13x2-oE2G2ep10_8.ttf", - "600": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13_G5oE2G2ep10_8.ttf", - "700": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i138i5oE2G2ep10_8.ttf", - "800": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136-5oE2G2ep10_8.ttf", - "regular": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y--oE2G2ep10_8.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y--kEyM3Q.ttf" - }, - { - "family": "Angkor", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin" ], - "version": "v28", - "lastModified": "2022-04-20", - "files": { - "regular": "http://fonts.gstatic.com/s/angkor/v28/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/angkor/v28/H4cmBXyAlsPdnlbO8yY6.ttf" - }, - { - "family": "Annie Use Your Telescope", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/annieuseyourtelescope/v18/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amita/v16/HhyaU5si9Om7PQlvAfSKEZZL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amita" + }, + { + "src": "http://fonts.gstatic.com/s/amita/v16/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amita" + } + ] + }, + { + "name": "Anaheim", + "fontFamily": "Anaheim, sans-serif", + "slug": "anaheim", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anaheim/v14/8vII7w042Wp87g4G0UTUEE5eK_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anaheim" + } + ] + }, + { + "name": "Andada Pro", + "fontFamily": "Andada Pro, serif", + "slug": "andada-pro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBY8cFLzvIt2S.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DP7BY8cFLzvIt2S.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8cFLzvIt2S.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8cFLzvIt2S.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DNJAo8cFLzvIt2S.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRmdfHrjNJ82Stjw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRlVfHrjNJ82Stjw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHrjNJ82Stjw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHrjNJ82Stjw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRudYHrjNJ82Stjw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + } + ] + }, + { + "name": "Andika", + "fontFamily": "Andika, sans-serif", + "slug": "andika", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/andika/v24/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Andika" + }, + { + "src": "http://fonts.gstatic.com/s/andika/v24/mem9Ya6iyW-Lwqgwb7YVeLkWVNBt.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Andika" + }, + { + "src": "http://fonts.gstatic.com/s/andika/v24/mem8Ya6iyW-Lwqg40ZM1UpcaXcl0Aw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Andika" + }, + { + "src": "http://fonts.gstatic.com/s/andika/v24/mem6Ya6iyW-Lwqgwb46pV50ef8xkA76a.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Andika" + } + ] + }, + { + "name": "Anek Bangla", + "fontFamily": "Anek Bangla, sans-serif", + "slug": "anek-bangla", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9YIocg56yyvt0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9ZIocg56yyvt0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfjFZIocg56yyvt0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9ZIocg56yyvt0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofl1ZIocg56yyvt0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfrFeIocg56yyvt0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfoheIocg56yyvt0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9eIocg56yyvt0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + } + ] + }, + { + "name": "Anek Devanagari", + "fontFamily": "Anek Devanagari, sans-serif", + "slug": "anek-devanagari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtk-9nFk0LjZ7E.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtku9nFk0LjZ7E.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLCzku9nFk0LjZ7E.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtku9nFk0LjZ7E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDfku9nFk0LjZ7E.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAzle9nFk0LjZ7E.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAKle9nFk0LjZ7E.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtle9nFk0LjZ7E.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + } + ] + }, + { + "name": "Anek Gujarati", + "fontFamily": "Anek Gujarati, sans-serif", + "slug": "anek-gujarati", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5G7w0KgB7Lm7g.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5C7w0KgB7Lm7g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0SZC7w0KgB7Lm7g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5C7w0KgB7Lm7g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0JZC7w0KgB7Lm7g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0yZe7w0KgB7Lm7g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-08Je7w0KgB7Lm7g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5e7w0KgB7Lm7g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + } + ] + }, + { + "name": "Anek Gurmukhi", + "fontFamily": "Anek Gurmukhi, sans-serif", + "slug": "anek-gurmukhi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5ppXK41H6DjbA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95tpXK41H6DjbA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbKZtpXK41H6DjbA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5tpXK41H6DjbA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbRZtpXK41H6DjbA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbqZxpXK41H6DjbA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbkJxpXK41H6DjbA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95xpXK41H6DjbA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + } + ] + }, + { + "name": "Anek Kannada", + "fontFamily": "Anek Kannada, sans-serif", + "slug": "anek-kannada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEAukVReA1oef.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDEQukVReA1oef.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dEdEQukVReA1oef.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEQukVReA1oef.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFxEQukVReA1oef.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGdFgukVReA1oef.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGkFgukVReA1oef.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDFgukVReA1oef.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + } + ] + }, + { + "name": "Anek Latin", + "fontFamily": "Anek Latin, sans-serif", + "slug": "anek-latin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7EZKdClWL3kgw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7AZKdClWL3kgw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuGbAZKdClWL3kgw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7AZKdClWL3kgw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PudbAZKdClWL3kgw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PumbcZKdClWL3kgw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuoLcZKdClWL3kgw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7cZKdClWL3kgw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + } + ] + }, + { + "name": "Anek Malayalam", + "fontFamily": "Anek Malayalam, sans-serif", + "slug": "anek-malayalam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu_HMr5PDO71Qs.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu-HMr5PDO71Qs.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUcW-HMr5PDO71Qs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu-HMr5PDO71Qs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUam-HMr5PDO71Qs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUUW5HMr5PDO71Qs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUXy5HMr5PDO71Qs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu5HMr5PDO71Qs.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + } + ] + }, + { + "name": "Anek Odia", + "fontFamily": "Anek Odia, sans-serif", + "slug": "anek-odia", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZf63mXZAtm_es.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZfq3mXZAtm_es.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnnHfq3mXZAtm_es.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZfq3mXZAtm_es.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmrfq3mXZAtm_es.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnlHea3mXZAtm_es.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnl-ea3mXZAtm_es.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZea3mXZAtm_es.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + } + ] + }, + { + "name": "Anek Tamil", + "fontFamily": "Anek Tamil, sans-serif", + "slug": "anek-tamil", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQiZ6q4v4oegjOQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwid6q4v4oegjOQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNHCd6q4v4oegjOQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQid6q4v4oegjOQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNcCd6q4v4oegjOQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNnCB6q4v4oegjOQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNpSB6q4v4oegjOQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwiB6q4v4oegjOQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + } + ] + }, + { + "name": "Anek Telugu", + "fontFamily": "Anek Telugu, sans-serif", + "slug": "anek-telugu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y-_oE2G2ep10_8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136--oE2G2ep10_8.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i133G-oE2G2ep10_8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y--oE2G2ep10_8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13x2-oE2G2ep10_8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13_G5oE2G2ep10_8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i138i5oE2G2ep10_8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136-5oE2G2ep10_8.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + } + ] + }, + { + "name": "Angkor", + "fontFamily": "Angkor, system-ui", + "slug": "angkor", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/angkor/v28/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Angkor" + } + ] + }, + { + "name": "Annie Use Your Telescope", + "fontFamily": "Annie Use Your Telescope, cursive", + "slug": "annie-use-your-telescope", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/annieuseyourtelescope/v18/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGTlT3F.ttf" - }, - { - "family": "Anonymous Pro", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "cyrillic", "greek", "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf", - "regular": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf", - "italic": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf", - "700italic": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/annieuseyourtelescope/v18/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Annie Use Your Telescope" + } + ] + }, + { + "name": "Anonymous Pro", + "fontFamily": "Anonymous Pro, monospace", + "slug": "anonymous-pro", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pHl028A.ttf" - }, - { - "family": "Antic", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRaZLodgzydtk.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRZZKq9w.ttf" - }, - { - "family": "Antic Didone", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDSqIEC.ttf" - }, - { - "family": "Antic Slab", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IacNcWQ.ttf" - }, - { - "family": "Anton", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v23", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/anton/v23/1Ptgg87LROyAm0K08i4gS7lu.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anton/v23/1Ptgg87LROyAm3K1-Co.ttf" - }, - { - "family": "Antonio", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8BtIY2DwSXlM.ttf", - "200": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVzx8RtIY2DwSXlM.ttf", - "300": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVwv8RtIY2DwSXlM.ttf", - "500": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxD8RtIY2DwSXlM.ttf", - "600": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyv9htIY2DwSXlM.ttf", - "700": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htIY2DwSXlM.ttf", - "regular": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtIY2DwSXlM.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8StJaWQ.ttf" - }, - { - "family": "Anuphan", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ - "cyrillic-ext", - "latin", - "latin-ext", - "thai", - "vietnamese" - ], - "version": "v3", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9A4kGmW927Gu.ttf", - "200": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCmY9Q4kGmW927Gu.ttf", - "300": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZClG9Q4kGmW927Gu.ttf", - "500": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkq9Q4kGmW927Gu.ttf", - "600": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCnG8g4kGmW927Gu.ttf", - "700": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCn_8g4kGmW927Gu.ttf", - "regular": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9Q4kGmW927Gu.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9T4lEGE.ttf" - }, - { - "family": "Anybody", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v9", - "lastModified": "2023-04-04", - "files": { - "100": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12HPrsXD_nBPpQ.ttf", - "200": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2DPrsXD_nBPpQ.ttf", - "300": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JiWDPrsXD_nBPpQ.ttf", - "500": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J5WDPrsXD_nBPpQ.ttf", - "600": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JCWfPrsXD_nBPpQ.ttf", - "700": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JMGfPrsXD_nBPpQ.ttf", - "800": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2fPrsXD_nBPpQ.ttf", - "900": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JfmfPrsXD_nBPpQ.ttf", - "regular": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12DPrsXD_nBPpQ.ttf", - "100italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7M_H3HVfpcHY.ttf", - "200italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn7c_H3HVfpcHY.ttf", - "300italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyN57c_H3HVfpcHY.ttf", - "italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7c_H3HVfpcHY.ttf", - "500italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMV7c_H3HVfpcHY.ttf", - "600italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyP56s_H3HVfpcHY.ttf", - "700italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyPA6s_H3HVfpcHY.ttf", - "800italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn6s_H3HVfpcHY.ttf", - "900italic": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOO6s_H3HVfpcHY.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12D_r8_H.ttf" - }, - { - "family": "Arapey", - "variants": [ "regular", "italic" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf", - "italic": "http://fonts.gstatic.com/s/arapey/v16/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RCKZtoY.ttf" - }, - { - "family": "Arbutus", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/arbutus/v24/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/arbutus/v24/NaPYcZ7dG_5J3pooX9Nnqw.ttf" - }, - { - "family": "Arbutus Slab", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZlaqUZ.ttf" - }, - { - "family": "Architects Daughter", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/architectsdaughter/v18/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anonymous Pro" + }, + { + "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Anonymous Pro" + }, + { + "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anonymous Pro" + }, + { + "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Anonymous Pro" + } + ] + }, + { + "name": "Antic", + "fontFamily": "Antic, sans-serif", + "slug": "antic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRaZLodgzydtk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Antic" + } + ] + }, + { + "name": "Antic Didone", + "fontFamily": "Antic Didone, serif", + "slug": "antic-didone", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Antic Didone" + } + ] + }, + { + "name": "Antic Slab", + "fontFamily": "Antic Slab, serif", + "slug": "antic-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Antic Slab" + } + ] + }, + { + "name": "Anton", + "fontFamily": "Anton, sans-serif", + "slug": "anton", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anton/v23/1Ptgg87LROyAm0K08i4gS7lu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anton" + } + ] + }, + { + "name": "Antonio", + "fontFamily": "Antonio, sans-serif", + "slug": "antonio", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8BtIY2DwSXlM.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVzx8RtIY2DwSXlM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVwv8RtIY2DwSXlM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtIY2DwSXlM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxD8RtIY2DwSXlM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyv9htIY2DwSXlM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htIY2DwSXlM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Antonio" + } + ] + }, + { + "name": "Anuphan", + "fontFamily": "Anuphan, sans-serif", + "slug": "anuphan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9A4kGmW927Gu.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCmY9Q4kGmW927Gu.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZClG9Q4kGmW927Gu.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9Q4kGmW927Gu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkq9Q4kGmW927Gu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCnG8g4kGmW927Gu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCn_8g4kGmW927Gu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anuphan" + } + ] + }, + { + "name": "Anybody", + "fontFamily": "Anybody, system-ui", + "slug": "anybody", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12HPrsXD_nBPpQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2DPrsXD_nBPpQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JiWDPrsXD_nBPpQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12DPrsXD_nBPpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J5WDPrsXD_nBPpQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JCWfPrsXD_nBPpQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JMGfPrsXD_nBPpQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2fPrsXD_nBPpQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JfmfPrsXD_nBPpQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7M_H3HVfpcHY.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn7c_H3HVfpcHY.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyN57c_H3HVfpcHY.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7c_H3HVfpcHY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMV7c_H3HVfpcHY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyP56s_H3HVfpcHY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyPA6s_H3HVfpcHY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn6s_H3HVfpcHY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOO6s_H3HVfpcHY.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Anybody" + } + ] + }, + { + "name": "Arapey", + "fontFamily": "Arapey, serif", + "slug": "arapey", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arapey" + }, + { + "src": "http://fonts.gstatic.com/s/arapey/v16/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Arapey" + } + ] + }, + { + "name": "Arbutus", + "fontFamily": "Arbutus, system-ui", + "slug": "arbutus", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arbutus/v24/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arbutus" + } + ] + }, + { + "name": "Arbutus Slab", + "fontFamily": "Arbutus Slab, serif", + "slug": "arbutus-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arbutus Slab" + } + ] + }, + { + "name": "Architects Daughter", + "fontFamily": "Architects Daughter, cursive", + "slug": "architects-daughter", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/architectsdaughter/v18/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvTY9g5g.ttf" - }, - { - "family": "Archivo", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDJp8B1oJ0vyVQ.ttf", - "200": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDNp8B1oJ0vyVQ.ttf", - "300": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTajNp8B1oJ0vyVQ.ttf", - "500": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTBjNp8B1oJ0vyVQ.ttf", - "600": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp8B1oJ0vyVQ.ttf", - "700": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT0zRp8B1oJ0vyVQ.ttf", - "800": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDRp8B1oJ0vyVQ.ttf", - "900": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTnTRp8B1oJ0vyVQ.ttf", - "regular": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp8B1oJ0vyVQ.ttf", - "100italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBshdsBU7iVdxQ.ttf", - "200italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABsxdsBU7iVdxQ.ttf", - "300italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HDfsxdsBU7iVdxQ.ttf", - "italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBsxdsBU7iVdxQ.ttf", - "500italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCzsxdsBU7iVdxQ.ttf", - "600italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBftBdsBU7iVdxQ.ttf", - "700italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBmtBdsBU7iVdxQ.ttf", - "800italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABtBdsBU7iVdxQ.ttf", - "900italic": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HAotBdsBU7iVdxQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNZ8Rds.ttf" - }, - { - "family": "Archivo Black", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/archivoblack/v17/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/archivoblack/v17/HTxqL289NzCGg4MzN6KJ7eW6CYqF-w.ttf" - }, - { - "family": "Archivo Narrow", - "variants": [ - "regular", - "500", - "600", - "700", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v29", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvHlGKpHOtFCQ76Q.ttf", - "600": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhv8laKpHOtFCQ76Q.ttf", - "700": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKpHOtFCQ76Q.ttf", - "regular": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFGKpHOtFCQ76Q.ttf", - "italic": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJi53mpNiEr6T6Y.ttf", - "500italic": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJQ53mpNiEr6T6Y.ttf", - "600italic": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BK84HmpNiEr6T6Y.ttf", - "700italic": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BKF4HmpNiEr6T6Y.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFG6pXmp.ttf" - }, - { - "family": "Are You Serious", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/areyouserious/v10/ll8kK2GVSSr-PtjQ5nONVcNn4306hT9nCGRayg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/architectsdaughter/v18/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Architects Daughter" + } + ] + }, + { + "name": "Archivo", + "fontFamily": "Archivo, sans-serif", + "slug": "archivo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDJp8B1oJ0vyVQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDNp8B1oJ0vyVQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTajNp8B1oJ0vyVQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp8B1oJ0vyVQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTBjNp8B1oJ0vyVQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp8B1oJ0vyVQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT0zRp8B1oJ0vyVQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDRp8B1oJ0vyVQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTnTRp8B1oJ0vyVQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBshdsBU7iVdxQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABsxdsBU7iVdxQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HDfsxdsBU7iVdxQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBsxdsBU7iVdxQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCzsxdsBU7iVdxQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBftBdsBU7iVdxQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBmtBdsBU7iVdxQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABtBdsBU7iVdxQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HAotBdsBU7iVdxQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Archivo" + } + ] + }, + { + "name": "Archivo Black", + "fontFamily": "Archivo Black, sans-serif", + "slug": "archivo-black", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/archivoblack/v17/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Archivo Black" + } + ] + }, + { + "name": "Archivo Narrow", + "fontFamily": "Archivo Narrow, sans-serif", + "slug": "archivo-narrow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFGKpHOtFCQ76Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvHlGKpHOtFCQ76Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhv8laKpHOtFCQ76Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKpHOtFCQ76Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJi53mpNiEr6T6Y.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJQ53mpNiEr6T6Y.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BK84HmpNiEr6T6Y.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BKF4HmpNiEr6T6Y.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Archivo Narrow" + } + ] + }, + { + "name": "Are You Serious", + "fontFamily": "Are You Serious, cursive", + "slug": "are-you-serious", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/areyouserious/v10/ll8kK2GVSSr-PtjQ5nONVcNn430KhDVj.ttf" - }, - { - "family": "Aref Ruqaa", - "variants": [ "regular", "700" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v25", - "lastModified": "2022-12-08", - "files": { - "700": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf", - "regular": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkbxPW1E165rajQKDulIIEoUA.ttf" - }, - { - "family": "Aref Ruqaa Ink", - "variants": [ "regular", "700" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v7", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/arefruqaaink/v7/1q2cY5WOGUFlt84GTOkP6Kdx71xde6WhqWBCyxWn.ttf", - "regular": "http://fonts.gstatic.com/s/arefruqaaink/v7/1q2fY5WOGUFlt84GTOkP6Kdx72ThVIGpgnxL.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/arefruqaaink/v7/1q2fY5WOGUFlt84GTOkP6Kdx71TgXoU.ttf" - }, - { - "family": "Arima", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ - "greek", - "greek-ext", - "latin", - "latin-ext", - "malayalam", - "tamil", - "vietnamese" - ], - "version": "v5", - "lastModified": "2023-04-04", - "files": { - "100": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTE-pQGOyYw2fw.ttf", - "200": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX14TA-pQGOyYw2fw.ttf", - "300": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1PzA-pQGOyYw2fw.ttf", - "500": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1UzA-pQGOyYw2fw.ttf", - "600": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1vzc-pQGOyYw2fw.ttf", - "700": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1hjc-pQGOyYw2fw.ttf", - "regular": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTA-pQGOyYw2fw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTAOpAuK.ttf" - }, - { - "family": "Arimo", - "variants": [ - "regular", - "500", - "600", - "700", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "hebrew", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v28", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsBxDAVQI4aA.ttf", - "600": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3M8tsBxDAVQI4aA.ttf", - "700": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3CstsBxDAVQI4aA.ttf", - "regular": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsBxDAVQI4aA.ttf", - "italic": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-ERBrEdwcoaKww.ttf", - "500italic": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-2RBrEdwcoaKww.ttf", - "600italic": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9aQxrEdwcoaKww.ttf", - "700italic": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9jQxrEdwcoaKww.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxcBhrE.ttf" - }, - { - "family": "Arizonia", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/arizonia/v19/neIIzCemt4A5qa7mv6WGHK06UY30.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/areyouserious/v10/ll8kK2GVSSr-PtjQ5nONVcNn4306hT9nCGRayg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Are You Serious" + } + ] + }, + { + "name": "Aref Ruqaa", + "fontFamily": "Aref Ruqaa, serif", + "slug": "aref-ruqaa", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aref Ruqaa" + }, + { + "src": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Aref Ruqaa" + } + ] + }, + { + "name": "Aref Ruqaa Ink", + "fontFamily": "Aref Ruqaa Ink, serif", + "slug": "aref-ruqaa-ink", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arefruqaaink/v7/1q2fY5WOGUFlt84GTOkP6Kdx72ThVIGpgnxL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aref Ruqaa Ink" + }, + { + "src": "http://fonts.gstatic.com/s/arefruqaaink/v7/1q2cY5WOGUFlt84GTOkP6Kdx71xde6WhqWBCyxWn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Aref Ruqaa Ink" + } + ] + }, + { + "name": "Arima", + "fontFamily": "Arima, system-ui", + "slug": "arima", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTE-pQGOyYw2fw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX14TA-pQGOyYw2fw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1PzA-pQGOyYw2fw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTA-pQGOyYw2fw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1UzA-pQGOyYw2fw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1vzc-pQGOyYw2fw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1hjc-pQGOyYw2fw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arima" + } + ] + }, + { + "name": "Arimo", + "fontFamily": "Arimo, sans-serif", + "slug": "arimo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsBxDAVQI4aA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsBxDAVQI4aA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3M8tsBxDAVQI4aA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3CstsBxDAVQI4aA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-ERBrEdwcoaKww.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-2RBrEdwcoaKww.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9aQxrEdwcoaKww.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9jQxrEdwcoaKww.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Arimo" + } + ] + }, + { + "name": "Arizonia", + "fontFamily": "Arizonia, cursive", + "slug": "arizonia", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/arizonia/v19/neIIzCemt4A5qa7mv5WHFqk.ttf" - }, - { - "family": "Armata", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/armata/v20/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/armata/v20/gokvH63_HV5jQ-ENlTRz.ttf" - }, - { - "family": "Arsenal", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/arsenal/v12/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf", - "regular": "http://fonts.gstatic.com/s/arsenal/v12/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf", - "italic": "http://fonts.gstatic.com/s/arsenal/v12/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf", - "700italic": "http://fonts.gstatic.com/s/arsenal/v12/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/arsenal/v12/wXKrE3kQtZQ4pF3D517cBQ.ttf" - }, - { - "family": "Artifika", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2023-01-10", - "files": { - "regular": "http://fonts.gstatic.com/s/artifika/v21/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/artifika/v21/VEMyRoxzronptCuxu5Ws7DQ.ttf" - }, - { - "family": "Arvo", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/arvo/v20/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf", - "regular": "http://fonts.gstatic.com/s/arvo/v20/tDbD2oWUg0MKmSAa7Lzr7vs.ttf", - "italic": "http://fonts.gstatic.com/s/arvo/v20/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf", - "700italic": "http://fonts.gstatic.com/s/arvo/v20/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/arvo/v20/tDbD2oWUg0MKqSEQ6A.ttf" - }, - { - "family": "Arya", - "variants": [ "regular", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/arya/v19/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf", - "regular": "http://fonts.gstatic.com/s/arya/v19/ga6CawNG-HJd9Ub1-beqdFE.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/arya/v19/ga6CawNG-HJdxUf__Q.ttf" - }, - { - "family": "Asap", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v26", - "lastModified": "2022-11-18", - "files": { - "100": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqQsLmOXoA7Glw.ttf", - "200": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqUsLmOXoA7Glw.ttf", - "300": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYzKUsLmOXoA7Glw.ttf", - "500": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYoKUsLmOXoA7Glw.ttf", - "600": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYTKIsLmOXoA7Glw.ttf", - "700": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYdaIsLmOXoA7Glw.ttf", - "800": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqIsLmOXoA7Glw.ttf", - "900": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYO6IsLmOXoA7Glw.ttf", - "regular": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUsLmOXoA7Glw.ttf", - "100italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbGmTggvWl0Qn.ttf", - "200italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEbWmTggvWl0Qn.ttf", - "300italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmTggvWl0Qn.ttf", - "italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmTggvWl0Qn.ttf", - "500italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmTggvWl0Qn.ttf", - "600italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYaammTggvWl0Qn.ttf", - "700italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammTggvWl0Qn.ttf", - "800italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEammTggvWl0Qn.ttf", - "900italic": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammTggvWl0Qn.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUcL2mT.ttf" - }, - { - "family": "Asap Condensed", - "variants": [ - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v17", - "lastModified": "2023-05-02", - "files": { - "200": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9DSWlEgGqgp-pO.ttf", - "300": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8nSmlEgGqgp-pO.ttf", - "500": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf", - "600": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf", - "700": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf", - "800": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8rTmlEgGqgp-pO.ttf", - "900": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8PT2lEgGqgp-pO.ttf", - "200italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUIFFim6CovpOkXA.ttf", - "300italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOVGim6CovpOkXA.ttf", - "regular": "http://fonts.gstatic.com/s/asapcondensed/v17/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf", - "italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf", - "500italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf", - "600italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf", - "700italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf", - "800italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOlCim6CovpOkXA.ttf", - "900italic": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUM1Dim6CovpOkXA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/asapcondensed/v17/pxidypY1o9NHyXh3WvSbGSggdOeKaEk.ttf" - }, - { - "family": "Asar", - "variants": [ "regular" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/asar/v22/sZlLdRyI6TBIXkYQDLlTW6E.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/asar/v22/sZlLdRyI6TBIbkcaCA.ttf" - }, - { - "family": "Asset", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/asset/v24/SLXGc1na-mM4cWImRJqExst1.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/asset/v24/SLXGc1na-mM4cVInTp4.ttf" - }, - { - "family": "Assistant", - "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], - "subsets": [ "hebrew", "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZnEGGf3qGuvM4.ttf", - "300": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtrhnEGGf3qGuvM4.ttf", - "500": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", - "600": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", - "700": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", - "800": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZgEGGf3qGuvM4.ttf", - "regular": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnIGCV2g.ttf" - }, - { - "family": "Astloch", - "variants": [ "regular", "700" ], - "subsets": [ "latin" ], - "version": "v26", - "lastModified": "2022-04-20", - "files": { - "700": "http://fonts.gstatic.com/s/astloch/v26/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf", - "regular": "http://fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjm90byA.ttf" - }, - { - "family": "Asul", - "variants": [ "regular", "700" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/asul/v19/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf", - "regular": "http://fonts.gstatic.com/s/asul/v19/VuJ-dNjKxYr46fMFXK78JIg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/asul/v19/VuJ-dNjKxYr42fIPWA.ttf" - }, - { - "family": "Athiti", - "variants": [ "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf", - "300": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf", - "500": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf", - "600": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf", - "700": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf", - "regular": "http://fonts.gstatic.com/s/athiti/v12/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/athiti/v12/pe0vMISdLIZIv1wIDRJS.ttf" - }, - { - "family": "Atkinson Hyperlegible", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt73C1KxNDXMspQ1lPyU89-1h6ONRlW45G8WbcNcy-OZFy-FA.ttf", - "regular": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE5ZgpewSSbQ.ttf", - "italic": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt43C1KxNDXMspQ1lPyU89-1h6ONRlW45G055ItWQGCbUWn.ttf", - "700italic": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt93C1KxNDXMspQ1lPyU89-1h6ONRlW45G056qRdiWKRlmuFH24.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45G05JIt.ttf" - }, - { - "family": "Atma", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "bengali", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf", - "500": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf", - "600": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf", - "700": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf", - "regular": "http://fonts.gstatic.com/s/atma/v16/uK_84rqWc-Eom25bDj8WIv4.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/atma/v16/uK_84rqWc-Eoq29RCg.ttf" - }, - { - "family": "Atomic Age", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v27", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/atomicage/v27/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/atomicage/v27/f0Xz0eug6sdmRFkYZZGL18Dn8Q.ttf" - }, - { - "family": "Aubrey", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v28", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7vugNsCxVEgA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7fuwlo.ttf" - }, - { - "family": "Audiowide", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/audiowide/v16/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/audiowide/v16/l7gdbjpo0cum0ckerWCdkA_L.ttf" - }, - { - "family": "Autour One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/autourone/v24/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/autourone/v24/UqyVK80cP25l3fJgbdfbo5hcUg.ttf" - }, - { - "family": "Average", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/average/v18/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/average/v18/fC1hPYBHe23MxA7rEeN6UQ.ttf" - }, - { - "family": "Average Sans", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJ_BNCe.ttf" - }, - { - "family": "Averia Gruesa Libre", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZYmiDxw.ttf" - }, - { - "family": "Averia Libre", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "700", - "700italic" - ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf", - "700": "http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf", - "300italic": "http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf", - "regular": "http://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf", - "italic": "http://fonts.gstatic.com/s/averialibre/v16/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf", - "700italic": "http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjESA6nN.ttf" - }, - { - "family": "Averia Sans Libre", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "700", - "700italic" - ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf", - "700": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf", - "300italic": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf", - "regular": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf", - "italic": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf", - "700italic": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEdVIEoc.ttf" - }, - { - "family": "Averia Serif Libre", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "700", - "700italic" - ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf", - "700": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf", - "300italic": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf", - "regular": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf", - "italic": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf", - "700italic": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIWzD2ms4wxr6GvjeD0X88SHPyX2xYOpAuK.ttf" - }, - { - "family": "Azeret Mono", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPRh0raa-5s3AA.ttf", - "200": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPVh0raa-5s3AA.ttf", - "300": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfwvVh0raa-5s3AA.ttf", - "500": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh0raa-5s3AA.ttf", - "600": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfQvJh0raa-5s3AA.ttf", - "700": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh0raa-5s3AA.ttf", - "800": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPJh0raa-5s3AA.ttf", - "900": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfNfJh0raa-5s3AA.ttf", - "regular": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh0raa-5s3AA.ttf", - "100italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkLye2Z4nAN7J.ttf", - "200italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJkbye2Z4nAN7J.ttf", - "300italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLbXkbye2Z4nAN7J.ttf", - "italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbye2Z4nAN7J.ttf", - "500italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbye2Z4nAN7J.ttf", - "600italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZXlrye2Z4nAN7J.ttf", - "700italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulrye2Z4nAN7J.ttf", - "800italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJlrye2Z4nAN7J.ttf", - "900italic": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYglrye2Z4nAN7J.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arizonia/v19/neIIzCemt4A5qa7mv6WGHK06UY30.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arizonia" + } + ] + }, + { + "name": "Armata", + "fontFamily": "Armata, sans-serif", + "slug": "armata", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/armata/v20/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Armata" + } + ] + }, + { + "name": "Arsenal", + "fontFamily": "Arsenal, sans-serif", + "slug": "arsenal", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arsenal" + }, + { + "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Arsenal" + }, + { + "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arsenal" + }, + { + "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Arsenal" + } + ] + }, + { + "name": "Artifika", + "fontFamily": "Artifika, serif", + "slug": "artifika", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/artifika/v21/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Artifika" + } + ] + }, + { + "name": "Arvo", + "fontFamily": "Arvo, serif", + "slug": "arvo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arvo/v20/tDbD2oWUg0MKmSAa7Lzr7vs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arvo" + }, + { + "src": "http://fonts.gstatic.com/s/arvo/v20/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Arvo" + }, + { + "src": "http://fonts.gstatic.com/s/arvo/v20/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arvo" + }, + { + "src": "http://fonts.gstatic.com/s/arvo/v20/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Arvo" + } + ] + }, + { + "name": "Arya", + "fontFamily": "Arya, sans-serif", + "slug": "arya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arya/v19/ga6CawNG-HJd9Ub1-beqdFE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arya" + }, + { + "src": "http://fonts.gstatic.com/s/arya/v19/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arya" + } + ] + }, + { + "name": "Asap", + "fontFamily": "Asap, sans-serif", + "slug": "asap", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqQsLmOXoA7Glw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqUsLmOXoA7Glw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYzKUsLmOXoA7Glw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUsLmOXoA7Glw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYoKUsLmOXoA7Glw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYTKIsLmOXoA7Glw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYdaIsLmOXoA7Glw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqIsLmOXoA7Glw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYO6IsLmOXoA7Glw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbGmTggvWl0Qn.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEbWmTggvWl0Qn.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmTggvWl0Qn.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmTggvWl0Qn.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmTggvWl0Qn.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYaammTggvWl0Qn.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammTggvWl0Qn.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEammTggvWl0Qn.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammTggvWl0Qn.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Asap" + } + ] + }, + { + "name": "Asap Condensed", + "fontFamily": "Asap Condensed, sans-serif", + "slug": "asap-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9DSWlEgGqgp-pO.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUIFFim6CovpOkXA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8nSmlEgGqgp-pO.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOVGim6CovpOkXA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8rTmlEgGqgp-pO.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOlCim6CovpOkXA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8PT2lEgGqgp-pO.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUM1Dim6CovpOkXA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + } + ] + }, + { + "name": "Asar", + "fontFamily": "Asar, serif", + "slug": "asar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asar/v22/sZlLdRyI6TBIXkYQDLlTW6E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asar" + } + ] + }, + { + "name": "Asset", + "fontFamily": "Asset, system-ui", + "slug": "asset", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asset/v24/SLXGc1na-mM4cWImRJqExst1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asset" + } + ] + }, + { + "name": "Assistant", + "fontFamily": "Assistant, sans-serif", + "slug": "assistant", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZnEGGf3qGuvM4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtrhnEGGf3qGuvM4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZgEGGf3qGuvM4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Assistant" + } + ] + }, + { + "name": "Astloch", + "fontFamily": "Astloch, system-ui", + "slug": "astloch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Astloch" + }, + { + "src": "http://fonts.gstatic.com/s/astloch/v26/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Astloch" + } + ] + }, + { + "name": "Asul", + "fontFamily": "Asul, sans-serif", + "slug": "asul", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asul/v19/VuJ-dNjKxYr46fMFXK78JIg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asul" + }, + { + "src": "http://fonts.gstatic.com/s/asul/v19/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Asul" + } + ] + }, + { + "name": "Athiti", + "fontFamily": "Athiti, sans-serif", + "slug": "athiti", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Athiti" + } + ] + }, + { + "name": "Atkinson Hyperlegible", + "fontFamily": "Atkinson Hyperlegible, sans-serif", + "slug": "atkinson-hyperlegible", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE5ZgpewSSbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Atkinson Hyperlegible" + }, + { + "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt43C1KxNDXMspQ1lPyU89-1h6ONRlW45G055ItWQGCbUWn.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Atkinson Hyperlegible" + }, + { + "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt73C1KxNDXMspQ1lPyU89-1h6ONRlW45G8WbcNcy-OZFy-FA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Atkinson Hyperlegible" + }, + { + "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt93C1KxNDXMspQ1lPyU89-1h6ONRlW45G056qRdiWKRlmuFH24.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Atkinson Hyperlegible" + } + ] + }, + { + "name": "Atma", + "fontFamily": "Atma, system-ui", + "slug": "atma", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Atma" + }, + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_84rqWc-Eom25bDj8WIv4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Atma" + }, + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Atma" + }, + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Atma" + }, + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Atma" + } + ] + }, + { + "name": "Atomic Age", + "fontFamily": "Atomic Age, system-ui", + "slug": "atomic-age", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/atomicage/v27/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Atomic Age" + } + ] + }, + { + "name": "Aubrey", + "fontFamily": "Aubrey, system-ui", + "slug": "aubrey", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7vugNsCxVEgA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aubrey" + } + ] + }, + { + "name": "Audiowide", + "fontFamily": "Audiowide, system-ui", + "slug": "audiowide", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/audiowide/v16/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Audiowide" + } + ] + }, + { + "name": "Autour One", + "fontFamily": "Autour One, system-ui", + "slug": "autour-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/autourone/v24/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Autour One" + } + ] + }, + { + "name": "Average", + "fontFamily": "Average, serif", + "slug": "average", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/average/v18/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Average" + } + ] + }, + { + "name": "Average Sans", + "fontFamily": "Average Sans, sans-serif", + "slug": "average-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Average Sans" + } + ] + }, + { + "name": "Averia Gruesa Libre", + "fontFamily": "Averia Gruesa Libre, system-ui", + "slug": "averia-gruesa-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Averia Gruesa Libre" + } + ] + }, + { + "name": "Averia Libre", + "fontFamily": "Averia Libre, system-ui", + "slug": "averia-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Averia Libre" + } + ] + }, + { + "name": "Averia Sans Libre", + "fontFamily": "Averia Sans Libre, system-ui", + "slug": "averia-sans-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Averia Sans Libre" + } + ] + }, + { + "name": "Averia Serif Libre", + "fontFamily": "Averia Serif Libre, system-ui", + "slug": "averia-serif-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Averia Serif Libre" + } + ] + }, + { + "name": "Azeret Mono", + "fontFamily": "Azeret Mono, monospace", + "slug": "azeret-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVR07ye.ttf" - }, - { - "family": "B612", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/b612/v12/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf", - "regular": "http://fonts.gstatic.com/s/b612/v12/3JnySDDxiSz32jm4GDigUXw.ttf", - "italic": "http://fonts.gstatic.com/s/b612/v12/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf", - "700italic": "http://fonts.gstatic.com/s/b612/v12/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/b612/v12/3JnySDDxiSz36jiyHA.ttf" - }, - { - "family": "B612 Mono", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/b612mono/v12/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf", - "regular": "http://fonts.gstatic.com/s/b612mono/v12/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf", - "italic": "http://fonts.gstatic.com/s/b612mono/v12/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf", - "700italic": "http://fonts.gstatic.com/s/b612mono/v12/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPRh0raa-5s3AA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPVh0raa-5s3AA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfwvVh0raa-5s3AA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh0raa-5s3AA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh0raa-5s3AA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfQvJh0raa-5s3AA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh0raa-5s3AA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPJh0raa-5s3AA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfNfJh0raa-5s3AA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkLye2Z4nAN7J.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJkbye2Z4nAN7J.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLbXkbye2Z4nAN7J.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbye2Z4nAN7J.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbye2Z4nAN7J.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZXlrye2Z4nAN7J.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulrye2Z4nAN7J.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJlrye2Z4nAN7J.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYglrye2Z4nAN7J.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + } + ] + }, + { + "name": "B612", + "fontFamily": "B612, sans-serif", + "slug": "b612", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/b612/v12/3JnySDDxiSz32jm4GDigUXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "B612" + }, + { + "src": "http://fonts.gstatic.com/s/b612/v12/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "B612" + }, + { + "src": "http://fonts.gstatic.com/s/b612/v12/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "B612" + }, + { + "src": "http://fonts.gstatic.com/s/b612/v12/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "B612" + } + ] + }, + { + "name": "B612 Mono", + "fontFamily": "B612 Mono, monospace", + "slug": "b612-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/b612mono/v12/kmK_Zq85QVWbN1eW6lJV1g7Y.ttf" - }, - { - "family": "BIZ UDGothic", - "variants": [ "regular", "700" ], - "subsets": [ - "cyrillic", - "greek-ext", - "japanese", - "latin", - "latin-ext" - ], - "version": "v9", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/bizudgothic/v9/daaASTouBF7RUjnbt8p3LuKVCSxZ-xTQZMhbaA.ttf", - "regular": "http://fonts.gstatic.com/s/bizudgothic/v9/daafSTouBF7RUjnbt8p3LuKttQN98z_MbQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bizudgothic/v9/daafSTouBF7RUjnbt8p3LuKdtAl5.ttf" - }, - { - "family": "BIZ UDMincho", - "variants": [ "regular", "700" ], - "subsets": [ - "cyrillic", - "greek-ext", - "japanese", - "latin", - "latin-ext" - ], - "version": "v9", - "lastModified": "2023-01-18", - "files": { - "700": "http://fonts.gstatic.com/s/bizudmincho/v9/EJROQgI6eOxFjBdKs38yhtWNyyvfpeFE-IyCrw.ttf", - "regular": "http://fonts.gstatic.com/s/bizudmincho/v9/EJRRQgI6eOxFjBdKs38yhtW1dwT7rcpY8Q.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bizudmincho/v9/EJRRQgI6eOxFjBdKs38yhtWFdg7_.ttf" - }, - { - "family": "BIZ UDPGothic", - "variants": [ "regular", "700" ], - "subsets": [ - "cyrillic", - "greek-ext", - "japanese", - "latin", - "latin-ext" - ], - "version": "v9", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/bizudpgothic/v9/hESq6X5pHAIBjmS84VL0Bue85skjZWEnTABCSQo.ttf", - "regular": "http://fonts.gstatic.com/s/bizudpgothic/v9/hES36X5pHAIBjmS84VL0Bue83nUMQWkMUAk.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bizudpgothic/v9/hES36X5pHAIBjmS84VL0Bue87nQGRQ.ttf" - }, - { - "family": "BIZ UDPMincho", - "variants": [ "regular", "700" ], - "subsets": [ - "cyrillic", - "greek-ext", - "japanese", - "latin", - "latin-ext" - ], - "version": "v9", - "lastModified": "2023-01-18", - "files": { - "700": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvCbXOBrmYppy7oWWTg1_58pqR3kU7fnZAy57k.ttf", - "regular": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvfbXOBrmYppy7oWWTg1_58nhhYtUb0gZk.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvfbXOBrmYppy7oWWTg1_58rhlSsQ.ttf" - }, - { - "family": "Babylonica", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/babylonica/v2/5aUw9_i2qxWVCAE2aHjTqDJ0-VVMoEw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "B612 Mono" + }, + { + "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "B612 Mono" + }, + { + "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "B612 Mono" + }, + { + "src": "http://fonts.gstatic.com/s/b612mono/v12/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "B612 Mono" + } + ] + }, + { + "name": "BIZ UDGothic", + "fontFamily": "BIZ UDGothic, sans-serif", + "slug": "biz-udgothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bizudgothic/v9/daafSTouBF7RUjnbt8p3LuKttQN98z_MbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BIZ UDGothic" + }, + { + "src": "http://fonts.gstatic.com/s/bizudgothic/v9/daaASTouBF7RUjnbt8p3LuKVCSxZ-xTQZMhbaA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BIZ UDGothic" + } + ] + }, + { + "name": "BIZ UDMincho", + "fontFamily": "BIZ UDMincho, serif", + "slug": "biz-udmincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bizudmincho/v9/EJRRQgI6eOxFjBdKs38yhtW1dwT7rcpY8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BIZ UDMincho" + }, + { + "src": "http://fonts.gstatic.com/s/bizudmincho/v9/EJROQgI6eOxFjBdKs38yhtWNyyvfpeFE-IyCrw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BIZ UDMincho" + } + ] + }, + { + "name": "BIZ UDPGothic", + "fontFamily": "BIZ UDPGothic, sans-serif", + "slug": "biz-udpgothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bizudpgothic/v9/hES36X5pHAIBjmS84VL0Bue83nUMQWkMUAk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BIZ UDPGothic" + }, + { + "src": "http://fonts.gstatic.com/s/bizudpgothic/v9/hESq6X5pHAIBjmS84VL0Bue85skjZWEnTABCSQo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BIZ UDPGothic" + } + ] + }, + { + "name": "BIZ UDPMincho", + "fontFamily": "BIZ UDPMincho, serif", + "slug": "biz-udpmincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvfbXOBrmYppy7oWWTg1_58nhhYtUb0gZk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BIZ UDPMincho" + }, + { + "src": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvCbXOBrmYppy7oWWTg1_58pqR3kU7fnZAy57k.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BIZ UDPMincho" + } + ] + }, + { + "name": "Babylonica", + "fontFamily": "Babylonica, cursive", + "slug": "babylonica", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/babylonica/v2/5aUw9_i2qxWVCAE2aHjTmDN-_Q.ttf" - }, - { - "family": "Bad Script", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin" ], - "version": "v16", - "lastModified": "2022-04-20", - "files": { - "regular": "http://fonts.gstatic.com/s/badscript/v16/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/babylonica/v2/5aUw9_i2qxWVCAE2aHjTqDJ0-VVMoEw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Babylonica" + } + ] + }, + { + "name": "Bad Script", + "fontFamily": "Bad Script, cursive", + "slug": "bad-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/badscript/v16/6NUT8F6PJgbFWQn47_x7pO0kyQ.ttf" - }, - { - "family": "Bahiana", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/bahiana/v19/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bahiana/v19/uU9PCBUV4YenPWJU3xLR2g.ttf" - }, - { - "family": "Bahianita", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/bahianita/v18/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bahianita/v18/yYLr0hTb3vuqqsBUgxWdxDHR.ttf" - }, - { - "family": "Bai Jamjuree", - "variants": [ - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf", - "300": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf", - "500": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf", - "600": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf", - "700": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf", - "200italic": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf", - "300italic": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf", - "regular": "http://fonts.gstatic.com/s/baijamjuree/v11/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf", - "italic": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf", - "500italic": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf", - "600italic": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf", - "700italic": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/baijamjuree/v11/LDI1apSCOBt_aeQQ7ftydoa8WMLO.ttf" - }, - { - "family": "Bakbak One", - "variants": [ "regular" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v6", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/bakbakone/v6/zOL54pXAl6RI-p_ardnuycRuv-hHkOs.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bakbakone/v6/zOL54pXAl6RI-p_ardnu-cVkuw.ttf" - }, - { - "family": "Ballet", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v25", - "lastModified": "2023-03-09", - "files": { - "regular": "http://fonts.gstatic.com/s/ballet/v25/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3C4G-EiAou6Y.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/badscript/v16/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bad Script" + } + ] + }, + { + "name": "Bahiana", + "fontFamily": "Bahiana, system-ui", + "slug": "bahiana", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bahiana/v19/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bahiana" + } + ] + }, + { + "name": "Bahianita", + "fontFamily": "Bahianita, system-ui", + "slug": "bahianita", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bahianita/v18/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bahianita" + } + ] + }, + { + "name": "Bai Jamjuree", + "fontFamily": "Bai Jamjuree, sans-serif", + "slug": "bai-jamjuree", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + } + ] + }, + { + "name": "Bakbak One", + "fontFamily": "Bakbak One, system-ui", + "slug": "bakbak-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bakbakone/v6/zOL54pXAl6RI-p_ardnuycRuv-hHkOs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bakbak One" + } + ] + }, + { + "name": "Ballet", + "fontFamily": "Ballet, cursive", + "slug": "ballet", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ballet/v25/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3O4C0Fg.ttf" - }, - { - "family": "Baloo 2", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "devanagari", "latin", "latin-ext", "vietnamese" ], - "version": "v16", - "lastModified": "2022-11-09", - "files": { - "500": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgozapv9Fat7WcN.ttf", - "600": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpv9Fat7WcN.ttf", - "700": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpv9Fat7WcN.ttf", - "800": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpv9Fat7WcN.ttf", - "regular": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgazapv9Fat7WcN.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgazZpu_lI.ttf" - }, - { - "family": "Baloo Bhai 2", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "gujarati", "latin", "latin-ext", "vietnamese" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNhohMXeCo-jsZzo.ttf", - "600": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNvYmMXeCo-jsZzo.ttf", - "700": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNs8mMXeCo-jsZzo.ttf", - "800": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNqgmMXeCo-jsZzo.ttf", - "regular": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighMXeCo-jsZzo.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighAXaIpw.ttf" - }, - { - "family": "Baloo Bhaijaan 2", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], - "version": "v14", - "lastModified": "2022-11-09", - "files": { - "500": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyjSqP4L4ppfcyC.ttf", - "600": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TxPTaP4L4ppfcyC.ttf", - "700": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8Tx2TaP4L4ppfcyC.ttf", - "800": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TwRTaP4L4ppfcyC.ttf", - "regular": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSqP4L4ppfcyC.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSpP5JY4.ttf" - }, - { - "family": "Baloo Bhaina 2", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "latin", "latin-ext", "oriya", "vietnamese" ], - "version": "v22", - "lastModified": "2022-11-09", - "files": { - "500": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEgMPvRfRLYWmZSA.ttf", - "600": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEbMTvRfRLYWmZSA.ttf", - "700": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEVcTvRfRLYWmZSA.ttf", - "800": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEMsTvRfRLYWmZSA.ttf", - "regular": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPvRfRLYWmZSA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPfRP5P.ttf" - }, - { - "family": "Baloo Chettan 2", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "latin", "latin-ext", "malayalam", "vietnamese" ], - "version": "v16", - "lastModified": "2022-11-09", - "files": { - "500": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CdCTO1oeH9xI2gc.ttf", - "600": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CTyUO1oeH9xI2gc.ttf", - "700": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CQWUO1oeH9xI2gc.ttf", - "800": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CWKUO1oeH9xI2gc.ttf", - "regular": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTO1oeH9xI2gc.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTC1sUGw.ttf" - }, - { - "family": "Baloo Da 2", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "bengali", "latin", "latin-ext", "vietnamese" ], - "version": "v17", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjA5sTNe55aRa7UE.ttf", - "600": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDVtjNe55aRa7UE.ttf", - "700": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDstjNe55aRa7UE.ttf", - "800": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjCLtjNe55aRa7UE.ttf", - "regular": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsTNe55aRa7UE.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsQNf7ZI.ttf" - }, - { - "family": "Baloo Paaji 2", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "gurmukhi", "latin", "latin-ext", "vietnamese" ], - "version": "v22", - "lastModified": "2022-11-09", - "files": { - "500": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", - "600": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", - "700": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", - "800": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", - "regular": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX74fybRUz1r5t.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX77fzZxE.ttf" - }, - { - "family": "Baloo Tamma 2", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "kannada", "latin", "latin-ext", "vietnamese" ], - "version": "v15", - "lastModified": "2022-11-09", - "files": { - "500": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMsuPp-0IF71SGC5.ttf", - "600": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMvCOZ-0IF71SGC5.ttf", - "700": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMv7OZ-0IF71SGC5.ttf", - "800": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMucOZ-0IF71SGC5.ttf", - "regular": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPp-0IF71SGC5.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPq-1Klo.ttf" - }, - { - "family": "Baloo Tammudu 2", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "latin", "latin-ext", "telugu", "vietnamese" ], - "version": "v22", - "lastModified": "2022-11-09", - "files": { - "500": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jc0e4c6PZSlGmAA.ttf", - "600": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JSEZ4c6PZSlGmAA.ttf", - "700": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JRgZ4c6PZSlGmAA.ttf", - "800": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JX8Z4c6PZSlGmAA.ttf", - "regular": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e4c6PZSlGmAA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e0c-FYQ.ttf" - }, - { - "family": "Baloo Thambi 2", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "latin", "latin-ext", "tamil", "vietnamese" ], - "version": "v16", - "lastModified": "2022-11-09", - "files": { - "500": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbK_8IzaQRG_n4osQ.ttf", - "600": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKE8UzaQRG_n4osQ.ttf", - "700": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKKsUzaQRG_n4osQ.ttf", - "800": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKTcUzaQRG_n4osQ.ttf", - "regular": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIzaQRG_n4osQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIDaA5C.ttf" - }, - { - "family": "Balsamiq Sans", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sZzZiAbNrN8SB3lQQX7PncyWUyBY9mAzLFRQI.ttf", - "regular": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf", - "italic": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sazZiAbNrN8SB3lQQX7PncwdsXJaVIDzvcXA.ttf", - "700italic": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsBxDAVQI4aA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sEzZiAbNrN8SB3lQQX7PncwdgXJQ.ttf" - }, - { - "family": "Balthazar", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEfyB7s.ttf" - }, - { - "family": "Bangers", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v21", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/bangers/v21/FeVQS0BTqb0h60ACL5la2bxii28.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bangers/v21/FeVQS0BTqb0h60ACH5hQ3Q.ttf" - }, - { - "family": "Barlow", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf", - "200": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf", - "300": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf", - "500": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf", - "600": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf", - "700": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf", - "800": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf", - "900": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf", - "100italic": "http://fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf", - "200italic": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf", - "300italic": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf", - "regular": "http://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf", - "italic": "http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf", - "500italic": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf", - "600italic": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf", - "700italic": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf", - "800italic": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf", - "900italic": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7E_Css8.ttf" - }, - { - "family": "Barlow Condensed", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf", - "200": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf", - "300": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf", - "500": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf", - "600": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf", - "700": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf", - "800": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf", - "900": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf", - "100italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf", - "200italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf", - "300italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf", - "regular": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf", - "italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf", - "500italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf", - "600italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf", - "700italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf", - "800italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf", - "900italic": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B6xfT3w.ttf" - }, - { - "family": "Barlow Semi Condensed", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf", - "200": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf", - "300": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf", - "500": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf", - "600": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf", - "700": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf", - "800": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf", - "900": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf", - "100italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf", - "200italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf", - "300italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf", - "regular": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf", - "italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf", - "500italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf", - "600italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf", - "700italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf", - "800italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf", - "900italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfoqv.ttf" - }, - { - "family": "Barriecito", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/barriecito/v17/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/barriecito/v17/WWXXlj-CbBOSLY2QTuY_GdQoZw.ttf" - }, - { - "family": "Barrio", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/barrio/v19/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/barrio/v19/wEO8EBXBk8hBIDi0dAwl.ttf" - }, - { - "family": "Basic", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKQN34lDVyR7D.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKTN26FQ.ttf" - }, - { - "family": "Baskervville", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-01-18", - "files": { - "regular": "http://fonts.gstatic.com/s/baskervville/v14/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf", - "italic": "http://fonts.gstatic.com/s/baskervville/v14/YA9Kr0yU4l_XOrogbkun3kQQtZmspPPZ9Mlt.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/baskervville/v14/YA9Ur0yU4l_XOrogbkun3kQQtpms.ttf" - }, - { - "family": "Battambang", - "variants": [ "100", "300", "regular", "700", "900" ], - "subsets": [ "khmer", "latin" ], - "version": "v24", - "lastModified": "2022-04-20", - "files": { - "100": "http://fonts.gstatic.com/s/battambang/v24/uk-kEGe7raEw-HjkzZabNhGp5w50_o9T7Q.ttf", - "300": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNtmLxyRa8oZK9I0.ttf", - "700": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf", - "900": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNvGOxyRa8oZK9I0.ttf", - "regular": "http://fonts.gstatic.com/s/battambang/v24/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/battambang/v24/uk-mEGe7raEw-HjkzZabPnSp5w.ttf" - }, - { - "family": "Baumans", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-04-20", - "files": { - "regular": "http://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3Qfpd_s4bg.ttf" - }, - { - "family": "Bayon", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin" ], - "version": "v29", - "lastModified": "2022-04-20", - "files": { - "regular": "http://fonts.gstatic.com/s/bayon/v29/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bayon/v29/9XUrlJNmn0LPFm-oMBI.ttf" - }, - { - "family": "Be Vietnam Pro", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HRUBX8YYbAiah8.ttf", - "200": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HT4JF8yT7wrcwap.ttf", - "300": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HScJ18yT7wrcwap.ttf", - "500": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf", - "600": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf", - "700": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSMIF8yT7wrcwap.ttf", - "800": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSQI18yT7wrcwap.ttf", - "900": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HS0Il8yT7wrcwap.ttf", - "100italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsSZZIneh-waA.ttf", - "200italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczRbgJdhapcUU.ttf", - "300italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwRbgJdhapcUU.ttf", - "regular": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVPSTAyLFyeg_IDWvOJmVES_EwwD3s6ZKAi.ttf", - "italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HwyBX8YYbAiah8.ttf", - "500italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxRbgJdhapcUU.ttf", - "600italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2RbgJdhapcUU.ttf", - "700italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3RbgJdhapcUU.ttf", - "800italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80RbgJdhapcUU.ttf", - "900italic": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1RbgJdhapcUU.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVPSTAyLFyeg_IDWvOJmVES_HwxBX8.ttf" - }, - { - "family": "Beau Rivage", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUlmg3NZp8K2sL.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ballet/v25/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3C4G-EiAou6Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ballet" + } + ] + }, + { + "name": "Baloo 2", + "fontFamily": "Baloo 2, system-ui", + "slug": "baloo-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgazapv9Fat7WcN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgozapv9Fat7WcN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpv9Fat7WcN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpv9Fat7WcN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpv9Fat7WcN.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + } + ] + }, + { + "name": "Baloo Bhai 2", + "fontFamily": "Baloo Bhai 2, system-ui", + "slug": "baloo-bhai-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighMXeCo-jsZzo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNhohMXeCo-jsZzo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNvYmMXeCo-jsZzo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNs8mMXeCo-jsZzo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNqgmMXeCo-jsZzo.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + } + ] + }, + { + "name": "Baloo Bhaijaan 2", + "fontFamily": "Baloo Bhaijaan 2, system-ui", + "slug": "baloo-bhaijaan-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSqP4L4ppfcyC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyjSqP4L4ppfcyC.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TxPTaP4L4ppfcyC.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8Tx2TaP4L4ppfcyC.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TwRTaP4L4ppfcyC.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + } + ] + }, + { + "name": "Baloo Bhaina 2", + "fontFamily": "Baloo Bhaina 2, system-ui", + "slug": "baloo-bhaina-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPvRfRLYWmZSA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEgMPvRfRLYWmZSA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEbMTvRfRLYWmZSA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEVcTvRfRLYWmZSA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEMsTvRfRLYWmZSA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + } + ] + }, + { + "name": "Baloo Chettan 2", + "fontFamily": "Baloo Chettan 2, system-ui", + "slug": "baloo-chettan-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTO1oeH9xI2gc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CdCTO1oeH9xI2gc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CTyUO1oeH9xI2gc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CQWUO1oeH9xI2gc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CWKUO1oeH9xI2gc.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + } + ] + }, + { + "name": "Baloo Da 2", + "fontFamily": "Baloo Da 2, system-ui", + "slug": "baloo-da-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsTNe55aRa7UE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + }, + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjA5sTNe55aRa7UE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + }, + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDVtjNe55aRa7UE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + }, + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDstjNe55aRa7UE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + }, + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjCLtjNe55aRa7UE.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + } + ] + }, + { + "name": "Baloo Paaji 2", + "fontFamily": "Baloo Paaji 2, system-ui", + "slug": "baloo-paaji-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX74fybRUz1r5t.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + } + ] + }, + { + "name": "Baloo Tamma 2", + "fontFamily": "Baloo Tamma 2, system-ui", + "slug": "baloo-tamma-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPp-0IF71SGC5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMsuPp-0IF71SGC5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMvCOZ-0IF71SGC5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMv7OZ-0IF71SGC5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMucOZ-0IF71SGC5.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + } + ] + }, + { + "name": "Baloo Tammudu 2", + "fontFamily": "Baloo Tammudu 2, system-ui", + "slug": "baloo-tammudu-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e4c6PZSlGmAA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jc0e4c6PZSlGmAA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JSEZ4c6PZSlGmAA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JRgZ4c6PZSlGmAA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JX8Z4c6PZSlGmAA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + } + ] + }, + { + "name": "Baloo Thambi 2", + "fontFamily": "Baloo Thambi 2, system-ui", + "slug": "baloo-thambi-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIzaQRG_n4osQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbK_8IzaQRG_n4osQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKE8UzaQRG_n4osQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKKsUzaQRG_n4osQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKTcUzaQRG_n4osQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + } + ] + }, + { + "name": "Balsamiq Sans", + "fontFamily": "Balsamiq Sans, system-ui", + "slug": "balsamiq-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Balsamiq Sans" + }, + { + "src": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sazZiAbNrN8SB3lQQX7PncwdsXJaVIDzvcXA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Balsamiq Sans" + }, + { + "src": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sZzZiAbNrN8SB3lQQX7PncyWUyBY9mAzLFRQI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Balsamiq Sans" + }, + { + "src": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsBxDAVQI4aA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Balsamiq Sans" + } + ] + }, + { + "name": "Balthazar", + "fontFamily": "Balthazar, serif", + "slug": "balthazar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Balthazar" + } + ] + }, + { + "name": "Bangers", + "fontFamily": "Bangers, system-ui", + "slug": "bangers", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bangers/v21/FeVQS0BTqb0h60ACL5la2bxii28.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bangers" + } + ] + }, + { + "name": "Barlow", + "fontFamily": "Barlow, sans-serif", + "slug": "barlow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Barlow" + } + ] + }, + { + "name": "Barlow Condensed", + "fontFamily": "Barlow Condensed, sans-serif", + "slug": "barlow-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + } + ] + }, + { + "name": "Barlow Semi Condensed", + "fontFamily": "Barlow Semi Condensed, sans-serif", + "slug": "barlow-semi-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + } + ] + }, + { + "name": "Barriecito", + "fontFamily": "Barriecito, system-ui", + "slug": "barriecito", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barriecito/v17/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barriecito" + } + ] + }, + { + "name": "Barrio", + "fontFamily": "Barrio, system-ui", + "slug": "barrio", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barrio/v19/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barrio" + } + ] + }, + { + "name": "Basic", + "fontFamily": "Basic, sans-serif", + "slug": "basic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKQN34lDVyR7D.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Basic" + } + ] + }, + { + "name": "Baskervville", + "fontFamily": "Baskervville, serif", + "slug": "baskervville", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baskervville/v14/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baskervville" + }, + { + "src": "http://fonts.gstatic.com/s/baskervville/v14/YA9Kr0yU4l_XOrogbkun3kQQtZmspPPZ9Mlt.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Baskervville" + } + ] + }, + { + "name": "Battambang", + "fontFamily": "Battambang, system-ui", + "slug": "battambang", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-kEGe7raEw-HjkzZabNhGp5w50_o9T7Q.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Battambang" + }, + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNtmLxyRa8oZK9I0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Battambang" + }, + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Battambang" + }, + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Battambang" + }, + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNvGOxyRa8oZK9I0.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Battambang" + } + ] + }, + { + "name": "Baumans", + "fontFamily": "Baumans, system-ui", + "slug": "baumans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baumans" + } + ] + }, + { + "name": "Bayon", + "fontFamily": "Bayon, sans-serif", + "slug": "bayon", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bayon/v29/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bayon" + } + ] + }, + { + "name": "Be Vietnam Pro", + "fontFamily": "Be Vietnam Pro, sans-serif", + "slug": "be-vietnam-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HRUBX8YYbAiah8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsSZZIneh-waA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HT4JF8yT7wrcwap.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczRbgJdhapcUU.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HScJ18yT7wrcwap.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwRbgJdhapcUU.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVPSTAyLFyeg_IDWvOJmVES_EwwD3s6ZKAi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HwyBX8YYbAiah8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxRbgJdhapcUU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2RbgJdhapcUU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSMIF8yT7wrcwap.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3RbgJdhapcUU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSQI18yT7wrcwap.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80RbgJdhapcUU.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HS0Il8yT7wrcwap.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1RbgJdhapcUU.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + } + ] + }, + { + "name": "Beau Rivage", + "fontFamily": "Beau Rivage, cursive", + "slug": "beau-rivage", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUllg2P54.ttf" - }, - { - "family": "Bebas Neue", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v9", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/bebasneue/v9/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bebasneue/v9/JTUSjIg69CK48gW7PXoo9W9hzg.ttf" - }, - { - "family": "Belgrano", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZfMEgL0.ttf" - }, - { - "family": "Bellefair", - "variants": [ "regular" ], - "subsets": [ "hebrew", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/bellefair/v14/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bellefair/v14/kJExBuYY6AAuhiXUxG1N_voy.ttf" - }, - { - "family": "Belleza", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4Bhcf4bw.ttf" - }, - { - "family": "Bellota", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "700", - "700italic" - ], - "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAID55kGMViblPtXs.ttf", - "700": "http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAIC5-kGMViblPtXs.ttf", - "300italic": "http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjHGEfjZtKpXulTQ.ttf", - "regular": "http://fonts.gstatic.com/s/bellota/v16/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf", - "italic": "http://fonts.gstatic.com/s/bellota/v16/MwQ0bhXl3_qEpiwAKJBbsEk7hbBWrA.ttf", - "700italic": "http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjDGYfjZtKpXulTQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bellota/v16/MwQ2bhXl3_qEpiwAKJNbsA.ttf" - }, - { - "family": "Bellota Text", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "700", - "700italic" - ], - "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5VfsqfQXwQy6yxg.ttf", - "700": "http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5RfwqfQXwQy6yxg.ttf", - "300italic": "http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_0YSuixmYK.ttf", - "regular": "http://fonts.gstatic.com/s/bellotatext/v16/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf", - "italic": "http://fonts.gstatic.com/s/bellotatext/v16/0FlNVP2VnlWS4f3-UE9hHXMx-9kKVyv8Sjer.ttf", - "700italic": "http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_0YSuixmYK.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bellotatext/v16/0FlTVP2VnlWS4f3-UE9hHXMx-NkK.ttf" - }, - { - "family": "BenchNine", - "variants": [ "300", "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf", - "700": "http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf", - "regular": "http://fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosbVslx.ttf" - }, - { - "family": "Benne", - "variants": [ "regular" ], - "subsets": [ "kannada", "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/benne/v22/L0xzDFAhn18E6Vjxlt6qTDBN.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/benne/v22/L0xzDFAhn18E6WjwnNo.ttf" - }, - { - "family": "Bentham", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/bentham/v18/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bentham/v18/VdGeAZQPEpYfmHglGW0xDA.ttf" - }, - { - "family": "Berkshire Swash", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/berkshireswash/v16/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUlmg3NZp8K2sL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Beau Rivage" + } + ] + }, + { + "name": "Bebas Neue", + "fontFamily": "Bebas Neue, sans-serif", + "slug": "bebas-neue", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bebasneue/v10/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bebas Neue" + } + ] + }, + { + "name": "Belgrano", + "fontFamily": "Belgrano, serif", + "slug": "belgrano", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Belgrano" + } + ] + }, + { + "name": "Bellefair", + "fontFamily": "Bellefair, serif", + "slug": "bellefair", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bellefair/v14/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bellefair" + } + ] + }, + { + "name": "Belleza", + "fontFamily": "Belleza, sans-serif", + "slug": "belleza", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Belleza" + } + ] + }, + { + "name": "Bellota", + "fontFamily": "Bellota, system-ui", + "slug": "bellota", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAID55kGMViblPtXs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjHGEfjZtKpXulTQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQ0bhXl3_qEpiwAKJBbsEk7hbBWrA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAIC5-kGMViblPtXs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjDGYfjZtKpXulTQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bellota" + } + ] + }, + { + "name": "Bellota Text", + "fontFamily": "Bellota Text, system-ui", + "slug": "bellota-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5VfsqfQXwQy6yxg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_0YSuixmYK.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlNVP2VnlWS4f3-UE9hHXMx-9kKVyv8Sjer.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5RfwqfQXwQy6yxg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_0YSuixmYK.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bellota Text" + } + ] + }, + { + "name": "BenchNine", + "fontFamily": "BenchNine, sans-serif", + "slug": "benchnine", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "BenchNine" + }, + { + "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BenchNine" + }, + { + "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BenchNine" + } + ] + }, + { + "name": "Benne", + "fontFamily": "Benne, serif", + "slug": "benne", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/benne/v22/L0xzDFAhn18E6Vjxlt6qTDBN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Benne" + } + ] + }, + { + "name": "Bentham", + "fontFamily": "Bentham, serif", + "slug": "bentham", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bentham/v18/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bentham" + } + ] + }, + { + "name": "Berkshire Swash", + "fontFamily": "Berkshire Swash, cursive", + "slug": "berkshire-swash", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/berkshireswash/v16/ptRRTi-cavZOGqCvnNJDl5m5XmN_rM42.ttf" - }, - { - "family": "Besley", - "variants": [ - "regular", - "500", - "600", - "700", - "800", - "900", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2023-03-21", - "files": { - "500": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fYTBSdRoFPOl8-E.ttf", - "600": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fWjGSdRoFPOl8-E.ttf", - "700": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fVHGSdRoFPOl8-E.ttf", - "800": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fTbGSdRoFPOl8-E.ttf", - "900": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fR_GSdRoFPOl8-E.ttf", - "regular": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBSdRoFPOl8-E.ttf", - "italic": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CoZdiENGg4-E04A.ttf", - "500italic": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Ck5diENGg4-E04A.ttf", - "600italic": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Cf5BiENGg4-E04A.ttf", - "700italic": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CRpBiENGg4-E04A.ttf", - "800italic": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CIZBiENGg4-E04A.ttf", - "900italic": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CCJBiENGg4-E04A.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBedViEA.ttf" - }, - { - "family": "Beth Ellen", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-04-20", - "files": { - "regular": "http://fonts.gstatic.com/s/bethellen/v17/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/berkshireswash/v16/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Berkshire Swash" + } + ] + }, + { + "name": "Besley", + "fontFamily": "Besley, serif", + "slug": "besley", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBSdRoFPOl8-E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fYTBSdRoFPOl8-E.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fWjGSdRoFPOl8-E.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fVHGSdRoFPOl8-E.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fTbGSdRoFPOl8-E.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fR_GSdRoFPOl8-E.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CoZdiENGg4-E04A.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Ck5diENGg4-E04A.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Cf5BiENGg4-E04A.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CRpBiENGg4-E04A.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CIZBiENGg4-E04A.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CCJBiENGg4-E04A.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Besley" + } + ] + }, + { + "name": "Beth Ellen", + "fontFamily": "Beth Ellen, cursive", + "slug": "beth-ellen", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bethellen/v17/WwkbxPW2BE-3rb_JNT-qIIEoUA.ttf" - }, - { - "family": "Bevan", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v21", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/bevan/v21/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf", - "italic": "http://fonts.gstatic.com/s/bevan/v21/4iCt6KZ0a9NXjG8YWC7Zs0SJD4U.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bevan/v21/4iCj6KZ0a9NXjG8bWC4.ttf" - }, - { - "family": "BhuTuka Expanded One", - "variants": [ "regular" ], - "subsets": [ "gurmukhi", "latin", "latin-ext" ], - "version": "v3", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/bhutukaexpandedone/v3/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJCyX8pg_RVH1.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bhutukaexpandedone/v3/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJByW-Jw.ttf" - }, - { - "family": "Big Shoulders Display", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v19", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY86JF46SRP4yZQ.ttf", - "200": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ87JF46SRP4yZQ.ttf", - "300": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YddE7JF46SRP4yZQ.ttf", - "500": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0Ydb07JF46SRP4yZQ.ttf", - "600": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdVE8JF46SRP4yZQ.ttf", - "700": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdWg8JF46SRP4yZQ.ttf", - "800": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ88JF46SRP4yZQ.ttf", - "900": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdSY8JF46SRP4yZQ.ttf", - "regular": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87JF46SRP4yZQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87FF8wTQ.ttf" - }, - { - "family": "Big Shoulders Inline Display", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v25", - "lastModified": "2023-03-09", - "files": { - "100": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBEnR5yPc2Huux.ttf", - "200": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBE3R5yPc2Huux.ttf", - "300": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0mfE3R5yPc2Huux.ttf", - "500": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nzE3R5yPc2Huux.ttf", - "600": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kfFHR5yPc2Huux.ttf", - "700": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kmFHR5yPc2Huux.ttf", - "800": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBFHR5yPc2Huux.ttf", - "900": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0loFHR5yPc2Huux.ttf", - "regular": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE3R5yPc2Huux.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE0R4wvM.ttf" - }, - { - "family": "Big Shoulders Inline Text", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v24", - "lastModified": "2023-03-09", - "files": { - "100": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0yqGN7Y6Jsc8c.ttf", - "200": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0y6GN7Y6Jsc8c.ttf", - "300": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgbqy6GN7Y6Jsc8c.ttf", - "500": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgaGy6GN7Y6Jsc8c.ttf", - "600": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZqzKGN7Y6Jsc8c.ttf", - "700": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZTzKGN7Y6Jsc8c.ttf", - "800": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0zKGN7Y6Jsc8c.ttf", - "900": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgYdzKGN7Y6Jsc8c.ttf", - "regular": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y6GN7Y6Jsc8c.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y5GM54o.ttf" - }, - { - "family": "Big Shoulders Stencil Display", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0nPKHznJucP9w.ttf", - "200": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0jPKHznJucP9w.ttf", - "300": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_ZUjPKHznJucP9w.ttf", - "500": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_CUjPKHznJucP9w.ttf", - "600": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_5U_PKHznJucP9w.ttf", - "700": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_3E_PKHznJucP9w.ttf", - "800": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0_PKHznJucP9w.ttf", - "900": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_kk_PKHznJucP9w.ttf", - "regular": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0jPKHznJucP9w.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0j_KXbj.ttf" - }, - { - "family": "Big Shoulders Stencil Text", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04XIGS_Py_AWbQ.ttf", - "200": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4TIGS_Py_AWbQ.ttf", - "300": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRjYTIGS_Py_AWbQ.ttf", - "500": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR4YTIGS_Py_AWbQ.ttf", - "600": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRDYPIGS_Py_AWbQ.ttf", - "700": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRNIPIGS_Py_AWbQ.ttf", - "800": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4PIGS_Py_AWbQ.ttf", - "900": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGReoPIGS_Py_AWbQ.ttf", - "regular": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04TIGS_Py_AWbQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04T4GCXL.ttf" - }, - { - "family": "Big Shoulders Text", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v22", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-r3TIPNl6P2pc.ttf", - "200": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-q3TIPNl6P2pc.ttf", - "300": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3dGq3TIPNl6P2pc.ttf", - "500": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3b2q3TIPNl6P2pc.ttf", - "600": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3VGt3TIPNl6P2pc.ttf", - "700": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Wit3TIPNl6P2pc.ttf", - "800": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-t3TIPNl6P2pc.ttf", - "900": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Sat3TIPNl6P2pc.ttf", - "regular": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q3TIPNl6P2pc.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q7TMFMg.ttf" - }, - { - "family": "Bigelow Rules", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/bigelowrules/v24/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bigelowrules/v24/RrQWboly8iR_I3KWSzeRuN0zf4YIGw.ttf" - }, - { - "family": "Bigshot One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v25", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/bigshotone/v25/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bigshotone/v25/u-470qukhRkkO6BD_7cM_jxvWwY.ttf" - }, - { - "family": "Bilbo", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ210hpIRz4wxE.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bethellen/v17/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Beth Ellen" + } + ] + }, + { + "name": "Bevan", + "fontFamily": "Bevan, system-ui", + "slug": "bevan", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bevan/v21/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bevan" + }, + { + "src": "http://fonts.gstatic.com/s/bevan/v21/4iCt6KZ0a9NXjG8YWC7Zs0SJD4U.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bevan" + } + ] + }, + { + "name": "BhuTuka Expanded One", + "fontFamily": "BhuTuka Expanded One, system-ui", + "slug": "bhutuka-expanded-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bhutukaexpandedone/v3/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJCyX8pg_RVH1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BhuTuka Expanded One" + } + ] + }, + { + "name": "Big Shoulders Display", + "fontFamily": "Big Shoulders Display, system-ui", + "slug": "big-shoulders-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY86JF46SRP4yZQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ87JF46SRP4yZQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YddE7JF46SRP4yZQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87JF46SRP4yZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0Ydb07JF46SRP4yZQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdVE8JF46SRP4yZQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdWg8JF46SRP4yZQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ88JF46SRP4yZQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdSY8JF46SRP4yZQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + } + ] + }, + { + "name": "Big Shoulders Inline Display", + "fontFamily": "Big Shoulders Inline Display, system-ui", + "slug": "big-shoulders-inline-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBEnR5yPc2Huux.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBE3R5yPc2Huux.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0mfE3R5yPc2Huux.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE3R5yPc2Huux.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nzE3R5yPc2Huux.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kfFHR5yPc2Huux.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kmFHR5yPc2Huux.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBFHR5yPc2Huux.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0loFHR5yPc2Huux.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + } + ] + }, + { + "name": "Big Shoulders Inline Text", + "fontFamily": "Big Shoulders Inline Text, system-ui", + "slug": "big-shoulders-inline-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0yqGN7Y6Jsc8c.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0y6GN7Y6Jsc8c.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgbqy6GN7Y6Jsc8c.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y6GN7Y6Jsc8c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgaGy6GN7Y6Jsc8c.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZqzKGN7Y6Jsc8c.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZTzKGN7Y6Jsc8c.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0zKGN7Y6Jsc8c.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgYdzKGN7Y6Jsc8c.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + } + ] + }, + { + "name": "Big Shoulders Stencil Display", + "fontFamily": "Big Shoulders Stencil Display, system-ui", + "slug": "big-shoulders-stencil-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0nPKHznJucP9w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0jPKHznJucP9w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_ZUjPKHznJucP9w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0jPKHznJucP9w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_CUjPKHznJucP9w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_5U_PKHznJucP9w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_3E_PKHznJucP9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0_PKHznJucP9w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_kk_PKHznJucP9w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + } + ] + }, + { + "name": "Big Shoulders Stencil Text", + "fontFamily": "Big Shoulders Stencil Text, system-ui", + "slug": "big-shoulders-stencil-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04XIGS_Py_AWbQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4TIGS_Py_AWbQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRjYTIGS_Py_AWbQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04TIGS_Py_AWbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR4YTIGS_Py_AWbQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRDYPIGS_Py_AWbQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRNIPIGS_Py_AWbQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4PIGS_Py_AWbQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGReoPIGS_Py_AWbQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + } + ] + }, + { + "name": "Big Shoulders Text", + "fontFamily": "Big Shoulders Text, system-ui", + "slug": "big-shoulders-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-r3TIPNl6P2pc.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-q3TIPNl6P2pc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3dGq3TIPNl6P2pc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q3TIPNl6P2pc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3b2q3TIPNl6P2pc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3VGt3TIPNl6P2pc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Wit3TIPNl6P2pc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-t3TIPNl6P2pc.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Sat3TIPNl6P2pc.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + } + ] + }, + { + "name": "Bigelow Rules", + "fontFamily": "Bigelow Rules, system-ui", + "slug": "bigelow-rules", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigelowrules/v24/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bigelow Rules" + } + ] + }, + { + "name": "Bigshot One", + "fontFamily": "Bigshot One, system-ui", + "slug": "bigshot-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshotone/v25/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bigshot One" + } + ] + }, + { + "name": "Bilbo", + "fontFamily": "Bilbo, cursive", + "slug": "bilbo", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ220groA.ttf" - }, - { - "family": "Bilbo Swash Caps", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ210hpIRz4wxE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bilbo" + } + ] + }, + { + "name": "Bilbo Swash Caps", + "fontFamily": "Bilbo Swash Caps, cursive", + "slug": "bilbo-swash-caps", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdmALiog.ttf" - }, - { - "family": "BioRhyme", - "variants": [ "200", "300", "regular", "700", "800" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2023-05-02", - "files": { - "200": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf", - "300": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf", - "700": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf", - "800": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf", - "regular": "http://fonts.gstatic.com/s/biorhyme/v13/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/biorhyme/v13/1cXwaULHBpDMsHYW_ExHr1E.ttf" - }, - { - "family": "BioRhyme Expanded", - "variants": [ "200", "300", "regular", "700", "800" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf", - "300": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf", - "700": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf", - "800": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf", - "regular": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dQIE1zZzytGswgU577CDY9LjbffxSVT3Q.ttf" - }, - { - "family": "Birthstone", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v11", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/birthstone/v11/8AtsGs2xO4yLRhy87sv_HLn5jRfZHzM.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bilbo Swash Caps" + } + ] + }, + { + "name": "BioRhyme", + "fontFamily": "BioRhyme, serif", + "slug": "biorhyme", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + }, + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + }, + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + }, + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + }, + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + } + ] + }, + { + "name": "BioRhyme Expanded", + "fontFamily": "BioRhyme Expanded, serif", + "slug": "biorhyme-expanded", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + } + ] + }, + { + "name": "Birthstone", + "fontFamily": "Birthstone, cursive", + "slug": "birthstone", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/birthstone/v11/8AtsGs2xO4yLRhy87sv_LLjziQ.ttf" - }, - { - "family": "Birthstone Bounce", - "variants": [ "regular", "500" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v9", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6SaxZF43lIvTWrktHOTBJZGH7dEd29MacQJZP1LmD9.ttf", - "regular": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6XaxZF43lIvTWrktHOTBJZGH7dEeVJGIMYDo_8.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/birthstone/v11/8AtsGs2xO4yLRhy87sv_HLn5jRfZHzM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Birthstone" + } + ] + }, + { + "name": "Birthstone Bounce", + "fontFamily": "Birthstone Bounce, cursive", + "slug": "birthstone-bounce", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6XaxZF43lIvTWrktHOTBJZGH7dEdVIEoc.ttf" - }, - { - "family": "Biryani", - "variants": [ "200", "300", "regular", "600", "700", "800", "900" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf", - "300": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf", - "600": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf", - "700": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf", - "800": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf", - "900": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf", - "regular": "http://fonts.gstatic.com/s/biryani/v13/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/biryani/v13/hv-WlzNxIFoO84YdfU0TOQ.ttf" - }, - { - "family": "Bitter", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v32", - "lastModified": "2022-12-08", - "files": { - "100": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCL_EXFh2reU.ttf", - "200": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCL_EXFh2reU.ttf", - "300": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCL_EXFh2reU.ttf", - "500": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCL_EXFh2reU.ttf", - "600": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCL_EXFh2reU.ttf", - "700": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL_EXFh2reU.ttf", - "800": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCL_EXFh2reU.ttf", - "900": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCL_EXFh2reU.ttf", - "regular": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL_EXFh2reU.ttf", - "100italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OWHpzveWxBw.ttf", - "200italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOWHpzveWxBw.ttf", - "300italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOWHpzveWxBw.ttf", - "italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWHpzveWxBw.ttf", - "500italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOWHpzveWxBw.ttf", - "600italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOWHpzveWxBw.ttf", - "700italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOWHpzveWxBw.ttf", - "800italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOWHpzveWxBw.ttf", - "900italic": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOWHpzveWxBw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfOL7OWA.ttf" - }, - { - "family": "Black And White Picture", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/blackandwhitepicture/v22/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/blackandwhitepicture/v22/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqL5GZ8c.ttf" - }, - { - "family": "Black Han Sans", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/blackhansans/v15/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/blackhansans/v15/ea8Aad44WunzF9a-dL6toA8r8kqUK3A.ttf" - }, - { - "family": "Black Ops One", - "variants": [ "regular" ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3aD3bsg.ttf" - }, - { - "family": "Blaka", - "variants": [ "regular" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v5", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/blaka/v5/8vIG7w8722p_6kdr20D2FV5e.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/blaka/v5/8vIG7w8722p_6ndq0UQ.ttf" - }, - { - "family": "Blaka Hollow", - "variants": [ "regular" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v5", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/blakahollow/v5/MCoUzAL91sjRE2FsKsxUtezYB9oFyW_-oA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/blakahollow/v5/MCoUzAL91sjRE2FsKsxUtezoBtAB.ttf" - }, - { - "family": "Blaka Ink", - "variants": [ "regular" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v6", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/blakaink/v6/AlZy_zVVtpj22Znag2chdXf4XB0Tow.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/blakaink/v6/AlZy_zVVtpj22Znag2cRdH38.ttf" - }, - { - "family": "Blinker", - "variants": [ - "100", - "200", - "300", - "regular", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/blinker/v13/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf", - "200": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf", - "300": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf", - "600": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf", - "700": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf", - "800": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf", - "900": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf", - "regular": "http://fonts.gstatic.com/s/blinker/v13/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/blinker/v13/cIf9MaFatEE-VTaP9CihZA.ttf" - }, - { - "family": "Bodoni Moda", - "variants": [ - "regular", - "500", - "600", - "700", - "800", - "900", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2023-03-21", - "files": { - "500": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oXzawIBytVjMYwE.ttf", - "600": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oZDdwIBytVjMYwE.ttf", - "700": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIBytVjMYwE.ttf", - "800": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oc7dwIBytVjMYwE.ttf", - "900": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oefdwIBytVjMYwE.ttf", - "regular": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIBytVjMYwE.ttf", - "italic": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4sXrJcwHqoQ.ttf", - "500italic": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZGsN4sXrJcwHqoQ.ttf", - "600italic": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZ9sR4sXrJcwHqoQ.ttf", - "700italic": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZz8R4sXrJcwHqoQ.ttf", - "800italic": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZqMR4sXrJcwHqoQ.ttf", - "900italic": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZgcR4sXrJcwHqoQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7a8IF4sQ.ttf" - }, - { - "family": "Bokor", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin" ], - "version": "v30", - "lastModified": "2022-04-21", - "files": { - "regular": "http://fonts.gstatic.com/s/bokor/v30/m8JcjfpeeaqTiR2WdInbcaxE.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bokor/v30/m8JcjfpeeaqTiS2Xfo0.ttf" - }, - { - "family": "Bona Nova", - "variants": [ "regular", "italic", "700" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "hebrew", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/bonanova/v10/B50IF7ZCpX7fcHfvIUBxN4dOFISeJY8GgQ.ttf", - "regular": "http://fonts.gstatic.com/s/bonanova/v10/B50NF7ZCpX7fcHfvIUBJi6hqHK-CLA.ttf", - "italic": "http://fonts.gstatic.com/s/bonanova/v10/B50LF7ZCpX7fcHfvIUB5iaJuPqqSLJYf.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bonanova/v10/B50NF7ZCpX7fcHfvIUB5iqJu.ttf" - }, - { - "family": "Bonbon", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v26", - "lastModified": "2022-04-21", - "files": { - "regular": "http://fonts.gstatic.com/s/bonbon/v26/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6XaxZF43lIvTWrktHOTBJZGH7dEeVJGIMYDo_8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Birthstone Bounce" + }, + { + "src": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6SaxZF43lIvTWrktHOTBJZGH7dEd29MacQJZP1LmD9.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Birthstone Bounce" + } + ] + }, + { + "name": "Biryani", + "fontFamily": "Biryani, sans-serif", + "slug": "biryani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Biryani" + } + ] + }, + { + "name": "Bitter", + "fontFamily": "Bitter, serif", + "slug": "bitter", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCL_EXFh2reU.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCL_EXFh2reU.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCL_EXFh2reU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL_EXFh2reU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCL_EXFh2reU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCL_EXFh2reU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL_EXFh2reU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCL_EXFh2reU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCL_EXFh2reU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OWHpzveWxBw.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOWHpzveWxBw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOWHpzveWxBw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWHpzveWxBw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOWHpzveWxBw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOWHpzveWxBw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOWHpzveWxBw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOWHpzveWxBw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOWHpzveWxBw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Bitter" + } + ] + }, + { + "name": "Black And White Picture", + "fontFamily": "Black And White Picture, sans-serif", + "slug": "black-and-white-picture", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blackandwhitepicture/v22/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Black And White Picture" + } + ] + }, + { + "name": "Black Han Sans", + "fontFamily": "Black Han Sans, sans-serif", + "slug": "black-han-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blackhansans/v15/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Black Han Sans" + } + ] + }, + { + "name": "Black Ops One", + "fontFamily": "Black Ops One, system-ui", + "slug": "black-ops-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Black Ops One" + } + ] + }, + { + "name": "Blaka", + "fontFamily": "Blaka, system-ui", + "slug": "blaka", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blaka/v5/8vIG7w8722p_6kdr20D2FV5e.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Blaka" + } + ] + }, + { + "name": "Blaka Hollow", + "fontFamily": "Blaka Hollow, system-ui", + "slug": "blaka-hollow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blakahollow/v5/MCoUzAL91sjRE2FsKsxUtezYB9oFyW_-oA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Blaka Hollow" + } + ] + }, + { + "name": "Blaka Ink", + "fontFamily": "Blaka Ink, system-ui", + "slug": "blaka-ink", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blakaink/v6/AlZy_zVVtpj22Znag2chdXf4XB0Tow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Blaka Ink" + } + ] + }, + { + "name": "Blinker", + "fontFamily": "Blinker, sans-serif", + "slug": "blinker", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Blinker" + } + ] + }, + { + "name": "Bodoni Moda", + "fontFamily": "Bodoni Moda, serif", + "slug": "bodoni-moda", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIBytVjMYwE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oXzawIBytVjMYwE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oZDdwIBytVjMYwE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIBytVjMYwE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oc7dwIBytVjMYwE.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oefdwIBytVjMYwE.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4sXrJcwHqoQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZGsN4sXrJcwHqoQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZ9sR4sXrJcwHqoQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZz8R4sXrJcwHqoQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZqMR4sXrJcwHqoQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZgcR4sXrJcwHqoQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + } + ] + }, + { + "name": "Bokor", + "fontFamily": "Bokor, system-ui", + "slug": "bokor", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bokor/v30/m8JcjfpeeaqTiR2WdInbcaxE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bokor" + } + ] + }, + { + "name": "Bona Nova", + "fontFamily": "Bona Nova, serif", + "slug": "bona-nova", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bonanova/v10/B50NF7ZCpX7fcHfvIUBJi6hqHK-CLA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bona Nova" + }, + { + "src": "http://fonts.gstatic.com/s/bonanova/v10/B50LF7ZCpX7fcHfvIUB5iaJuPqqSLJYf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bona Nova" + }, + { + "src": "http://fonts.gstatic.com/s/bonanova/v10/B50IF7ZCpX7fcHfvIUBxN4dOFISeJY8GgQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bona Nova" + } + ] + }, + { + "name": "Bonbon", + "fontFamily": "Bonbon, cursive", + "slug": "bonbon", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bonbon/v26/0FlVVPeVlFec4eePcTsE.ttf" - }, - { - "family": "Bonheur Royale", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v10", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/bonheurroyale/v10/c4m51nt_GMTrtX-b9GcG4-YRmYK_c0f1N5Ij.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bonbon/v26/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bonbon" + } + ] + }, + { + "name": "Bonheur Royale", + "fontFamily": "Bonheur Royale, cursive", + "slug": "bonheur-royale", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bonheurroyale/v10/c4m51nt_GMTrtX-b9GcG4-YRmbK-eUM.ttf" - }, - { - "family": "Boogaloo", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/boogaloo/v19/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/boogaloo/v19/kmK-Zq45GAvOdnaW6y1E9y4.ttf" - }, - { - "family": "Bowlby One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/bowlbyone/v19/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bowlbyone/v19/taiPGmVuC4y96PFeqp8sqo-I-Q.ttf" - }, - { - "family": "Bowlby One SC", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/bowlbyonesc/v20/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bowlbyonesc/v20/DtVlJxerQqQm37tzN3wMug9P_gn2pw.ttf" - }, - { - "family": "Braah One", - "variants": [ "regular" ], - "subsets": [ "gurmukhi", "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/braahone/v2/KFOlCnWUpt6LsxxxiylvAx05IsDqlA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/braahone/v2/KFOlCnWUpt6LsxxxiylfAhc9.ttf" - }, - { - "family": "Brawler", - "variants": [ "regular", "700" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/brawler/v19/xn7lYHE3xXewAscGiryUb932eNaPfk8.ttf", - "regular": "http://fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGggGxTw.ttf" - }, - { - "family": "Bree Serif", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluA96zp4g.ttf" - }, - { - "family": "Bruno Ace", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v1", - "lastModified": "2023-04-20", - "files": { - "regular": "http://fonts.gstatic.com/s/brunoace/v1/WwkcxPa2E06x4trkOj_kMKoMWNMg3Q.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/brunoace/v1/WwkcxPa2E06x4trkOj_UMaAI.ttf" - }, - { - "family": "Bruno Ace SC", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v1", - "lastModified": "2023-04-20", - "files": { - "regular": "http://fonts.gstatic.com/s/brunoacesc/v1/ptROTiycffFLBuiHjdJDl634LSFrpe8uZA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/brunoacesc/v1/ptROTiycffFLBuiHjdJDl63ILCtv.ttf" - }, - { - "family": "Brygada 1918", - "variants": [ - "regular", - "500", - "600", - "700", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v21", - "lastModified": "2023-01-06", - "files": { - "500": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y12f-V8Wu5O3gbo.ttf", - "600": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y7GY-V8Wu5O3gbo.ttf", - "700": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y4iY-V8Wu5O3gbo.ttf", - "regular": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-f-V8Wu5O3gbo.ttf", - "italic": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcERwcv7GykboaLg.ttf", - "500italic": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcIxwcv7GykboaLg.ttf", - "600italic": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfczxscv7GykboaLg.ttf", - "700italic": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfc9hscv7GykboaLg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-fyV4cvw.ttf" - }, - { - "family": "Bubblegum Sans", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/bubblegumsans/v16/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bubblegumsans/v16/AYCSpXb_Z9EORv1M5QTjEzMEteaGxIc.ttf" - }, - { - "family": "Bubbler One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/bubblerone/v20/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bubblerone/v20/f0Xy0eqj68ppQV9KBLmAotHG0ac.ttf" - }, - { - "family": "Buda", - "variants": [ "300" ], - "subsets": [ "latin" ], - "version": "v25", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/buda/v25/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/buda/v25/GFDqWAN8mnyIJSSrK7QLqw.ttf" - }, - { - "family": "Buenard", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/buenard/v17/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf", - "regular": "http://fonts.gstatic.com/s/buenard/v17/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/buenard/v17/OD5DuM6Cyma8FnnsDzb3rA.ttf" - }, - { - "family": "Bungee", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/bungee/v11/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bungee/v11/N0bU2SZBIuF2PU_0C3Rw.ttf" - }, - { - "family": "Bungee Hairline", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v19", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/bungeehairline/v19/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bungeehairline/v19/snfys0G548t04270a_ljTLUVrv-LYReZ.ttf" - }, - { - "family": "Bungee Inline", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v12", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/bungeeinline/v12/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bungeeinline/v12/Gg8zN58UcgnlCweMrih332VuPGN__A.ttf" - }, - { - "family": "Bungee Outline", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/bungeeoutline/v18/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bungeeoutline/v18/_6_mEDvmVP24UvU2MyiGDslL3Tg2aBY.ttf" - }, - { - "family": "Bungee Shade", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/bungeeshade/v11/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bungeeshade/v11/DtVkJxarWL0t2KdzK3oI_jkc7yjW.ttf" - }, - { - "family": "Bungee Spice", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v8", - "lastModified": "2022-09-14", - "files": { - "regular": "http://fonts.gstatic.com/s/bungeespice/v8/nwpTtK2nIhxE0q-IwgSpZBqCzyI-aMPF7Q.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/bungeespice/v8/nwpTtK2nIhxE0q-IwgSpZBqyzig6.ttf" - }, - { - "family": "Butcherman", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb5zS5rw.ttf" - }, - { - "family": "Butterfly Kids", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/butterflykids/v21/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bonheurroyale/v10/c4m51nt_GMTrtX-b9GcG4-YRmYK_c0f1N5Ij.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bonheur Royale" + } + ] + }, + { + "name": "Boogaloo", + "fontFamily": "Boogaloo, system-ui", + "slug": "boogaloo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/boogaloo/v19/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Boogaloo" + } + ] + }, + { + "name": "Bowlby One", + "fontFamily": "Bowlby One, system-ui", + "slug": "bowlby-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bowlbyone/v19/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bowlby One" + } + ] + }, + { + "name": "Bowlby One SC", + "fontFamily": "Bowlby One SC, system-ui", + "slug": "bowlby-one-sc", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bowlbyonesc/v20/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bowlby One SC" + } + ] + }, + { + "name": "Braah One", + "fontFamily": "Braah One, sans-serif", + "slug": "braah-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/braahone/v2/KFOlCnWUpt6LsxxxiylvAx05IsDqlA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Braah One" + } + ] + }, + { + "name": "Brawler", + "fontFamily": "Brawler, serif", + "slug": "brawler", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Brawler" + }, + { + "src": "http://fonts.gstatic.com/s/brawler/v19/xn7lYHE3xXewAscGiryUb932eNaPfk8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Brawler" + } + ] + }, + { + "name": "Bree Serif", + "fontFamily": "Bree Serif, serif", + "slug": "bree-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bree Serif" + } + ] + }, + { + "name": "Bruno Ace", + "fontFamily": "Bruno Ace, system-ui", + "slug": "bruno-ace", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/brunoace/v1/WwkcxPa2E06x4trkOj_kMKoMWNMg3Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bruno Ace" + } + ] + }, + { + "name": "Bruno Ace SC", + "fontFamily": "Bruno Ace SC, system-ui", + "slug": "bruno-ace-sc", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/brunoacesc/v1/ptROTiycffFLBuiHjdJDl634LSFrpe8uZA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bruno Ace SC" + } + ] + }, + { + "name": "Brygada 1918", + "fontFamily": "Brygada 1918, serif", + "slug": "brygada-1918", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-f-V8Wu5O3gbo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y12f-V8Wu5O3gbo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y7GY-V8Wu5O3gbo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y4iY-V8Wu5O3gbo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcERwcv7GykboaLg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcIxwcv7GykboaLg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfczxscv7GykboaLg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfc9hscv7GykboaLg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Brygada 1918" + } + ] + }, + { + "name": "Bubblegum Sans", + "fontFamily": "Bubblegum Sans, system-ui", + "slug": "bubblegum-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bubblegumsans/v16/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bubblegum Sans" + } + ] + }, + { + "name": "Bubbler One", + "fontFamily": "Bubbler One, sans-serif", + "slug": "bubbler-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bubblerone/v20/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bubbler One" + } + ] + }, + { + "name": "Buda", + "fontFamily": "Buda, system-ui", + "slug": "buda", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/buda/v25/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Buda" + } + ] + }, + { + "name": "Buenard", + "fontFamily": "Buenard, serif", + "slug": "buenard", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/buenard/v17/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Buenard" + }, + { + "src": "http://fonts.gstatic.com/s/buenard/v17/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Buenard" + } + ] + }, + { + "name": "Bungee", + "fontFamily": "Bungee, system-ui", + "slug": "bungee", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungee/v11/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee" + } + ] + }, + { + "name": "Bungee Hairline", + "fontFamily": "Bungee Hairline, system-ui", + "slug": "bungee-hairline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeehairline/v19/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Hairline" + } + ] + }, + { + "name": "Bungee Inline", + "fontFamily": "Bungee Inline, system-ui", + "slug": "bungee-inline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeeinline/v12/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Inline" + } + ] + }, + { + "name": "Bungee Outline", + "fontFamily": "Bungee Outline, system-ui", + "slug": "bungee-outline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeeoutline/v18/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Outline" + } + ] + }, + { + "name": "Bungee Shade", + "fontFamily": "Bungee Shade, system-ui", + "slug": "bungee-shade", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeeshade/v11/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Shade" + } + ] + }, + { + "name": "Bungee Spice", + "fontFamily": "Bungee Spice, system-ui", + "slug": "bungee-spice", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeespice/v8/nwpTtK2nIhxE0q-IwgSpZBqCzyI-aMPF7Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Spice" + } + ] + }, + { + "name": "Butcherman", + "fontFamily": "Butcherman, system-ui", + "slug": "butcherman", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Butcherman" + } + ] + }, + { + "name": "Butterfly Kids", + "fontFamily": "Butterfly Kids, cursive", + "slug": "butterfly-kids", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/butterflykids/v21/ll8lK2CWTjuqAsXDqlnIbMNs5R4bpRU.ttf" - }, - { - "family": "Cabin", - "variants": [ - "regular", - "500", - "600", - "700", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v26", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7Gvxm7rE_s.ttf", - "600": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Gvxm7rE_s.ttf", - "700": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Gvxm7rE_s.ttf", - "regular": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Gvxm7rE_s.ttf", - "italic": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_KlwkzuA_u1Bg.ttf", - "500italic": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlwkzuA_u1Bg.ttf", - "600italic": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlwkzuA_u1Bg.ttf", - "700italic": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlwkzuA_u1Bg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EH7Clwg.ttf" - }, - { - "family": "Cabin Condensed", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf", - "600": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf", - "700": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf", - "regular": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpMtK6mNhBK2err_hqkYhHRqmwqYeLd.ttf" - }, - { - "family": "Cabin Sketch", - "variants": [ "regular", "700" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/cabinsketch/v19/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf", - "regular": "http://fonts.gstatic.com/s/cabinsketch/v19/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cabinsketch/v19/QGYpz_kZZAGCONcK2A4bGOj8nthI.ttf" - }, - { - "family": "Caesar Dressing", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrRHcLz-.ttf" - }, - { - "family": "Cagliostro", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TvGTONw.ttf" - }, - { - "family": "Cairo", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v28", - "lastModified": "2023-05-02", - "files": { - "200": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA-W1ToLQ-HmkA.ttf", - "300": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hL4-W1ToLQ-HmkA.ttf", - "500": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1ToLQ-HmkA.ttf", - "600": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hD45W1ToLQ-HmkA.ttf", - "700": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1ToLQ-HmkA.ttf", - "800": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA5W1ToLQ-HmkA.ttf", - "900": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hEk5W1ToLQ-HmkA.ttf", - "regular": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1ToLQ-HmkA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-a1XiKQ.ttf" - }, - { - "family": "Cairo Play", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v7", - "lastModified": "2023-04-27", - "files": { - "200": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnYq9yXa8GvzaA.ttf", - "300": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1zHYq9yXa8GvzaA.ttf", - "500": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1oHYq9yXa8GvzaA.ttf", - "600": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1THEq9yXa8GvzaA.ttf", - "700": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1dXEq9yXa8GvzaA.ttf", - "800": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnEq9yXa8GvzaA.ttf", - "900": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1O3Eq9yXa8GvzaA.ttf", - "regular": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1knYq9yXa8GvzaA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1knYa9i_e.ttf" - }, - { - "family": "Caladea", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/caladea/v7/kJE2BugZ7AAjhybUtaNY39oYqO52FZ0.ttf", - "regular": "http://fonts.gstatic.com/s/caladea/v7/kJEzBugZ7AAjhybUjR93-9IztOc.ttf", - "italic": "http://fonts.gstatic.com/s/caladea/v7/kJExBugZ7AAjhybUvR19__A2pOdvDA.ttf", - "700italic": "http://fonts.gstatic.com/s/caladea/v7/kJE0BugZ7AAjhybUvR1FQ98SrMxzBZ2lDA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/caladea/v7/kJEzBugZ7AAjhybUvR59_w.ttf" - }, - { - "family": "Calistoga", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v13", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/calistoga/v13/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/calistoga/v13/6NUU8F2OJg6MeR7l4e0ftcwE.ttf" - }, - { - "family": "Calligraffitti", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/butterflykids/v21/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Butterfly Kids" + } + ] + }, + { + "name": "Cabin", + "fontFamily": "Cabin, sans-serif", + "slug": "cabin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Gvxm7rE_s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7Gvxm7rE_s.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Gvxm7rE_s.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Gvxm7rE_s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_KlwkzuA_u1Bg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlwkzuA_u1Bg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlwkzuA_u1Bg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlwkzuA_u1Bg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cabin" + } + ] + }, + { + "name": "Cabin Condensed", + "fontFamily": "Cabin Condensed, sans-serif", + "slug": "cabin-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cabin Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cabin Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cabin Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cabin Condensed" + } + ] + }, + { + "name": "Cabin Sketch", + "fontFamily": "Cabin Sketch, system-ui", + "slug": "cabin-sketch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cabinsketch/v19/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cabin Sketch" + }, + { + "src": "http://fonts.gstatic.com/s/cabinsketch/v19/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cabin Sketch" + } + ] + }, + { + "name": "Caesar Dressing", + "fontFamily": "Caesar Dressing, system-ui", + "slug": "caesar-dressing", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caesar Dressing" + } + ] + }, + { + "name": "Cagliostro", + "fontFamily": "Cagliostro, sans-serif", + "slug": "cagliostro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cagliostro" + } + ] + }, + { + "name": "Cairo", + "fontFamily": "Cairo, sans-serif", + "slug": "cairo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA-W1ToLQ-HmkA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hL4-W1ToLQ-HmkA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1ToLQ-HmkA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1ToLQ-HmkA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hD45W1ToLQ-HmkA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1ToLQ-HmkA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA5W1ToLQ-HmkA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hEk5W1ToLQ-HmkA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Cairo" + } + ] + }, + { + "name": "Cairo Play", + "fontFamily": "Cairo Play, sans-serif", + "slug": "cairo-play", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnYq9yXa8GvzaA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1zHYq9yXa8GvzaA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1knYq9yXa8GvzaA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1oHYq9yXa8GvzaA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1THEq9yXa8GvzaA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1dXEq9yXa8GvzaA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnEq9yXa8GvzaA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1O3Eq9yXa8GvzaA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + } + ] + }, + { + "name": "Caladea", + "fontFamily": "Caladea, serif", + "slug": "caladea", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caladea/v7/kJEzBugZ7AAjhybUjR93-9IztOc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caladea" + }, + { + "src": "http://fonts.gstatic.com/s/caladea/v7/kJExBugZ7AAjhybUvR19__A2pOdvDA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Caladea" + }, + { + "src": "http://fonts.gstatic.com/s/caladea/v7/kJE2BugZ7AAjhybUtaNY39oYqO52FZ0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Caladea" + }, + { + "src": "http://fonts.gstatic.com/s/caladea/v7/kJE0BugZ7AAjhybUvR1FQ98SrMxzBZ2lDA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Caladea" + } + ] + }, + { + "name": "Calistoga", + "fontFamily": "Calistoga, system-ui", + "slug": "calistoga", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/calistoga/v13/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Calistoga" + } + ] + }, + { + "name": "Calligraffitti", + "fontFamily": "Calligraffitti, cursive", + "slug": "calligraffitti", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vkFYOZI.ttf" - }, - { - "family": "Cambay", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/cambay/v12/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf", - "regular": "http://fonts.gstatic.com/s/cambay/v12/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf", - "italic": "http://fonts.gstatic.com/s/cambay/v12/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf", - "700italic": "http://fonts.gstatic.com/s/cambay/v12/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cambay/v12/SLXJc1rY6H0_ZDs2b76M.ttf" - }, - { - "family": "Cambo", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/cambo/v17/IFSqHeNEk8FJk416ok7xkPm8.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cambo/v17/IFSqHeNEk8FJk717qEo.ttf" - }, - { - "family": "Candal", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8c9ABQN.ttf" - }, - { - "family": "Cantarell", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-11-09", - "files": { - "700": "http://fonts.gstatic.com/s/cantarell/v17/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf", - "regular": "http://fonts.gstatic.com/s/cantarell/v17/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf", - "italic": "http://fonts.gstatic.com/s/cantarell/v17/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf", - "700italic": "http://fonts.gstatic.com/s/cantarell/v17/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cantarell/v17/B50NF7ZDq37KMUvlO015iqJu.ttf" - }, - { - "family": "Cantata One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslWxFvcQ.ttf" - }, - { - "family": "Cantora One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/cantoraone/v19/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cantoraone/v19/gyB4hws1JdgnKy56GB_JX5zcbY8.ttf" - }, - { - "family": "Capriola", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/capriola/v14/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/capriola/v14/wXKoE3YSppcvo1PDlk_9JeQ.ttf" - }, - { - "family": "Caramel", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/caramel/v7/P5sCzZKBbMTf_ShyxCRuiZ-uydg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Calligraffitti" + } + ] + }, + { + "name": "Cambay", + "fontFamily": "Cambay, sans-serif", + "slug": "cambay", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cambay/v12/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cambay" + }, + { + "src": "http://fonts.gstatic.com/s/cambay/v12/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cambay" + }, + { + "src": "http://fonts.gstatic.com/s/cambay/v12/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cambay" + }, + { + "src": "http://fonts.gstatic.com/s/cambay/v12/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cambay" + } + ] + }, + { + "name": "Cambo", + "fontFamily": "Cambo, serif", + "slug": "cambo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cambo/v17/IFSqHeNEk8FJk416ok7xkPm8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cambo" + } + ] + }, + { + "name": "Candal", + "fontFamily": "Candal, sans-serif", + "slug": "candal", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Candal" + } + ] + }, + { + "name": "Cantarell", + "fontFamily": "Cantarell, sans-serif", + "slug": "cantarell", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cantarell/v17/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cantarell" + }, + { + "src": "http://fonts.gstatic.com/s/cantarell/v17/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cantarell" + }, + { + "src": "http://fonts.gstatic.com/s/cantarell/v17/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cantarell" + }, + { + "src": "http://fonts.gstatic.com/s/cantarell/v17/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cantarell" + } + ] + }, + { + "name": "Cantata One", + "fontFamily": "Cantata One, serif", + "slug": "cantata-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cantata One" + } + ] + }, + { + "name": "Cantora One", + "fontFamily": "Cantora One, sans-serif", + "slug": "cantora-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cantoraone/v19/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cantora One" + } + ] + }, + { + "name": "Capriola", + "fontFamily": "Capriola, sans-serif", + "slug": "capriola", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/capriola/v14/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Capriola" + } + ] + }, + { + "name": "Caramel", + "fontFamily": "Caramel, cursive", + "slug": "caramel", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/caramel/v7/P5sCzZKBbMTf_Shy9CVkjQ.ttf" - }, - { - "family": "Carattere", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/carattere/v7/4iCv6Kp1b9dXlgt_CkvTt2aMH4V_gg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caramel/v7/P5sCzZKBbMTf_ShyxCRuiZ-uydg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caramel" + } + ] + }, + { + "name": "Carattere", + "fontFamily": "Carattere, cursive", + "slug": "carattere", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/carattere/v7/4iCv6Kp1b9dXlgt_CkvjtmyI.ttf" - }, - { - "family": "Cardo", - "variants": [ "regular", "italic", "700" ], - "subsets": [ "greek", "greek-ext", "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/cardo/v19/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf", - "regular": "http://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf", - "italic": "http://fonts.gstatic.com/s/cardo/v19/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqhv-3IQ.ttf" - }, - { - "family": "Carlito", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v3", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/carlito/v3/3Jn4SDPw3m-pk039BIykaX0vUuhCyOo.ttf", - "regular": "http://fonts.gstatic.com/s/carlito/v3/3Jn9SDPw3m-pk039PDCLTXUETuE.ttf", - "italic": "http://fonts.gstatic.com/s/carlito/v3/3Jn_SDPw3m-pk039DDKBSVcBXuFb0Q.ttf", - "700italic": "http://fonts.gstatic.com/s/carlito/v3/3Jn6SDPw3m-pk039DDK59XglVspH2OprMQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/carlito/v3/3Jn9SDPw3m-pk039DDGBSQ.ttf" - }, - { - "family": "Carme", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDNjHzrc.ttf" - }, - { - "family": "Carrois Gothic", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9amC1Co.ttf" - }, - { - "family": "Carrois Gothic SC", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-18mPnI.ttf" - }, - { - "family": "Carter One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNExV8gQ.ttf" - }, - { - "family": "Castoro", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/castoro/v19/1q2GY5yMCld3-O4cHYhEzOYenEU.ttf", - "italic": "http://fonts.gstatic.com/s/castoro/v19/1q2EY5yMCld3-O4cLYpOyMQbjEX5fw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/castoro/v19/1q2GY5yMCld3-O4cLYlOyA.ttf" - }, - { - "family": "Castoro Titling", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v3", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/castorotitling/v3/buEupouwccj03leTfjUAhEZWlrNqYgckeo9RMw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/castorotitling/v3/buEupouwccj03leTfjUAhEZWlrNaYw0g.ttf" - }, - { - "family": "Catamaran", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "tamil" ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1anXuluiLyw.ttf", - "200": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1anXuluiLyw.ttf", - "300": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1anXuluiLyw.ttf", - "500": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1anXuluiLyw.ttf", - "600": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1anXuluiLyw.ttf", - "700": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1anXuluiLyw.ttf", - "800": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1anXuluiLyw.ttf", - "900": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1anXuluiLyw.ttf", - "regular": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1anXuluiLyw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd5ajdvg.ttf" - }, - { - "family": "Caudex", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "greek", "greek-ext", "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/caudex/v15/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf", - "regular": "http://fonts.gstatic.com/s/caudex/v15/esDQ311QOP6BJUrIyviAnb4eEw.ttf", - "italic": "http://fonts.gstatic.com/s/caudex/v15/esDS311QOP6BJUr4yPKEv7sOE4in.ttf", - "700italic": "http://fonts.gstatic.com/s/caudex/v15/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/caudex/v15/esDQ311QOP6BJUr4y_KE.ttf" - }, - { - "family": "Caveat", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjcB9SIKjYBxPigs.ttf", - "600": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjSx6SIKjYBxPigs.ttf", - "700": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIKjYBxPigs.ttf", - "regular": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9SIKjYBxPigs.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carattere/v7/4iCv6Kp1b9dXlgt_CkvTt2aMH4V_gg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carattere" + } + ] + }, + { + "name": "Cardo", + "fontFamily": "Cardo, serif", + "slug": "cardo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cardo" + }, + { + "src": "http://fonts.gstatic.com/s/cardo/v19/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cardo" + }, + { + "src": "http://fonts.gstatic.com/s/cardo/v19/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cardo" + } + ] + }, + { + "name": "Carlito", + "fontFamily": "Carlito, sans-serif", + "slug": "carlito", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn9SDPw3m-pk039PDCLTXUETuE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carlito" + }, + { + "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn_SDPw3m-pk039DDKBSVcBXuFb0Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Carlito" + }, + { + "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn4SDPw3m-pk039BIykaX0vUuhCyOo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Carlito" + }, + { + "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn6SDPw3m-pk039DDK59XglVspH2OprMQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Carlito" + } + ] + }, + { + "name": "Carme", + "fontFamily": "Carme, sans-serif", + "slug": "carme", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carme" + } + ] + }, + { + "name": "Carrois Gothic", + "fontFamily": "Carrois Gothic, sans-serif", + "slug": "carrois-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carrois Gothic" + } + ] + }, + { + "name": "Carrois Gothic SC", + "fontFamily": "Carrois Gothic SC, sans-serif", + "slug": "carrois-gothic-sc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carrois Gothic SC" + } + ] + }, + { + "name": "Carter One", + "fontFamily": "Carter One, system-ui", + "slug": "carter-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carter One" + } + ] + }, + { + "name": "Castoro", + "fontFamily": "Castoro, serif", + "slug": "castoro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/castoro/v19/1q2GY5yMCld3-O4cHYhEzOYenEU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Castoro" + }, + { + "src": "http://fonts.gstatic.com/s/castoro/v19/1q2EY5yMCld3-O4cLYpOyMQbjEX5fw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Castoro" + } + ] + }, + { + "name": "Castoro Titling", + "fontFamily": "Castoro Titling, system-ui", + "slug": "castoro-titling", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/castorotitling/v3/buEupouwccj03leTfjUAhEZWlrNqYgckeo9RMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Castoro Titling" + } + ] + }, + { + "name": "Catamaran", + "fontFamily": "Catamaran, sans-serif", + "slug": "catamaran", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1anXuluiLyw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1anXuluiLyw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1anXuluiLyw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1anXuluiLyw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1anXuluiLyw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1anXuluiLyw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1anXuluiLyw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1anXuluiLyw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1anXuluiLyw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Catamaran" + } + ] + }, + { + "name": "Caudex", + "fontFamily": "Caudex, serif", + "slug": "caudex", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caudex/v15/esDQ311QOP6BJUrIyviAnb4eEw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caudex" + }, + { + "src": "http://fonts.gstatic.com/s/caudex/v15/esDS311QOP6BJUr4yPKEv7sOE4in.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Caudex" + }, + { + "src": "http://fonts.gstatic.com/s/caudex/v15/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Caudex" + }, + { + "src": "http://fonts.gstatic.com/s/caudex/v15/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Caudex" + } + ] + }, + { + "name": "Caveat", + "fontFamily": "Caveat, cursive", + "slug": "caveat", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9eIOpZA.ttf" - }, - { - "family": "Caveat Brush", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9SIKjYBxPigs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caveat" + }, + { + "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjcB9SIKjYBxPigs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Caveat" + }, + { + "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjSx6SIKjYBxPigs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Caveat" + }, + { + "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIKjYBxPigs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Caveat" + } + ] + }, + { + "name": "Caveat Brush", + "fontFamily": "Caveat Brush, cursive", + "slug": "caveat-brush", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXt8WrOX.ttf" - }, - { - "family": "Cedarville Cursive", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caveat Brush" + } + ] + }, + { + "name": "Cedarville Cursive", + "fontFamily": "Cedarville Cursive, cursive", + "slug": "cedarville-cursive", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_nuJLp1.ttf" - }, - { - "family": "Ceviche One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX5zcbY8.ttf" - }, - { - "family": "Chakra Petch", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v9", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf", - "500": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf", - "600": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf", - "700": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf", - "300italic": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf", - "regular": "http://fonts.gstatic.com/s/chakrapetch/v9/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf", - "italic": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf", - "500italic": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf", - "600italic": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf", - "700italic": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/chakrapetch/v9/cIf6MapbsEk7TDLdtEz1BwkWmapl.ttf" - }, - { - "family": "Changa", - "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "200": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjDp9htf1ZM.ttf", - "300": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjDp9htf1ZM.ttf", - "500": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjDp9htf1ZM.ttf", - "600": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjDp9htf1ZM.ttf", - "700": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjDp9htf1ZM.ttf", - "800": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjDp9htf1ZM.ttf", - "regular": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjDp9htf1ZM.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xcjHj8g.ttf" - }, - { - "family": "Changa One", - "variants": [ "regular", "italic" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/changaone/v18/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf", - "italic": "http://fonts.gstatic.com/s/changaone/v18/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/changaone/v18/xfu00W3wXn3QLUJXhzq42AfivA.ttf" - }, - { - "family": "Chango", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/chango/v22/2V0cKI0OB5U7WaJyz324TFUaAw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/chango/v22/2V0cKI0OB5U7WaJCzne8.ttf" - }, - { - "family": "Charis SIL", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v2", - "lastModified": "2023-04-27", - "files": { - "700": "http://fonts.gstatic.com/s/charissil/v2/oPWJ_kV3l-s-Q8govXvKlEbJRj5dQnSX1ko.ttf", - "regular": "http://fonts.gstatic.com/s/charissil/v2/oPWK_kV3l-s-Q8govXvKrPrmYjZ2Xn0.ttf", - "italic": "http://fonts.gstatic.com/s/charissil/v2/oPWI_kV3l-s-Q8govXvKnPjsZhRzTn2Ozw.ttf", - "700italic": "http://fonts.gstatic.com/s/charissil/v2/oPWX_kV3l-s-Q8govXvKnPjU2jtXRlaSxkrMCQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/charissil/v2/oPWK_kV3l-s-Q8govXvKnPvsZg.ttf" - }, - { - "family": "Charm", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v11", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/charm/v11/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf", - "regular": "http://fonts.gstatic.com/s/charm/v11/7cHmv4oii5K0MeYvIe804WIo.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cedarville Cursive" + } + ] + }, + { + "name": "Ceviche One", + "fontFamily": "Ceviche One, system-ui", + "slug": "ceviche-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ceviche One" + } + ] + }, + { + "name": "Chakra Petch", + "fontFamily": "Chakra Petch, sans-serif", + "slug": "chakra-petch", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + } + ] + }, + { + "name": "Changa", + "fontFamily": "Changa, sans-serif", + "slug": "changa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjDp9htf1ZM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjDp9htf1ZM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjDp9htf1ZM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjDp9htf1ZM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjDp9htf1ZM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjDp9htf1ZM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjDp9htf1ZM.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Changa" + } + ] + }, + { + "name": "Changa One", + "fontFamily": "Changa One, system-ui", + "slug": "changa-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/changaone/v18/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Changa One" + }, + { + "src": "http://fonts.gstatic.com/s/changaone/v18/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Changa One" + } + ] + }, + { + "name": "Chango", + "fontFamily": "Chango, system-ui", + "slug": "chango", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chango/v22/2V0cKI0OB5U7WaJyz324TFUaAw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chango" + } + ] + }, + { + "name": "Charis SIL", + "fontFamily": "Charis SIL, serif", + "slug": "charis-sil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/charissil/v2/oPWK_kV3l-s-Q8govXvKrPrmYjZ2Xn0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Charis SIL" + }, + { + "src": "http://fonts.gstatic.com/s/charissil/v2/oPWI_kV3l-s-Q8govXvKnPjsZhRzTn2Ozw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Charis SIL" + }, + { + "src": "http://fonts.gstatic.com/s/charissil/v2/oPWJ_kV3l-s-Q8govXvKlEbJRj5dQnSX1ko.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Charis SIL" + }, + { + "src": "http://fonts.gstatic.com/s/charissil/v2/oPWX_kV3l-s-Q8govXvKnPjU2jtXRlaSxkrMCQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Charis SIL" + } + ] + }, + { + "name": "Charm", + "fontFamily": "Charm, cursive", + "slug": "charm", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/charm/v11/7cHmv4oii5K0MdYuK-s.ttf" - }, - { - "family": "Charmonman", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/charmonman/v18/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf", - "regular": "http://fonts.gstatic.com/s/charmonman/v18/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/charm/v11/7cHmv4oii5K0MeYvIe804WIo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Charm" + }, + { + "src": "http://fonts.gstatic.com/s/charm/v11/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Charm" + } + ] + }, + { + "name": "Charmonman", + "fontFamily": "Charmonman, cursive", + "slug": "charmonman", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/charmonman/v18/MjQDmiR3vP_nuxDv47jiaJCiuA.ttf" - }, - { - "family": "Chathura", - "variants": [ "100", "300", "regular", "700", "800" ], - "subsets": [ "latin", "telugu" ], - "version": "v20", - "lastModified": "2022-04-21", - "files": { - "100": "http://fonts.gstatic.com/s/chathura/v20/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf", - "300": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf", - "700": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf", - "800": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf", - "regular": "http://fonts.gstatic.com/s/chathura/v20/_gP71R7-rzUuVjim418goUC5S-Zy.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/chathura/v20/_gP71R7-rzUuVjim428hq0Q.ttf" - }, - { - "family": "Chau Philomene One", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf", - "italic": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFcnYZ_.ttf" - }, - { - "family": "Chela One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIC3lHS.ttf" - }, - { - "family": "Chelsea Market", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKChkJgo.ttf" - }, - { - "family": "Chenla", - "variants": [ "regular" ], - "subsets": [ "khmer" ], - "version": "v25", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9uXh3s.ttf" - }, - { - "family": "Cherish", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v8", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/cherish/v8/ll88K2mXUyqsDsTN5iDCI6IJjg8.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/charmonman/v18/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Charmonman" + }, + { + "src": "http://fonts.gstatic.com/s/charmonman/v18/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Charmonman" + } + ] + }, + { + "name": "Chathura", + "fontFamily": "Chathura, sans-serif", + "slug": "chathura", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Chathura" + }, + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Chathura" + }, + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP71R7-rzUuVjim418goUC5S-Zy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chathura" + }, + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Chathura" + }, + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Chathura" + } + ] + }, + { + "name": "Chau Philomene One", + "fontFamily": "Chau Philomene One, sans-serif", + "slug": "chau-philomene-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chau Philomene One" + }, + { + "src": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Chau Philomene One" + } + ] + }, + { + "name": "Chela One", + "fontFamily": "Chela One, system-ui", + "slug": "chela-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chela One" + } + ] + }, + { + "name": "Chelsea Market", + "fontFamily": "Chelsea Market, system-ui", + "slug": "chelsea-market", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chelsea Market" + } + ] + }, + { + "name": "Chenla", + "fontFamily": "Chenla, system-ui", + "slug": "chenla", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chenla" + } + ] + }, + { + "name": "Cherish", + "fontFamily": "Cherish, cursive", + "slug": "cherish", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cherish/v8/ll88K2mXUyqsDsTN1iHIJw.ttf" - }, - { - "family": "Cherry Cream Soda", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciQd7A9o.ttf" - }, - { - "family": "Cherry Swash", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2022-04-21", - "files": { - "700": "http://fonts.gstatic.com/s/cherryswash/v18/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf", - "regular": "http://fonts.gstatic.com/s/cherryswash/v18/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cherryswash/v18/i7dNIFByZjaNAMxtZcnfAy5MQXK6.ttf" - }, - { - "family": "Chewy", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wk5xIDMfO-ed.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wn5wKjc.ttf" - }, - { - "family": "Chicle", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/chicle/v21/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/chicle/v21/lJwG-pw9i2dqU-BzyGiq.ttf" - }, - { - "family": "Chilanka", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "malayalam" ], - "version": "v20", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/chilanka/v20/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cherish/v8/ll88K2mXUyqsDsTN5iDCI6IJjg8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cherish" + } + ] + }, + { + "name": "Cherry Cream Soda", + "fontFamily": "Cherry Cream Soda, system-ui", + "slug": "cherry-cream-soda", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cherry Cream Soda" + } + ] + }, + { + "name": "Cherry Swash", + "fontFamily": "Cherry Swash, system-ui", + "slug": "cherry-swash", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cherryswash/v18/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cherry Swash" + }, + { + "src": "http://fonts.gstatic.com/s/cherryswash/v18/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cherry Swash" + } + ] + }, + { + "name": "Chewy", + "fontFamily": "Chewy, system-ui", + "slug": "chewy", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wk5xIDMfO-ed.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chewy" + } + ] + }, + { + "name": "Chicle", + "fontFamily": "Chicle, system-ui", + "slug": "chicle", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chicle/v21/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chicle" + } + ] + }, + { + "name": "Chilanka", + "fontFamily": "Chilanka, cursive", + "slug": "chilanka", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/chilanka/v20/WWXRlj2DZQiMJYaYRoJRKdU.ttf" - }, - { - "family": "Chivo", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v18", - "lastModified": "2022-11-18", - "files": { - "100": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB7ul2DSFXjQiQ.ttf", - "200": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PB_ul2DSFXjQiQ.ttf", - "300": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_4h_ul2DSFXjQiQ.ttf", - "500": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_jh_ul2DSFXjQiQ.ttf", - "600": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Yhjul2DSFXjQiQ.ttf", - "700": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Wxjul2DSFXjQiQ.ttf", - "800": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PBjul2DSFXjQiQ.ttf", - "900": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_FRjul2DSFXjQiQ.ttf", - "regular": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ul2DSFXjQiQ.ttf", - "100italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1WrWN33AiasJ.ttf", - "200italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG1GrWN33AiasJ.ttf", - "300italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFxY1GrWN33AiasJ.ttf", - "italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1GrWN33AiasJ.ttf", - "500italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFw01GrWN33AiasJ.ttf", - "600italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzY02rWN33AiasJ.ttf", - "700italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzh02rWN33AiasJ.ttf", - "800italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG02rWN33AiasJ.ttf", - "900italic": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyv02rWN33AiasJ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_elmrW.ttf" - }, - { - "family": "Chivo Mono", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v6", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hrqfVKphL03l4.ttf", - "200": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hr6fVKphL03l4.ttf", - "300": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D6_r6fVKphL03l4.ttf", - "500": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7Tr6fVKphL03l4.ttf", - "600": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4_qKfVKphL03l4.ttf", - "700": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4GqKfVKphL03l4.ttf", - "800": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hqKfVKphL03l4.ttf", - "900": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5IqKfVKphL03l4.ttf", - "regular": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr6fVKphL03l4.ttf", - "100italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-XIJxp1ml4imo.ttf", - "200italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-WIJxp1ml4imo.ttf", - "300italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7BGWIJxp1ml4imo.ttf", - "italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-WIJxp1ml4imo.ttf", - "500italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7H2WIJxp1ml4imo.ttf", - "600italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7JGRIJxp1ml4imo.ttf", - "700italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7KiRIJxp1ml4imo.ttf", - "800italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-RIJxp1ml4imo.ttf", - "900italic": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7OaRIJxp1ml4imo.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chilanka/v20/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chilanka" + } + ] + }, + { + "name": "Chivo", + "fontFamily": "Chivo, sans-serif", + "slug": "chivo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB7ul2DSFXjQiQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PB_ul2DSFXjQiQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_4h_ul2DSFXjQiQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ul2DSFXjQiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_jh_ul2DSFXjQiQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Yhjul2DSFXjQiQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Wxjul2DSFXjQiQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PBjul2DSFXjQiQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_FRjul2DSFXjQiQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1WrWN33AiasJ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG1GrWN33AiasJ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFxY1GrWN33AiasJ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1GrWN33AiasJ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFw01GrWN33AiasJ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzY02rWN33AiasJ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzh02rWN33AiasJ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG02rWN33AiasJ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyv02rWN33AiasJ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Chivo" + } + ] + }, + { + "name": "Chivo Mono", + "fontFamily": "Chivo Mono, monospace", + "slug": "chivo-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr5fUIJw.ttf" - }, - { - "family": "Chonburi", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/chonburi/v10/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/chonburi/v10/8AtqGs-wOpGRTBq66LWbHLk.ttf" - }, - { - "family": "Cinzel", - "variants": [ "regular", "500", "600", "700", "800", "900" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2023-03-21", - "files": { - "500": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-uTnTYrvDE5ZdqU.ttf", - "600": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-gjgTYrvDE5ZdqU.ttf", - "700": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-jHgTYrvDE5ZdqU.ttf", - "800": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-lbgTYrvDE5ZdqU.ttf", - "900": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-n_gTYrvDE5ZdqU.ttf", - "regular": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnTYrvDE5ZdqU.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnfYvlCA.ttf" - }, - { - "family": "Cinzel Decorative", - "variants": [ "regular", "700", "900" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf", - "900": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf", - "regular": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaCSScvJGqLYhG8nNt8KPPswUAPni7VTMk.ttf" - }, - { - "family": "Clicker Script", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hrqfVKphL03l4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hr6fVKphL03l4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D6_r6fVKphL03l4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr6fVKphL03l4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7Tr6fVKphL03l4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4_qKfVKphL03l4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4GqKfVKphL03l4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hqKfVKphL03l4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5IqKfVKphL03l4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-XIJxp1ml4imo.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-WIJxp1ml4imo.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7BGWIJxp1ml4imo.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-WIJxp1ml4imo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7H2WIJxp1ml4imo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7JGRIJxp1ml4imo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7KiRIJxp1ml4imo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-RIJxp1ml4imo.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7OaRIJxp1ml4imo.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + } + ] + }, + { + "name": "Chonburi", + "fontFamily": "Chonburi, system-ui", + "slug": "chonburi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chonburi/v10/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chonburi" + } + ] + }, + { + "name": "Cinzel", + "fontFamily": "Cinzel, serif", + "slug": "cinzel", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnTYrvDE5ZdqU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-uTnTYrvDE5ZdqU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-gjgTYrvDE5ZdqU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-jHgTYrvDE5ZdqU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-lbgTYrvDE5ZdqU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-n_gTYrvDE5ZdqU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Cinzel" + } + ] + }, + { + "name": "Cinzel Decorative", + "fontFamily": "Cinzel Decorative, system-ui", + "slug": "cinzel-decorative", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cinzel Decorative" + }, + { + "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cinzel Decorative" + }, + { + "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Cinzel Decorative" + } + ] + }, + { + "name": "Clicker Script", + "fontFamily": "Clicker Script, cursive", + "slug": "clicker-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq71rZ0T4.ttf" - }, - { - "family": "Climate Crisis", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v4", - "lastModified": "2023-03-21", - "files": { - "regular": "http://fonts.gstatic.com/s/climatecrisis/v4/wEOpEB3AntNeKCPBVW9XOKlmp3AUgWFN1DvIvcM0gFp6jaUrGb7PsQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/climatecrisis/v4/wEOpEB3AntNeKCPBVW9XOKlmp3AUgWFN1DvIvcM0gFpKjK8v.ttf" - }, - { - "family": "Coda", - "variants": [ "regular", "800" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "800": "http://fonts.gstatic.com/s/coda/v21/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf", - "regular": "http://fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8JUIMapaN39I.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8FUMGbg.ttf" - }, - { - "family": "Coda Caption", - "variants": [ "800" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "800": "http://fonts.gstatic.com/s/codacaption/v19/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/codacaption/v19/ieVm2YRII2GMY7SyXSoDRiQGqcxKxvWb.ttf" - }, - { - "family": "Codystar", - "variants": [ "300", "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/codystar/v15/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf", - "regular": "http://fonts.gstatic.com/s/codystar/v15/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/codystar/v15/FwZY7-Q1xVk-40qxOu6B6Mw.ttf" - }, - { - "family": "Coiny", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "tamil", "vietnamese" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PXwbElSvO5Tc.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PUwaGFA.ttf" - }, - { - "family": "Combo", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhj0jDOs.ttf" - }, - { - "family": "Comfortaa", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v40", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", - "500": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", - "600": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", - "700": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", - "regular": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMDrUfJQ.ttf" - }, - { - "family": "Comforter", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/comforter/v5/H4clBXOCl8nQnlaql3Qa6JG8iqeuag.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Clicker Script" + } + ] + }, + { + "name": "Climate Crisis", + "fontFamily": "Climate Crisis, system-ui", + "slug": "climate-crisis", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/climatecrisis/v4/wEOpEB3AntNeKCPBVW9XOKlmp3AUgWFN1DvIvcM0gFp6jaUrGb7PsQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Climate Crisis" + } + ] + }, + { + "name": "Coda", + "fontFamily": "Coda, system-ui", + "slug": "coda", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8JUIMapaN39I.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Coda" + }, + { + "src": "http://fonts.gstatic.com/s/coda/v21/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Coda" + } + ] + }, + { + "name": "Coda Caption", + "fontFamily": "Coda Caption, sans-serif", + "slug": "coda-caption", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/codacaption/v19/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Coda Caption" + } + ] + }, + { + "name": "Codystar", + "fontFamily": "Codystar, system-ui", + "slug": "codystar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/codystar/v15/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Codystar" + }, + { + "src": "http://fonts.gstatic.com/s/codystar/v15/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Codystar" + } + ] + }, + { + "name": "Coiny", + "fontFamily": "Coiny, system-ui", + "slug": "coiny", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PXwbElSvO5Tc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Coiny" + } + ] + }, + { + "name": "Combo", + "fontFamily": "Combo, system-ui", + "slug": "combo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Combo" + } + ] + }, + { + "name": "Comfortaa", + "fontFamily": "Comfortaa, system-ui", + "slug": "comfortaa", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + }, + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + }, + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + }, + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + }, + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + } + ] + }, + { + "name": "Comforter", + "fontFamily": "Comforter, cursive", + "slug": "comforter", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/comforter/v5/H4clBXOCl8nQnlaql3Qq6Zu4.ttf" - }, - { - "family": "Comforter Brush", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/comforterbrush/v5/Y4GTYa1xVSggrfzZI5WMjxRaOz0jwLL9Th8YYA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comforter/v5/H4clBXOCl8nQnlaql3Qa6JG8iqeuag.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comforter" + } + ] + }, + { + "name": "Comforter Brush", + "fontFamily": "Comforter Brush, cursive", + "slug": "comforter-brush", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/comforterbrush/v5/Y4GTYa1xVSggrfzZI5WMjxRaOz0Twbj5.ttf" - }, - { - "family": "Comic Neue", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "700", - "700italic" - ], - "subsets": [ "latin" ], - "version": "v8", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_wHLwpteLwtHJlc.ttf", - "700": "http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_xHMwpteLwtHJlc.ttf", - "300italic": "http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RTplUKylCNlcw_Q.ttf", - "regular": "http://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf", - "italic": "http://fonts.gstatic.com/s/comicneue/v8/4UaFrEJDsxBrF37olUeD96_p4rFwIwJePw.ttf", - "700italic": "http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RXp5UKylCNlcw_Q.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comforterbrush/v5/Y4GTYa1xVSggrfzZI5WMjxRaOz0jwLL9Th8YYA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comforter Brush" + } + ] + }, + { + "name": "Comic Neue", + "fontFamily": "Comic Neue, cursive", + "slug": "comic-neue", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeD96zp4g.ttf" - }, - { - "family": "Coming Soon", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_wHLwpteLwtHJlc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RTplUKylCNlcw_Q.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaFrEJDsxBrF37olUeD96_p4rFwIwJePw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_xHMwpteLwtHJlc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RXp5UKylCNlcw_Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Comic Neue" + } + ] + }, + { + "name": "Coming Soon", + "fontFamily": "Coming Soon, cursive", + "slug": "coming-soon", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1t-TWDw.ttf" - }, - { - "family": "Comme", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v2", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cBr644fWsRO9w.ttf", - "200": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcFr644fWsRO9w.ttf", - "300": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zu8Fr644fWsRO9w.ttf", - "500": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z18Fr644fWsRO9w.ttf", - "600": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zO8Zr644fWsRO9w.ttf", - "700": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zAsZr644fWsRO9w.ttf", - "800": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcZr644fWsRO9w.ttf", - "900": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zTMZr644fWsRO9w.ttf", - "regular": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cFr644fWsRO9w.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cFb6oQb.ttf" - }, - { - "family": "Commissioner", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v20", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNcGPe7Fu0jUdk.ttf", - "200": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENdGPe7Fu0jUdk.ttf", - "300": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTJ1dGPe7Fu0jUdk.ttf", - "500": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTPFdGPe7Fu0jUdk.ttf", - "600": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTB1aGPe7Fu0jUdk.ttf", - "700": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTCRaGPe7Fu0jUdk.ttf", - "800": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENaGPe7Fu0jUdk.ttf", - "900": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTGpaGPe7Fu0jUdk.ttf", - "regular": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNdGPe7Fu0jUdk.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNdKPaxEg.ttf" - }, - { - "family": "Concert One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/concertone/v17/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/concertone/v17/VEM1Ro9xs5PjtzCu-srDqSTkjPs.ttf" - }, - { - "family": "Condiment", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/condiment/v20/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Coming Soon" + } + ] + }, + { + "name": "Comme", + "fontFamily": "Comme, sans-serif", + "slug": "comme", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cBr644fWsRO9w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcFr644fWsRO9w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zu8Fr644fWsRO9w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cFr644fWsRO9w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z18Fr644fWsRO9w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zO8Zr644fWsRO9w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zAsZr644fWsRO9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcZr644fWsRO9w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zTMZr644fWsRO9w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Comme" + } + ] + }, + { + "name": "Commissioner", + "fontFamily": "Commissioner, sans-serif", + "slug": "commissioner", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNcGPe7Fu0jUdk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENdGPe7Fu0jUdk.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTJ1dGPe7Fu0jUdk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNdGPe7Fu0jUdk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTPFdGPe7Fu0jUdk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTB1aGPe7Fu0jUdk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTCRaGPe7Fu0jUdk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENaGPe7Fu0jUdk.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTGpaGPe7Fu0jUdk.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Commissioner" + } + ] + }, + { + "name": "Concert One", + "fontFamily": "Concert One, system-ui", + "slug": "concert-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/concertone/v17/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Concert One" + } + ] + }, + { + "name": "Condiment", + "fontFamily": "Condiment, cursive", + "slug": "condiment", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/condiment/v20/pONk1hggFNmwvXALyH6iqoP8.ttf" - }, - { - "family": "Content", - "variants": [ "regular", "700" ], - "subsets": [ "khmer" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/content/v24/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf", - "regular": "http://fonts.gstatic.com/s/content/v24/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/content/v24/zrfl0HLayePhU_AwYaH4Jg.ttf" - }, - { - "family": "Contrail One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/contrailone/v15/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/contrailone/v15/eLGbP-j_JA-kG0_Zo51noaftZEHp.ttf" - }, - { - "family": "Convergence", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-04-21", - "files": { - "regular": "http://fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYShbu0o.ttf" - }, - { - "family": "Cookie", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/cookie/v17/syky-y18lb0tSbfNlQCT9tPdpw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/condiment/v20/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Condiment" + } + ] + }, + { + "name": "Content", + "fontFamily": "Content, system-ui", + "slug": "content", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/content/v24/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Content" + }, + { + "src": "http://fonts.gstatic.com/s/content/v24/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Content" + } + ] + }, + { + "name": "Contrail One", + "fontFamily": "Contrail One, system-ui", + "slug": "contrail-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/contrailone/v15/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Contrail One" + } + ] + }, + { + "name": "Convergence", + "fontFamily": "Convergence, sans-serif", + "slug": "convergence", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Convergence" + } + ] + }, + { + "name": "Cookie", + "fontFamily": "Cookie, cursive", + "slug": "cookie", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cookie/v17/syky-y18lb0tSbf9lAqX.ttf" - }, - { - "family": "Copse", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-04-21", - "files": { - "regular": "http://fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb0djHkihUb-A.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb3diFEw.ttf" - }, - { - "family": "Corben", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/corben/v19/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf", - "regular": "http://fonts.gstatic.com/s/corben/v19/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/corben/v19/LYjDdGzzklQtCMpNoQNA.ttf" - }, - { - "family": "Corinthia", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v9", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/corinthia/v9/wEO6EBrAnchaJyPMHE097d8v1GAbgbLXQA.ttf", - "regular": "http://fonts.gstatic.com/s/corinthia/v9/wEO_EBrAnchaJyPMHE0FUfAL3EsHiA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cookie/v17/syky-y18lb0tSbfNlQCT9tPdpw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cookie" + } + ] + }, + { + "name": "Copse", + "fontFamily": "Copse, serif", + "slug": "copse", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb0djHkihUb-A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Copse" + } + ] + }, + { + "name": "Corben", + "fontFamily": "Corben, system-ui", + "slug": "corben", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/corben/v19/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Corben" + }, + { + "src": "http://fonts.gstatic.com/s/corben/v19/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Corben" + } + ] + }, + { + "name": "Corinthia", + "fontFamily": "Corinthia, cursive", + "slug": "corinthia", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/corinthia/v9/wEO_EBrAnchaJyPMHE01UPoP.ttf" - }, - { - "family": "Cormorant", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "300italic", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v21", - "lastModified": "2023-03-21", - "files": { - "300": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFk9TQ7Rg7A2uwYs.ttf", - "500": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFiNTQ7Rg7A2uwYs.ttf", - "600": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFs9UQ7Rg7A2uwYs.ttf", - "700": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFvZUQ7Rg7A2uwYs.ttf", - "regular": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTQ7Rg7A2uwYs.ttf", - "300italic": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQ9fdq6C-r0YvxdA.ttf", - "italic": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQq_dq6C-r0YvxdA.ttf", - "500italic": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQmfdq6C-r0YvxdA.ttf", - "600italic": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQdfBq6C-r0YvxdA.ttf", - "700italic": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQTPBq6C-r0YvxdA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTc7Vq6A.ttf" - }, - { - "family": "Cormorant Garamond", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf", - "500": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf", - "600": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf", - "700": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf", - "300italic": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf", - "regular": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf", - "italic": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf", - "500italic": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf", - "600italic": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf", - "700italic": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjYr3tP.ttf" - }, - { - "family": "Cormorant Infant", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf", - "500": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf", - "600": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf", - "700": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf", - "300italic": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf", - "regular": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf", - "italic": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf", - "500italic": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf", - "600italic": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf", - "700italic": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyPU44g9vKiM1sORYSiWeAsLN997_EV3A.ttf" - }, - { - "family": "Cormorant SC", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf", - "500": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf", - "600": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf", - "700": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf", - "regular": "http://fonts.gstatic.com/s/cormorantsc/v18/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cormorantsc/v18/0yb5GD4kxqXBmOVLG30OGwsurTA0.ttf" - }, - { - "family": "Cormorant Unicase", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf", - "500": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf", - "600": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf", - "700": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf", - "regular": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX9vSlMc.ttf" - }, - { - "family": "Cormorant Upright", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf", - "500": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf", - "600": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf", - "700": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf", - "regular": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y1vUhDA.ttf" - }, - { - "family": "Courgette", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/courgette/v13/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/corinthia/v9/wEO_EBrAnchaJyPMHE0FUfAL3EsHiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Corinthia" + }, + { + "src": "http://fonts.gstatic.com/s/corinthia/v9/wEO6EBrAnchaJyPMHE097d8v1GAbgbLXQA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Corinthia" + } + ] + }, + { + "name": "Cormorant", + "fontFamily": "Cormorant, serif", + "slug": "cormorant", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFk9TQ7Rg7A2uwYs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTQ7Rg7A2uwYs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFiNTQ7Rg7A2uwYs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFs9UQ7Rg7A2uwYs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFvZUQ7Rg7A2uwYs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQ9fdq6C-r0YvxdA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQq_dq6C-r0YvxdA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQmfdq6C-r0YvxdA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQdfBq6C-r0YvxdA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQTPBq6C-r0YvxdA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cormorant" + } + ] + }, + { + "name": "Cormorant Garamond", + "fontFamily": "Cormorant Garamond, serif", + "slug": "cormorant-garamond", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + } + ] + }, + { + "name": "Cormorant Infant", + "fontFamily": "Cormorant Infant, serif", + "slug": "cormorant-infant", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + } + ] + }, + { + "name": "Cormorant SC", + "fontFamily": "Cormorant SC, serif", + "slug": "cormorant-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + } + ] + }, + { + "name": "Cormorant Unicase", + "fontFamily": "Cormorant Unicase, serif", + "slug": "cormorant-unicase", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + } + ] + }, + { + "name": "Cormorant Upright", + "fontFamily": "Cormorant Upright, serif", + "slug": "cormorant-upright", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + } + ] + }, + { + "name": "Courgette", + "fontFamily": "Courgette, cursive", + "slug": "courgette", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/courgette/v13/wEO_EBrAnc9BLjLQAUk1UPoP.ttf" - }, - { - "family": "Courier Prime", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/courierprime/v7/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-fVqvHoJXw.ttf", - "regular": "http://fonts.gstatic.com/s/courierprime/v7/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf", - "italic": "http://fonts.gstatic.com/s/courierprime/v7/u-4n0q2lgwslOqpF_6gQ8kELawRpX837pvjxPA.ttf", - "700italic": "http://fonts.gstatic.com/s/courierprime/v7/u-4i0q2lgwslOqpF_6gQ8kELawRR4-LfrtPtNXyeAg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/courgette/v13/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Courgette" + } + ] + }, + { + "name": "Courier Prime", + "fontFamily": "Courier Prime, monospace", + "slug": "courier-prime", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/courierprime/v7/u-450q2lgwslOqpF_6gQ8kELawdpXw.ttf" - }, - { - "family": "Cousine", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "hebrew", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v25", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/cousine/v25/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf", - "regular": "http://fonts.gstatic.com/s/cousine/v25/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf", - "italic": "http://fonts.gstatic.com/s/cousine/v25/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf", - "700italic": "http://fonts.gstatic.com/s/cousine/v25/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/courierprime/v7/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Courier Prime" + }, + { + "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4n0q2lgwslOqpF_6gQ8kELawRpX837pvjxPA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Courier Prime" + }, + { + "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-fVqvHoJXw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Courier Prime" + }, + { + "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4i0q2lgwslOqpF_6gQ8kELawRR4-LfrtPtNXyeAg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Courier Prime" + } + ] + }, + { + "name": "Cousine", + "fontFamily": "Cousine, monospace", + "slug": "cousine", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cousine/v25/d6lIkaiiRdih4SpP_SIvyQ.ttf" - }, - { - "family": "Coustard", - "variants": [ "regular", "900" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "900": "http://fonts.gstatic.com/s/coustard/v16/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf", - "regular": "http://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU-UOt2E.ttf" - }, - { - "family": "Covered By Your Grace", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/coveredbyyourgrace/v15/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cousine/v25/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cousine" + }, + { + "src": "http://fonts.gstatic.com/s/cousine/v25/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cousine" + }, + { + "src": "http://fonts.gstatic.com/s/cousine/v25/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cousine" + }, + { + "src": "http://fonts.gstatic.com/s/cousine/v25/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cousine" + } + ] + }, + { + "name": "Coustard", + "fontFamily": "Coustard, serif", + "slug": "coustard", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Coustard" + }, + { + "src": "http://fonts.gstatic.com/s/coustard/v16/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Coustard" + } + ] + }, + { + "name": "Covered By Your Grace", + "fontFamily": "Covered By Your Grace, cursive", + "slug": "covered-by-your-grace", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/coveredbyyourgrace/v15/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOSEFwgp.ttf" - }, - { - "family": "Crafty Girls", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/coveredbyyourgrace/v15/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Covered By Your Grace" + } + ] + }, + { + "name": "Crafty Girls", + "fontFamily": "Crafty Girls, cursive", + "slug": "crafty-girls", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NveQBf_.ttf" - }, - { - "family": "Creepster", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4RdH38.ttf" - }, - { - "family": "Crete Round", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/creteround/v14/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf", - "italic": "http://fonts.gstatic.com/s/creteround/v14/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/creteround/v14/55xoey1sJNPjPiv1ZZZrxK190bg.ttf" - }, - { - "family": "Crimson Pro", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v23", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf", - "300": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf", - "500": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf", - "600": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf", - "700": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf", - "800": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf", - "900": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf", - "regular": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf", - "200italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf", - "300italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf", - "italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf", - "500italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf", - "600italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf", - "700italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf", - "800italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf", - "900italic": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm1MOZs7.ttf" - }, - { - "family": "Crimson Text", - "variants": [ - "regular", - "italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "600": "http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf", - "700": "http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf", - "regular": "http://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf", - "italic": "http://fonts.gstatic.com/s/crimsontext/v19/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf", - "600italic": "http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf", - "700italic": "http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJfaQhW.ttf" - }, - { - "family": "Croissant One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/croissantone/v21/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/croissantone/v21/3y9n6bU9bTPg4m8NDy3Kq24UA3tgmw.ttf" - }, - { - "family": "Crushed", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v25", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/crushed/v25/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/crushed/v25/U9Mc6dym6WXImTlFf1gVvA.ttf" - }, - { - "family": "Cuprum", - "variants": [ - "regular", - "500", - "600", - "700", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v25", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg9f6ZjzSJjQjgnU.ttf", - "600": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgzv9ZjzSJjQjgnU.ttf", - "700": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgwL9ZjzSJjQjgnU.ttf", - "regular": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6ZjzSJjQjgnU.ttf", - "italic": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25jn_YIhYmknUPEA.ttf", - "500italic": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25vH_YIhYmknUPEA.ttf", - "600italic": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25UHjYIhYmknUPEA.ttf", - "700italic": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25aXjYIhYmknUPEA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6Vj3YIg.ttf" - }, - { - "family": "Cute Font", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/cutefont/v20/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cutefont/v20/Noaw6Uny2oWPbSHMrY6fmZlR.ttf" - }, - { - "family": "Cutive", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/cutive/v17/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cutive/v17/NaPZcZ_fHOhV3IpLTvJH.ttf" - }, - { - "family": "Cutive Mono", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/cutivemono/v15/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crafty Girls" + } + ] + }, + { + "name": "Creepster", + "fontFamily": "Creepster, system-ui", + "slug": "creepster", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Creepster" + } + ] + }, + { + "name": "Crete Round", + "fontFamily": "Crete Round, serif", + "slug": "crete-round", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/creteround/v14/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crete Round" + }, + { + "src": "http://fonts.gstatic.com/s/creteround/v14/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Crete Round" + } + ] + }, + { + "name": "Crimson Pro", + "fontFamily": "Crimson Pro, serif", + "slug": "crimson-pro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + } + ] + }, + { + "name": "Crimson Text", + "fontFamily": "Crimson Text, serif", + "slug": "crimson-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Crimson Text" + } + ] + }, + { + "name": "Croissant One", + "fontFamily": "Croissant One, system-ui", + "slug": "croissant-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/croissantone/v21/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Croissant One" + } + ] + }, + { + "name": "Crushed", + "fontFamily": "Crushed, system-ui", + "slug": "crushed", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/crushed/v25/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crushed" + } + ] + }, + { + "name": "Cuprum", + "fontFamily": "Cuprum, sans-serif", + "slug": "cuprum", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6ZjzSJjQjgnU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg9f6ZjzSJjQjgnU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgzv9ZjzSJjQjgnU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgwL9ZjzSJjQjgnU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25jn_YIhYmknUPEA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25vH_YIhYmknUPEA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25UHjYIhYmknUPEA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25aXjYIhYmknUPEA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cuprum" + } + ] + }, + { + "name": "Cute Font", + "fontFamily": "Cute Font, system-ui", + "slug": "cute-font", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cutefont/v20/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cute Font" + } + ] + }, + { + "name": "Cutive", + "fontFamily": "Cutive, serif", + "slug": "cutive", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cutive/v17/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cutive" + } + ] + }, + { + "name": "Cutive Mono", + "fontFamily": "Cutive Mono, monospace", + "slug": "cutive-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/cutivemono/v15/m8JWjfRfY7WVjVi2E-K9H6RETms.ttf" - }, - { - "family": "DM Mono", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "500", - "500italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/dmmono/v11/aFTR7PB1QTsUX8KYvrGyIYSnbKX9Rlk.ttf", - "500": "http://fonts.gstatic.com/s/dmmono/v11/aFTR7PB1QTsUX8KYvumzIYSnbKX9Rlk.ttf", - "300italic": "http://fonts.gstatic.com/s/dmmono/v11/aFTT7PB1QTsUX8KYth-orYataIf4VllXuA.ttf", - "regular": "http://fonts.gstatic.com/s/dmmono/v11/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf", - "italic": "http://fonts.gstatic.com/s/dmmono/v11/aFTW7PB1QTsUX8KYth-QAa6JYKzkXw.ttf", - "500italic": "http://fonts.gstatic.com/s/dmmono/v11/aFTT7PB1QTsUX8KYth-o9YetaIf4VllXuA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cutivemono/v15/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cutive Mono" + } + ] + }, + { + "name": "DM Mono", + "fontFamily": "DM Mono, monospace", + "slug": "dm-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dmmono/v11/aFTU7PB1QTsUX8KYthyQAQ.ttf" - }, - { - "family": "DM Sans", - "variants": [ - "regular", - "italic", - "500", - "500italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf", - "700": "http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriASitOB-sClQX6Cg.ttf", - "regular": "http://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf", - "italic": "http://fonts.gstatic.com/s/dmsans/v11/rP2Fp2ywxg089UriCZaIGDWCBl0O8Q.ttf", - "500italic": "http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZaw7BymDnYS-Cjk6Q.ttf", - "700italic": "http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZawpBqmDnYS-Cjk6Q.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriCZWIGA.ttf" - }, - { - "family": "DM Serif Display", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v12", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf", - "italic": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFnOHM81r4j6k0gjAW3mujVU2B2G_Zx1w.ttf" - }, - { - "family": "DM Serif Text", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v12", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf", - "italic": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCu-xZa_krGokauCeNq1wWyWfKFWA.ttf" - }, - { - "family": "Damion", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/damion/v14/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTR7PB1QTsUX8KYvrGyIYSnbKX9Rlk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTT7PB1QTsUX8KYth-orYataIf4VllXuA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTW7PB1QTsUX8KYth-QAa6JYKzkXw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTR7PB1QTsUX8KYvumzIYSnbKX9Rlk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTT7PB1QTsUX8KYth-o9YetaIf4VllXuA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "DM Mono" + } + ] + }, + { + "name": "DM Sans", + "fontFamily": "DM Sans, sans-serif", + "slug": "dm-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Fp2ywxg089UriCZaIGDWCBl0O8Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZaw7BymDnYS-Cjk6Q.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriASitOB-sClQX6Cg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZawpBqmDnYS-Cjk6Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "DM Sans" + } + ] + }, + { + "name": "DM Serif Display", + "fontFamily": "DM Serif Display, serif", + "slug": "dm-serif-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DM Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "DM Serif Display" + } + ] + }, + { + "name": "DM Serif Text", + "fontFamily": "DM Serif Text, serif", + "slug": "dm-serif-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DM Serif Text" + }, + { + "src": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "DM Serif Text" + } + ] + }, + { + "name": "Damion", + "fontFamily": "Damion, cursive", + "slug": "damion", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/damion/v14/hv-XlzJ3KEUe_YZkbGwz.ttf" - }, - { - "family": "Dancing Script", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTeB9ptDqpw.ttf", - "600": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTeB9ptDqpw.ttf", - "700": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTeB9ptDqpw.ttf", - "regular": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTeB9ptDqpw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/damion/v14/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Damion" + } + ] + }, + { + "name": "Dancing Script", + "fontFamily": "Dancing Script, cursive", + "slug": "dancing-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3TOp5.ttf" - }, - { - "family": "Dangrek", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin" ], - "version": "v26", - "lastModified": "2022-04-21", - "files": { - "regular": "http://fonts.gstatic.com/s/dangrek/v26/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dangrek/v26/LYjCdG30nEgoH8E2sCJgrQ.ttf" - }, - { - "family": "Darker Grotesque", - "variants": [ "300", "regular", "500", "600", "700", "800", "900" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVoxr2AW8hTOsXsX0.ttf", - "500": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVo0L3AW8hTOsXsX0.ttf", - "600": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVo27wAW8hTOsXsX0.ttf", - "700": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVowrxAW8hTOsXsX0.ttf", - "800": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVoxbyAW8hTOsXsX0.ttf", - "900": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVozLzAW8hTOsXsX0.ttf", - "regular": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MH6cuh-mLQlC4BKCtayOfARkSVm7beJWcKUOI.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MH6cuh-mLQlC4BKCtayOfARkSVq7fUIQ.ttf" - }, - { - "family": "Darumadrop One", - "variants": [ "regular" ], - "subsets": [ "japanese", "latin", "latin-ext" ], - "version": "v7", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/darumadropone/v7/cY9cfjeIW11dpCKgRLi675a87IhHBJOxZQPp.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/darumadropone/v7/cY9cfjeIW11dpCKgRLi675a87LhGDpc.ttf" - }, - { - "family": "David Libre", - "variants": [ "regular", "500", "700" ], - "subsets": [ "hebrew", "latin", "latin-ext", "vietnamese" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf", - "700": "http://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf", - "regular": "http://fonts.gstatic.com/s/davidlibre/v14/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/davidlibre/v14/snfus0W_99N64iuYSvp4W8l94Jo.ttf" - }, - { - "family": "Dawning of a New Day", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/dawningofanewday/v16/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTeB9ptDqpw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dancing Script" + }, + { + "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTeB9ptDqpw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Dancing Script" + }, + { + "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTeB9ptDqpw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Dancing Script" + }, + { + "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTeB9ptDqpw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Dancing Script" + } + ] + }, + { + "name": "Dangrek", + "fontFamily": "Dangrek, system-ui", + "slug": "dangrek", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dangrek/v26/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dangrek" + } + ] + }, + { + "name": "Darker Grotesque", + "fontFamily": "Darker Grotesque, sans-serif", + "slug": "darker-grotesque", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVoxr2AW8hTOsXsX0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MH6cuh-mLQlC4BKCtayOfARkSVm7beJWcKUOI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVo0L3AW8hTOsXsX0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVo27wAW8hTOsXsX0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVowrxAW8hTOsXsX0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVoxbyAW8hTOsXsX0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVozLzAW8hTOsXsX0.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + } + ] + }, + { + "name": "Darumadrop One", + "fontFamily": "Darumadrop One, system-ui", + "slug": "darumadrop-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/darumadropone/v7/cY9cfjeIW11dpCKgRLi675a87IhHBJOxZQPp.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Darumadrop One" + } + ] + }, + { + "name": "David Libre", + "fontFamily": "David Libre, serif", + "slug": "david-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "David Libre" + }, + { + "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "David Libre" + }, + { + "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "David Libre" + } + ] + }, + { + "name": "Dawning of a New Day", + "fontFamily": "Dawning of a New Day, cursive", + "slug": "dawning-of-a-new-day", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dawningofanewday/v16/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAw8aj2Y.ttf" - }, - { - "family": "Days One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/daysone/v14/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/daysone/v14/mem9YaCnxnKRiYZOCIYUcr0.ttf" - }, - { - "family": "Dekko", - "variants": [ "regular" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/dekko/v19/46khlb_wWjfSrttFR0vsfl1B.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dawningofanewday/v16/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dawning of a New Day" + } + ] + }, + { + "name": "Days One", + "fontFamily": "Days One, sans-serif", + "slug": "days-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/daysone/v14/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Days One" + } + ] + }, + { + "name": "Dekko", + "fontFamily": "Dekko, cursive", + "slug": "dekko", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dekko/v19/46khlb_wWjfSrutETU8.ttf" - }, - { - "family": "Dela Gothic One", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "greek", - "japanese", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v10", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/delagothicone/v10/~ChEKD0RlbGEgR290aGljIE9uZSAAKgQIARgB.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/delagothicone/v10/~ChEKD0RlbGEgR290aGljIE9uZRABIAA=.ttf" - }, - { - "family": "Delicious Handrawn", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v4", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/delicioushandrawn/v4/wlpsgx_NAUNkpmKQifcxkQchDFo3fJ113JpDd6u3AQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dekko/v19/46khlb_wWjfSrttFR0vsfl1B.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dekko" + } + ] + }, + { + "name": "Dela Gothic One", + "fontFamily": "Dela Gothic One, system-ui", + "slug": "dela-gothic-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/delagothicone/v10/~ChEKD0RlbGEgR290aGljIE9uZSAAKgQIARgB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dela Gothic One" + } + ] + }, + { + "name": "Delicious Handrawn", + "fontFamily": "Delicious Handrawn, cursive", + "slug": "delicious-handrawn", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/delicioushandrawn/v4/wlpsgx_NAUNkpmKQifcxkQchDFo3fJ1F3ZBH.ttf" - }, - { - "family": "Delius", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/delius/v15/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/delicioushandrawn/v4/wlpsgx_NAUNkpmKQifcxkQchDFo3fJ113JpDd6u3AQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Delicious Handrawn" + } + ] + }, + { + "name": "Delius", + "fontFamily": "Delius, cursive", + "slug": "delius", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/delius/v15/PN_xRfK0pW_9e1rdYMg6.ttf" - }, - { - "family": "Delius Swash Caps", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/deliusswashcaps/v19/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/delius/v15/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Delius" + } + ] + }, + { + "name": "Delius Swash Caps", + "fontFamily": "Delius Swash Caps, cursive", + "slug": "delius-swash-caps", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/deliusswashcaps/v19/oY1E8fPLr7v4JWCExZpWebxVKORpXUecIGM.ttf" - }, - { - "family": "Delius Unicase", - "variants": [ "regular", "700" ], - "subsets": [ "latin" ], - "version": "v26", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/deliusunicase/v26/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf", - "regular": "http://fonts.gstatic.com/s/deliusunicase/v26/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/deliusswashcaps/v19/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Delius Swash Caps" + } + ] + }, + { + "name": "Delius Unicase", + "fontFamily": "Delius Unicase, cursive", + "slug": "delius-unicase", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/deliusunicase/v26/845BNMEwEIOVT8BmgfSzIr_6mlLGfeo.ttf" - }, - { - "family": "Della Respira", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/dellarespira/v18/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dellarespira/v18/RLp5K5v44KaueWI6iEJQBiGPdfgYvw.ttf" - }, - { - "family": "Denk One", - "variants": [ "regular" ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], - "version": "v17", - "lastModified": "2023-04-04", - "files": { - "regular": "http://fonts.gstatic.com/s/denkone/v17/dg4m_pzhrqcFb2IzROtHpbglShon.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/denkone/v17/dg4m_pzhrqcFb2IzRNtGr7w.ttf" - }, - { - "family": "Devonshire", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/devonshire/v22/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/deliusunicase/v26/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Delius Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/deliusunicase/v26/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Delius Unicase" + } + ] + }, + { + "name": "Della Respira", + "fontFamily": "Della Respira, serif", + "slug": "della-respira", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dellarespira/v18/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Della Respira" + } + ] + }, + { + "name": "Denk One", + "fontFamily": "Denk One, sans-serif", + "slug": "denk-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/denkone/v17/dg4m_pzhrqcFb2IzROtHpbglShon.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Denk One" + } + ] + }, + { + "name": "Devonshire", + "fontFamily": "Devonshire, cursive", + "slug": "devonshire", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/devonshire/v22/46kqlbDwWirWr4gtBD2Bb0Rg1w.ttf" - }, - { - "family": "Dhurjati", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v20", - "lastModified": "2022-04-21", - "files": { - "regular": "http://fonts.gstatic.com/s/dhurjati/v20/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dhurjati/v20/_6_8ED3gSeatXfFiFU3zQqA.ttf" - }, - { - "family": "Didact Gothic", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext" - ], - "version": "v20", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/didactgothic/v20/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/didactgothic/v20/ahcfv8qz1zt6hCC5G4F_P4ASlU2Yow.ttf" - }, - { - "family": "Diplomata", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v27", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/diplomata/v27/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/diplomata/v27/Cn-0JtiMXwhNwp-wKxyvYWZc.ttf" - }, - { - "family": "Diplomata SC", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/diplomatasc/v23/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/diplomatasc/v23/buExpoi3ecvs3kidKgBJo2kv-fRK.ttf" - }, - { - "family": "Do Hyeon", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v16", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/dohyeon/v16/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dohyeon/v16/TwMN-I8CRRU2zM86HGE2bQI.ttf" - }, - { - "family": "Dokdo", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v15", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/dokdo/v15/esDf315XNuCBLxLo4NaMlKcH.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/devonshire/v22/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Devonshire" + } + ] + }, + { + "name": "Dhurjati", + "fontFamily": "Dhurjati, sans-serif", + "slug": "dhurjati", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dhurjati/v20/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dhurjati" + } + ] + }, + { + "name": "Didact Gothic", + "fontFamily": "Didact Gothic, sans-serif", + "slug": "didact-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/didactgothic/v20/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Didact Gothic" + } + ] + }, + { + "name": "Diplomata", + "fontFamily": "Diplomata, system-ui", + "slug": "diplomata", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/diplomata/v27/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Diplomata" + } + ] + }, + { + "name": "Diplomata SC", + "fontFamily": "Diplomata SC, system-ui", + "slug": "diplomata-sc", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/diplomatasc/v23/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Diplomata SC" + } + ] + }, + { + "name": "Do Hyeon", + "fontFamily": "Do Hyeon, sans-serif", + "slug": "do-hyeon", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dohyeon/v16/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Do Hyeon" + } + ] + }, + { + "name": "Dokdo", + "fontFamily": "Dokdo, cursive", + "slug": "dokdo", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dokdo/v15/esDf315XNuCBLyLp6tI.ttf" - }, - { - "family": "Domine", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X0DAI10VErGuW8Q.ttf", - "600": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X6zHI10VErGuW8Q.ttf", - "700": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X5XHI10VErGuW8Q.ttf", - "regular": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAE1wfFg.ttf" - }, - { - "family": "Donegal One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/donegalone/v21/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/donegalone/v21/m8JWjfRYea-ZnFz6fsK9FaRETms.ttf" - }, - { - "family": "Dongle", - "variants": [ "300", "regular", "700" ], - "subsets": [ "korean", "latin", "latin-ext", "vietnamese" ], - "version": "v9", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/dongle/v9/sJoG3Ltdjt6VPkqeEcxrYjWNzXvVPA.ttf", - "700": "http://fonts.gstatic.com/s/dongle/v9/sJoG3Ltdjt6VPkqeActrYjWNzXvVPA.ttf", - "regular": "http://fonts.gstatic.com/s/dongle/v9/sJoF3Ltdjt6VPkqmveRPah6RxA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dongle/v9/sJoF3Ltdjt6VPkqWvO5L.ttf" - }, - { - "family": "Doppio One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-pgorLA.ttf" - }, - { - "family": "Dorsa", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v23", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/dorsa/v23/yYLn0hjd0OGwqo493XCFxAnQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dorsa/v23/yYLn0hjd0OGwqr4813Q.ttf" - }, - { - "family": "Dosis", - "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v27", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf", - "300": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf", - "500": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf", - "600": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf", - "700": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf", - "800": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf", - "regular": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7Ml3RMB.ttf" - }, - { - "family": "DotGothic16", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/dotgothic16/v15/v6-QGYjBJFKgyw5nSoDAGE7L435YPFrT.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dotgothic16/v15/v6-QGYjBJFKgyw5nSoDAGH7K6Xo.ttf" - }, - { - "family": "Dr Sugiyama", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/drsugiyama/v23/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dokdo/v15/esDf315XNuCBLxLo4NaMlKcH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dokdo" + } + ] + }, + { + "name": "Domine", + "fontFamily": "Domine, serif", + "slug": "domine", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Domine" + }, + { + "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X0DAI10VErGuW8Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Domine" + }, + { + "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X6zHI10VErGuW8Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Domine" + }, + { + "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X5XHI10VErGuW8Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Domine" + } + ] + }, + { + "name": "Donegal One", + "fontFamily": "Donegal One, serif", + "slug": "donegal-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/donegalone/v21/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Donegal One" + } + ] + }, + { + "name": "Dongle", + "fontFamily": "Dongle, sans-serif", + "slug": "dongle", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dongle/v9/sJoG3Ltdjt6VPkqeEcxrYjWNzXvVPA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Dongle" + }, + { + "src": "http://fonts.gstatic.com/s/dongle/v9/sJoF3Ltdjt6VPkqmveRPah6RxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dongle" + }, + { + "src": "http://fonts.gstatic.com/s/dongle/v9/sJoG3Ltdjt6VPkqeActrYjWNzXvVPA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Dongle" + } + ] + }, + { + "name": "Doppio One", + "fontFamily": "Doppio One, sans-serif", + "slug": "doppio-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Doppio One" + } + ] + }, + { + "name": "Dorsa", + "fontFamily": "Dorsa, sans-serif", + "slug": "dorsa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dorsa/v23/yYLn0hjd0OGwqo493XCFxAnQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dorsa" + } + ] + }, + { + "name": "Dosis", + "fontFamily": "Dosis, sans-serif", + "slug": "dosis", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Dosis" + } + ] + }, + { + "name": "DotGothic16", + "fontFamily": "DotGothic16, sans-serif", + "slug": "dotgothic16", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dotgothic16/v15/v6-QGYjBJFKgyw5nSoDAGE7L435YPFrT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DotGothic16" + } + ] + }, + { + "name": "Dr Sugiyama", + "fontFamily": "Dr Sugiyama, cursive", + "slug": "dr-sugiyama", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/drsugiyama/v23/HTxoL2k4N3O9n5I1boGI7ZbQOYs.ttf" - }, - { - "family": "Duru Sans", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/durusans/v20/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/durusans/v20/xn7iYH8xwmSyTvEV_HOBTv3c.ttf" - }, - { - "family": "DynaPuff", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext" ], - "version": "v4", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSyQu6YjrSRs4wn8.ttf", - "600": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS8gp6YjrSRs4wn8.ttf", - "700": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS_Ep6YjrSRs4wn8.ttf", - "regular": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSxYu6YjrSRs4wn8.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSxYu2YnhTQ.ttf" - }, - { - "family": "Dynalight", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/dynalight/v18/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/dynalight/v18/1Ptsg8LOU_aOmQvTsF44S4Fv.ttf" - }, - { - "family": "EB Garamond", - "variants": [ - "regular", - "500", - "600", - "700", - "800", - "italic", - "500italic", - "600italic", - "700italic", - "800italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v26", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUA4V-e6yHgQ.ttf", - "600": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUA4V-e6yHgQ.ttf", - "700": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUA4V-e6yHgQ.ttf", - "800": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUA4V-e6yHgQ.ttf", - "regular": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUA4V-e6yHgQ.ttf", - "italic": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI96WamXgXFI.ttf", - "500italic": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI96WamXgXFI.ttf", - "600italic": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR496WamXgXFI.ttf", - "700italic": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR496WamXgXFI.ttf", - "800italic": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R496WamXgXFI.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RkAo96.ttf" - }, - { - "family": "Eagle Lake", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/eaglelake/v20/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/drsugiyama/v23/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dr Sugiyama" + } + ] + }, + { + "name": "Duru Sans", + "fontFamily": "Duru Sans, sans-serif", + "slug": "duru-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/durusans/v20/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Duru Sans" + } + ] + }, + { + "name": "DynaPuff", + "fontFamily": "DynaPuff, system-ui", + "slug": "dynapuff", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSxYu6YjrSRs4wn8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DynaPuff" + }, + { + "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSyQu6YjrSRs4wn8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "DynaPuff" + }, + { + "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS8gp6YjrSRs4wn8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "DynaPuff" + }, + { + "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS_Ep6YjrSRs4wn8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "DynaPuff" + } + ] + }, + { + "name": "Dynalight", + "fontFamily": "Dynalight, system-ui", + "slug": "dynalight", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dynalight/v18/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dynalight" + } + ] + }, + { + "name": "EB Garamond", + "fontFamily": "EB Garamond, serif", + "slug": "eb-garamond", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUA4V-e6yHgQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUA4V-e6yHgQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUA4V-e6yHgQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUA4V-e6yHgQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUA4V-e6yHgQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI96WamXgXFI.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI96WamXgXFI.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR496WamXgXFI.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR496WamXgXFI.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R496WamXgXFI.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + } + ] + }, + { + "name": "Eagle Lake", + "fontFamily": "Eagle Lake, cursive", + "slug": "eagle-lake", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/eaglelake/v20/ptRMTiqbbuNJDOiKj9wG1O_4LQ.ttf" - }, - { - "family": "East Sea Dokdo", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v20", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/eastseadokdo/v20/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eaglelake/v20/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Eagle Lake" + } + ] + }, + { + "name": "East Sea Dokdo", + "fontFamily": "East Sea Dokdo, cursive", + "slug": "east-sea-dokdo", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/eastseadokdo/v20/xfuo0Wn2V2_KanASqXSZp22m06_bE68.ttf" - }, - { - "family": "Eater", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/eater/v21/mtG04_FCK7bOvpu2u3FwsXsR.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/eater/v21/mtG04_FCK7bOvqu3sXU.ttf" - }, - { - "family": "Economica", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/economica/v13/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf", - "regular": "http://fonts.gstatic.com/s/economica/v13/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf", - "italic": "http://fonts.gstatic.com/s/economica/v13/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf", - "700italic": "http://fonts.gstatic.com/s/economica/v13/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/economica/v13/Qw3fZQZaHCLgIWa29ZBbMMIE.ttf" - }, - { - "family": "Eczar", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ - "devanagari", - "greek", - "greek-ext", - "latin", - "latin-ext" - ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXL96WqTIVKWJKWg.ttf", - "600": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXw9mWqTIVKWJKWg.ttf", - "700": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDX-tmWqTIVKWJKWg.ttf", - "800": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXndmWqTIVKWJKWg.ttf", - "regular": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXHd6WqTIVKWJKWg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXHd6mqDgR.ttf" - }, - { - "family": "Edu NSW ACT Foundation", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin" ], - "version": "v2", - "lastModified": "2023-01-06", - "files": { - "500": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9fovGLeC-sfguJ.ttf", - "600": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-zpfGLeC-sfguJ.ttf", - "700": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-KpfGLeC-sfguJ.ttf", - "regular": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9tovGLeC-sfguJ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eastseadokdo/v20/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "East Sea Dokdo" + } + ] + }, + { + "name": "Eater", + "fontFamily": "Eater, system-ui", + "slug": "eater", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eater/v21/mtG04_FCK7bOvpu2u3FwsXsR.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Eater" + } + ] + }, + { + "name": "Economica", + "fontFamily": "Economica, sans-serif", + "slug": "economica", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/economica/v13/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Economica" + }, + { + "src": "http://fonts.gstatic.com/s/economica/v13/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Economica" + }, + { + "src": "http://fonts.gstatic.com/s/economica/v13/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Economica" + }, + { + "src": "http://fonts.gstatic.com/s/economica/v13/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Economica" + } + ] + }, + { + "name": "Eczar", + "fontFamily": "Eczar, serif", + "slug": "eczar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXHd6WqTIVKWJKWg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Eczar" + }, + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXL96WqTIVKWJKWg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Eczar" + }, + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXw9mWqTIVKWJKWg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Eczar" + }, + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDX-tmWqTIVKWJKWg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Eczar" + }, + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXndmWqTIVKWJKWg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Eczar" + } + ] + }, + { + "name": "Edu NSW ACT Foundation", + "fontFamily": "Edu NSW ACT Foundation, cursive", + "slug": "edu-nsw-act-foundation", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9tosGKcis.ttf" - }, - { - "family": "Edu QLD Beginner", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin" ], - "version": "v3", - "lastModified": "2023-03-09", - "files": { - "500": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE423oebi6vyVWCN.ttf", - "600": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7a2Yebi6vyVWCN.ttf", - "700": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7j2Yebi6vyVWCN.ttf", - "regular": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE4E3oebi6vyVWCN.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9tovGLeC-sfguJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu NSW ACT Foundation" + }, + { + "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9fovGLeC-sfguJ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu NSW ACT Foundation" + }, + { + "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-zpfGLeC-sfguJ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu NSW ACT Foundation" + }, + { + "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-KpfGLeC-sfguJ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu NSW ACT Foundation" + } + ] + }, + { + "name": "Edu QLD Beginner", + "fontFamily": "Edu QLD Beginner, cursive", + "slug": "edu-qld-beginner", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE4E3reaga8.ttf" - }, - { - "family": "Edu SA Beginner", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin" ], - "version": "v3", - "lastModified": "2023-03-09", - "files": { - "500": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9-09fo1yBydUEDs.ttf", - "600": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9wE6fo1yBydUEDs.ttf", - "700": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9zg6fo1yBydUEDs.ttf", - "regular": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9989fo1yBydUEDs.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE4E3oebi6vyVWCN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu QLD Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE423oebi6vyVWCN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu QLD Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7a2Yebi6vyVWCN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu QLD Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7j2Yebi6vyVWCN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu QLD Beginner" + } + ] + }, + { + "name": "Edu SA Beginner", + "fontFamily": "Edu SA Beginner, cursive", + "slug": "edu-sa-beginner", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9989Tox4Aw.ttf" - }, - { - "family": "Edu TAS Beginner", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin" ], - "version": "v3", - "lastModified": "2023-03-09", - "files": { - "500": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HCemkrBWRhvk02.ttf", - "600": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EufWkrBWRhvk02.ttf", - "700": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EXfWkrBWRhvk02.ttf", - "regular": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HwemkrBWRhvk02.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9989fo1yBydUEDs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu SA Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9-09fo1yBydUEDs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu SA Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9wE6fo1yBydUEDs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu SA Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9zg6fo1yBydUEDs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu SA Beginner" + } + ] + }, + { + "name": "Edu TAS Beginner", + "fontFamily": "Edu TAS Beginner, cursive", + "slug": "edu-tas-beginner", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HwelkqD2A.ttf" - }, - { - "family": "Edu VIC WA NT Beginner", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin" ], - "version": "v4", - "lastModified": "2023-03-09", - "files": { - "500": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OllPmFXwnpkeGR.ttf", - "600": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-NJk_mFXwnpkeGR.ttf", - "700": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-Nwk_mFXwnpkeGR.ttf", - "regular": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OXlPmFXwnpkeGR.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HwemkrBWRhvk02.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu TAS Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HCemkrBWRhvk02.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu TAS Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EufWkrBWRhvk02.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu TAS Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EXfWkrBWRhvk02.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu TAS Beginner" + } + ] + }, + { + "name": "Edu VIC WA NT Beginner", + "fontFamily": "Edu VIC WA NT Beginner, cursive", + "slug": "edu-vic-wa-nt-beginner", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OXlMmEVQ0.ttf" - }, - { - "family": "El Messiri", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "arabic", "cyrillic", "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-03-21", - "files": { - "500": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXCe65ghj3OoapG.ttf", - "600": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUufK5ghj3OoapG.ttf", - "700": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUXfK5ghj3OoapG.ttf", - "regular": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe65ghj3OoapG.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe55hjDk.ttf" - }, - { - "family": "Electrolize", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-04-21", - "files": { - "regular": "http://fonts.gstatic.com/s/electrolize/v14/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/electrolize/v14/cIf5Ma1dtE0zSiGSiED7AXEHuIo.ttf" - }, - { - "family": "Elsie", - "variants": [ "regular", "900" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2023-05-02", - "files": { - "900": "http://fonts.gstatic.com/s/elsie/v13/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf", - "regular": "http://fonts.gstatic.com/s/elsie/v13/BCanqZABrez54yYu9slAeLgX.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/elsie/v13/BCanqZABrez54xYv_M0.ttf" - }, - { - "family": "Elsie Swash Caps", - "variants": [ "regular", "900" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "900": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf", - "regular": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845DNN8xGZyVX5MVo_upKf7KnjK0TevfLA.ttf" - }, - { - "family": "Emblema One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOELRAFFo.ttf" - }, - { - "family": "Emilys Candy", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/emilyscandy/v14/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/emilyscandy/v14/2EbgL-1mD1Rnb0OGKudbk0yJrtZv.ttf" - }, - { - "family": "Encode Sans", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v19", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHiZtWP7FJCt2c.ttf", - "200": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHjZtWP7FJCt2c.ttf", - "300": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGD_jZtWP7FJCt2c.ttf", - "500": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGFPjZtWP7FJCt2c.ttf", - "600": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGL_kZtWP7FJCt2c.ttf", - "700": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGIbkZtWP7FJCt2c.ttf", - "800": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHkZtWP7FJCt2c.ttf", - "900": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGMjkZtWP7FJCt2c.ttf", - "regular": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjZtWP7FJCt2c.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjVtSF6A.ttf" - }, - { - "family": "Encode Sans Condensed", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf", - "200": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf", - "300": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf", - "500": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf", - "600": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf", - "700": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf", - "800": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf", - "900": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf", - "regular": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfT2gK-J.ttf" - }, - { - "family": "Encode Sans Expanded", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v11", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf", - "200": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf", - "300": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf", - "500": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf", - "600": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf", - "700": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf", - "800": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf", - "900": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf", - "regular": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpojKQM.ttf" - }, - { - "family": "Encode Sans SC", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v8", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhn8c9NOEEClIc.ttf", - "200": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhm8c9NOEEClIc.ttf", - "300": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HCZm8c9NOEEClIc.ttf", - "500": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HEpm8c9NOEEClIc.ttf", - "600": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HKZh8c9NOEEClIc.ttf", - "700": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HJ9h8c9NOEEClIc.ttf", - "800": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhh8c9NOEEClIc.ttf", - "900": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HNFh8c9NOEEClIc.ttf", - "regular": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhm8c9NOEEClIc.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhmwc5HPA.ttf" - }, - { - "family": "Encode Sans Semi Condensed", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf", - "200": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf", - "300": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf", - "500": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf", - "600": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf", - "700": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf", - "800": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf", - "900": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf", - "regular": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1yQ9ME.ttf" - }, - { - "family": "Encode Sans Semi Expanded", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v19", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf", - "200": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf", - "300": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf", - "500": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf", - "600": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf", - "700": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf", - "800": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf", - "900": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf", - "regular": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TO4s1Kw.ttf" - }, - { - "family": "Engagement", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/engagement/v22/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OXlPmFXwnpkeGR.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu VIC WA NT Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OllPmFXwnpkeGR.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu VIC WA NT Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-NJk_mFXwnpkeGR.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu VIC WA NT Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-Nwk_mFXwnpkeGR.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu VIC WA NT Beginner" + } + ] + }, + { + "name": "El Messiri", + "fontFamily": "El Messiri, sans-serif", + "slug": "el-messiri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe65ghj3OoapG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "El Messiri" + }, + { + "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXCe65ghj3OoapG.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "El Messiri" + }, + { + "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUufK5ghj3OoapG.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "El Messiri" + }, + { + "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUXfK5ghj3OoapG.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "El Messiri" + } + ] + }, + { + "name": "Electrolize", + "fontFamily": "Electrolize, sans-serif", + "slug": "electrolize", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/electrolize/v14/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Electrolize" + } + ] + }, + { + "name": "Elsie", + "fontFamily": "Elsie, system-ui", + "slug": "elsie", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/elsie/v13/BCanqZABrez54yYu9slAeLgX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Elsie" + }, + { + "src": "http://fonts.gstatic.com/s/elsie/v13/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Elsie" + } + ] + }, + { + "name": "Elsie Swash Caps", + "fontFamily": "Elsie Swash Caps, system-ui", + "slug": "elsie-swash-caps", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Elsie Swash Caps" + }, + { + "src": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Elsie Swash Caps" + } + ] + }, + { + "name": "Emblema One", + "fontFamily": "Emblema One, system-ui", + "slug": "emblema-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Emblema One" + } + ] + }, + { + "name": "Emilys Candy", + "fontFamily": "Emilys Candy, system-ui", + "slug": "emilys-candy", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/emilyscandy/v14/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Emilys Candy" + } + ] + }, + { + "name": "Encode Sans", + "fontFamily": "Encode Sans, sans-serif", + "slug": "encode-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHiZtWP7FJCt2c.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHjZtWP7FJCt2c.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGD_jZtWP7FJCt2c.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjZtWP7FJCt2c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGFPjZtWP7FJCt2c.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGL_kZtWP7FJCt2c.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGIbkZtWP7FJCt2c.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHkZtWP7FJCt2c.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGMjkZtWP7FJCt2c.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + } + ] + }, + { + "name": "Encode Sans Condensed", + "fontFamily": "Encode Sans Condensed, sans-serif", + "slug": "encode-sans-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + } + ] + }, + { + "name": "Encode Sans Expanded", + "fontFamily": "Encode Sans Expanded, sans-serif", + "slug": "encode-sans-expanded", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + } + ] + }, + { + "name": "Encode Sans SC", + "fontFamily": "Encode Sans SC, sans-serif", + "slug": "encode-sans-sc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhn8c9NOEEClIc.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhm8c9NOEEClIc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HCZm8c9NOEEClIc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhm8c9NOEEClIc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HEpm8c9NOEEClIc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HKZh8c9NOEEClIc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HJ9h8c9NOEEClIc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhh8c9NOEEClIc.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HNFh8c9NOEEClIc.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + } + ] + }, + { + "name": "Encode Sans Semi Condensed", + "fontFamily": "Encode Sans Semi Condensed, sans-serif", + "slug": "encode-sans-semi-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + } + ] + }, + { + "name": "Encode Sans Semi Expanded", + "fontFamily": "Encode Sans Semi Expanded, sans-serif", + "slug": "encode-sans-semi-expanded", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + } + ] + }, + { + "name": "Engagement", + "fontFamily": "Engagement, cursive", + "slug": "engagement", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/engagement/v22/x3dlckLDZbqa7RUs9MFVbNsmtw.ttf" - }, - { - "family": "Englebert", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/englebert/v17/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/englebert/v17/xn7iYH8w2XGrC8AR4HSBTv3c.ttf" - }, - { - "family": "Enriqueta", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf", - "600": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf", - "700": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf", - "regular": "http://fonts.gstatic.com/s/enriqueta/v15/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/enriqueta/v15/goksH6L7AUFrRvV44HVjSkqn.ttf" - }, - { - "family": "Ephesis", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ephesis/v7/uU9PCBUS8IerL2VG7xPb3vyHmlI.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/engagement/v22/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Engagement" + } + ] + }, + { + "name": "Englebert", + "fontFamily": "Englebert, sans-serif", + "slug": "englebert", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/englebert/v17/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Englebert" + } + ] + }, + { + "name": "Enriqueta", + "fontFamily": "Enriqueta, serif", + "slug": "enriqueta", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/enriqueta/v15/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Enriqueta" + }, + { + "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Enriqueta" + }, + { + "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Enriqueta" + }, + { + "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Enriqueta" + } + ] + }, + { + "name": "Ephesis", + "fontFamily": "Ephesis, cursive", + "slug": "ephesis", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ephesis/v7/uU9PCBUS8IerL2VG3xLR2g.ttf" - }, - { - "family": "Epilogue", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v17", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDLiDJXVigHPVA.ttf", - "200": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDPiDJXVigHPVA.ttf", - "300": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXbjPiDJXVigHPVA.ttf", - "500": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXAjPiDJXVigHPVA.ttf", - "600": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX7jTiDJXVigHPVA.ttf", - "700": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiDJXVigHPVA.ttf", - "800": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiDJXVigHPVA.ttf", - "900": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXmTTiDJXVigHPVA.ttf", - "regular": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiDJXVigHPVA.ttf", - "100italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKTp_RqATfVHNU.ttf", - "200italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKT5_RqATfVHNU.ttf", - "300italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HBUT5_RqATfVHNU.ttf", - "italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKT5_RqATfVHNU.ttf", - "500italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HA4T5_RqATfVHNU.ttf", - "600italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDUSJ_RqATfVHNU.ttf", - "700italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDtSJ_RqATfVHNU.ttf", - "800italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKSJ_RqATfVHNU.ttf", - "900italic": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCjSJ_RqATfVHNU.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPSDZ_R.ttf" - }, - { - "family": "Erica One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ericaone/v23/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ericaone/v23/WBLnrEXccV9VGrOKmGDFWkXI.ttf" - }, - { - "family": "Esteban", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/esteban/v15/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/esteban/v15/r05bGLZE-bdGdN-GROqJ4g.ttf" - }, - { - "family": "Estonia", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v9", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/estonia/v9/7Au_p_4ijSecA1yHCCL8zkwMIFg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ephesis/v7/uU9PCBUS8IerL2VG7xPb3vyHmlI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ephesis" + } + ] + }, + { + "name": "Epilogue", + "fontFamily": "Epilogue, sans-serif", + "slug": "epilogue", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDLiDJXVigHPVA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDPiDJXVigHPVA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXbjPiDJXVigHPVA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiDJXVigHPVA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXAjPiDJXVigHPVA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX7jTiDJXVigHPVA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiDJXVigHPVA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiDJXVigHPVA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXmTTiDJXVigHPVA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKTp_RqATfVHNU.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKT5_RqATfVHNU.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HBUT5_RqATfVHNU.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKT5_RqATfVHNU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HA4T5_RqATfVHNU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDUSJ_RqATfVHNU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDtSJ_RqATfVHNU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKSJ_RqATfVHNU.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCjSJ_RqATfVHNU.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Epilogue" + } + ] + }, + { + "name": "Erica One", + "fontFamily": "Erica One, system-ui", + "slug": "erica-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ericaone/v23/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Erica One" + } + ] + }, + { + "name": "Esteban", + "fontFamily": "Esteban, serif", + "slug": "esteban", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/esteban/v15/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Esteban" + } + ] + }, + { + "name": "Estonia", + "fontFamily": "Estonia, cursive", + "slug": "estonia", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/estonia/v9/7Au_p_4ijSecA1yHOCP2yg.ttf" - }, - { - "family": "Euphoria Script", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/euphoriascript/v16/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/estonia/v9/7Au_p_4ijSecA1yHCCL8zkwMIFg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Estonia" + } + ] + }, + { + "name": "Euphoria Script", + "fontFamily": "Euphoria Script, cursive", + "slug": "euphoria-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/euphoriascript/v16/mFTpWb0X2bLb_cx6To2B8GpKoD5qkvxX.ttf" - }, - { - "family": "Ewert", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ewert/v21/va9I4kzO2tFODYBvS-J3kbDP.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ewert/v21/va9I4kzO2tFODbBuQeY.ttf" - }, - { - "family": "Exo", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwNsOl4p5Is.ttf", - "200": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwNsOl4p5Is.ttf", - "300": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwNsOl4p5Is.ttf", - "500": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwNsOl4p5Is.ttf", - "600": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwNsOl4p5Is.ttf", - "700": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwNsOl4p5Is.ttf", - "800": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwNsOl4p5Is.ttf", - "900": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwNsOl4p5Is.ttf", - "regular": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwNsOl4p5Is.ttf", - "100italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040FmPnws9Iu-uA.ttf", - "200italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmPnws9Iu-uA.ttf", - "300italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmPnws9Iu-uA.ttf", - "italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040BmPnws9Iu-uA.ttf", - "500italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t00UBmPnws9Iu-uA.ttf", - "600italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmPnws9Iu-uA.ttf", - "700italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmPnws9Iu-uA.ttf", - "800italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmPnws9Iu-uA.ttf", - "900italic": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmPnws9Iu-uA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3OwJmPg.ttf" - }, - { - "family": "Exo 2", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPtq-rpvLpQ.ttf", - "200": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPtq-rpvLpQ.ttf", - "300": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPtq-rpvLpQ.ttf", - "500": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPtq-rpvLpQ.ttf", - "600": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPtq-rpvLpQ.ttf", - "700": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPtq-rpvLpQ.ttf", - "800": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPtq-rpvLpQ.ttf", - "900": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPtq-rpvLpQ.ttf", - "regular": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPtq-rpvLpQ.ttf", - "100italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6jJ7bpQBL.ttf", - "200italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6jJ7bpQBL.ttf", - "300italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6jJ7bpQBL.ttf", - "italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6jJ7bpQBL.ttf", - "500italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6jJ7bpQBL.ttf", - "600italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6jJ7bpQBL.ttf", - "700italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6jJ7bpQBL.ttf", - "800italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6jJ7bpQBL.ttf", - "900italic": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6jJ7bpQBL.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKsP9C6.ttf" - }, - { - "family": "Expletus Sans", - "variants": [ - "regular", - "500", - "600", - "700", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2023-01-06", - "files": { - "500": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSq2s1oFQTcXfMm.ttf", - "600": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaRG3c1oFQTcXfMm.ttf", - "700": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaR_3c1oFQTcXfMm.ttf", - "regular": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2s1oFQTcXfMm.ttf", - "italic": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmSUrHwD-WOMmKKY.ttf", - "500italic": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmRcrHwD-WOMmKKY.ttf", - "600italic": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmfssHwD-WOMmKKY.ttf", - "700italic": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmcIsHwD-WOMmKKY.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2v1pHwA.ttf" - }, - { - "family": "Explora", - "variants": [ "regular" ], - "subsets": [ "cherokee", "latin", "latin-ext", "vietnamese" ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/explora/v7/tsstApxFfjUH4wrvc1qPonC3vqc.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/euphoriascript/v16/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Euphoria Script" + } + ] + }, + { + "name": "Ewert", + "fontFamily": "Ewert, system-ui", + "slug": "ewert", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ewert/v21/va9I4kzO2tFODYBvS-J3kbDP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ewert" + } + ] + }, + { + "name": "Exo", + "fontFamily": "Exo, sans-serif", + "slug": "exo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwNsOl4p5Is.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwNsOl4p5Is.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwNsOl4p5Is.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwNsOl4p5Is.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwNsOl4p5Is.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwNsOl4p5Is.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwNsOl4p5Is.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwNsOl4p5Is.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwNsOl4p5Is.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040FmPnws9Iu-uA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmPnws9Iu-uA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmPnws9Iu-uA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040BmPnws9Iu-uA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t00UBmPnws9Iu-uA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmPnws9Iu-uA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmPnws9Iu-uA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmPnws9Iu-uA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmPnws9Iu-uA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Exo" + } + ] + }, + { + "name": "Exo 2", + "fontFamily": "Exo 2, sans-serif", + "slug": "exo-2", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPtq-rpvLpQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPtq-rpvLpQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPtq-rpvLpQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPtq-rpvLpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPtq-rpvLpQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPtq-rpvLpQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPtq-rpvLpQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPtq-rpvLpQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPtq-rpvLpQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6jJ7bpQBL.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6jJ7bpQBL.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6jJ7bpQBL.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6jJ7bpQBL.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6jJ7bpQBL.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6jJ7bpQBL.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6jJ7bpQBL.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6jJ7bpQBL.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6jJ7bpQBL.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Exo 2" + } + ] + }, + { + "name": "Expletus Sans", + "fontFamily": "Expletus Sans, system-ui", + "slug": "expletus-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2s1oFQTcXfMm.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSq2s1oFQTcXfMm.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaRG3c1oFQTcXfMm.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaR_3c1oFQTcXfMm.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmSUrHwD-WOMmKKY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmRcrHwD-WOMmKKY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmfssHwD-WOMmKKY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmcIsHwD-WOMmKKY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Expletus Sans" + } + ] + }, + { + "name": "Explora", + "fontFamily": "Explora, cursive", + "slug": "explora", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/explora/v7/tsstApxFfjUH4wrvQ1uFpg.ttf" - }, - { - "family": "Fahkwang", - "variants": [ - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf", - "300": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf", - "500": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf", - "600": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf", - "700": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf", - "200italic": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf", - "300italic": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf", - "regular": "http://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf", - "italic": "http://fonts.gstatic.com/s/fahkwang/v16/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf", - "500italic": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf", - "600italic": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf", - "700italic": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpOqOuLk.ttf" - }, - { - "family": "Familjen Grotesk", - "variants": [ - "regular", - "500", - "600", - "700", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v8", - "lastModified": "2023-03-21", - "files": { - "500": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMG7aSztc1jcEYq2.ttf", - "600": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFXbiztc1jcEYq2.ttf", - "700": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFubiztc1jcEYq2.ttf", - "regular": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMGJaSztc1jcEYq2.ttf", - "italic": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKsSueVz-FJq2Rv4.ttf", - "500italic": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKvaueVz-FJq2Rv4.ttf", - "600italic": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKhqpeVz-FJq2Rv4.ttf", - "700italic": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKiOpeVz-FJq2Rv4.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMGJaRzseVw.ttf" - }, - { - "family": "Fanwood Text", - "variants": [ "regular", "italic" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf", - "italic": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFtErwl05Ad_vSCF6Fq7xX2RNzc.ttf" - }, - { - "family": "Farro", - "variants": [ "300", "regular", "500", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf", - "500": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf", - "700": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf", - "regular": "http://fonts.gstatic.com/s/farro/v14/i7dEIFl3byGNHZVNHLq2cV5d.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/farro/v14/i7dEIFl3byGNHaVMFr4.ttf" - }, - { - "family": "Farsan", - "variants": [ "regular" ], - "subsets": [ "gujarati", "latin", "latin-ext", "vietnamese" ], - "version": "v19", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/farsan/v19/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/farsan/v19/VEMwRoJ0vY_zsyzK26Wt.ttf" - }, - { - "family": "Fascinate", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/fascinate/v21/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fascinate/v21/z7NWdRrufC8XJK0IIElS1bzU.ttf" - }, - { - "family": "Fascinate Inline", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/fascinateinline/v22/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fascinateinline/v22/jVyR7mzzB3zc-jp6QCAu60poNqIy5gzIeQ.ttf" - }, - { - "family": "Faster One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2023-03-21", - "files": { - "regular": "http://fonts.gstatic.com/s/fasterone/v19/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fasterone/v19/H4ciBXCHmdfClFb-vWhf-LqYgg.ttf" - }, - { - "family": "Fasthand", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin" ], - "version": "v26", - "lastModified": "2022-04-21", - "files": { - "regular": "http://fonts.gstatic.com/s/fasthand/v26/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fasthand/v26/0yb9GDohyKTYn_ZEERkvaEg.ttf" - }, - { - "family": "Fauna One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-03-21", - "files": { - "regular": "http://fonts.gstatic.com/s/faunaone/v15/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/faunaone/v15/wlpzgwTPBVpjpCuwkuEB2EZP.ttf" - }, - { - "family": "Faustina", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "800", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2023-03-21", - "files": { - "300": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHls3IEvGVWWe8tbEg.ttf", - "500": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvGVWWe8tbEg.ttf", - "600": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvGVWWe8tbEg.ttf", - "700": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvGVWWe8tbEg.ttf", - "800": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsAoYvGVWWe8tbEg.ttf", - "regular": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvGVWWe8tbEg.ttf", - "300italic": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsKZWl-SWc5LEnoF.ttf", - "italic": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-SWc5LEnoF.ttf", - "500italic": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-SWc5LEnoF.ttf", - "600italic": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-SWc5LEnoF.ttf", - "700italic": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-SWc5LEnoF.ttf", - "800italic": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsJHXV-SWc5LEnoF.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEfGF-S.ttf" - }, - { - "family": "Federant", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v25", - "lastModified": "2022-04-21", - "files": { - "regular": "http://fonts.gstatic.com/s/federant/v25/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/federant/v25/2sDdZGNfip_eirT0_X0iT0U.ttf" - }, - { - "family": "Federo", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-04-21", - "files": { - "regular": "http://fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbWjFma.ttf" - }, - { - "family": "Felipa", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/felipa/v20/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/explora/v7/tsstApxFfjUH4wrvc1qPonC3vqc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Explora" + } + ] + }, + { + "name": "Fahkwang", + "fontFamily": "Fahkwang, sans-serif", + "slug": "fahkwang", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + } + ] + }, + { + "name": "Familjen Grotesk", + "fontFamily": "Familjen Grotesk, sans-serif", + "slug": "familjen-grotesk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMGJaSztc1jcEYq2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMG7aSztc1jcEYq2.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFXbiztc1jcEYq2.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFubiztc1jcEYq2.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKsSueVz-FJq2Rv4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKvaueVz-FJq2Rv4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKhqpeVz-FJq2Rv4.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKiOpeVz-FJq2Rv4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Familjen Grotesk" + } + ] + }, + { + "name": "Fanwood Text", + "fontFamily": "Fanwood Text, serif", + "slug": "fanwood-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fanwood Text" + }, + { + "src": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fanwood Text" + } + ] + }, + { + "name": "Farro", + "fontFamily": "Farro, sans-serif", + "slug": "farro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Farro" + }, + { + "src": "http://fonts.gstatic.com/s/farro/v14/i7dEIFl3byGNHZVNHLq2cV5d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Farro" + }, + { + "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Farro" + }, + { + "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Farro" + } + ] + }, + { + "name": "Farsan", + "fontFamily": "Farsan, system-ui", + "slug": "farsan", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/farsan/v19/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Farsan" + } + ] + }, + { + "name": "Fascinate", + "fontFamily": "Fascinate, system-ui", + "slug": "fascinate", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fascinate/v21/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fascinate" + } + ] + }, + { + "name": "Fascinate Inline", + "fontFamily": "Fascinate Inline, system-ui", + "slug": "fascinate-inline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fascinateinline/v22/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fascinate Inline" + } + ] + }, + { + "name": "Faster One", + "fontFamily": "Faster One, system-ui", + "slug": "faster-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fasterone/v19/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Faster One" + } + ] + }, + { + "name": "Fasthand", + "fontFamily": "Fasthand, system-ui", + "slug": "fasthand", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fasthand/v26/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fasthand" + } + ] + }, + { + "name": "Fauna One", + "fontFamily": "Fauna One, serif", + "slug": "fauna-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/faunaone/v15/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fauna One" + } + ] + }, + { + "name": "Faustina", + "fontFamily": "Faustina, serif", + "slug": "faustina", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHls3IEvGVWWe8tbEg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvGVWWe8tbEg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvGVWWe8tbEg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvGVWWe8tbEg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvGVWWe8tbEg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsAoYvGVWWe8tbEg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsKZWl-SWc5LEnoF.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-SWc5LEnoF.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-SWc5LEnoF.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-SWc5LEnoF.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-SWc5LEnoF.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsJHXV-SWc5LEnoF.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Faustina" + } + ] + }, + { + "name": "Federant", + "fontFamily": "Federant, system-ui", + "slug": "federant", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/federant/v25/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Federant" + } + ] + }, + { + "name": "Federo", + "fontFamily": "Federo, sans-serif", + "slug": "federo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Federo" + } + ] + }, + { + "name": "Felipa", + "fontFamily": "Felipa, cursive", + "slug": "felipa", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/felipa/v20/FwZa7-owz1Eu4F_ASd6A.ttf" - }, - { - "family": "Fenix", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5ostKzAFvs8o.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5rssITQ.ttf" - }, - { - "family": "Festive", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/festive/v7/cY9Ffj6KX1xcoDWhFtfgy9HTkak.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/felipa/v20/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Felipa" + } + ] + }, + { + "name": "Fenix", + "fontFamily": "Fenix, serif", + "slug": "fenix", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5ostKzAFvs8o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fenix" + } + ] + }, + { + "name": "Festive", + "fontFamily": "Festive, cursive", + "slug": "festive", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/festive/v7/cY9Ffj6KX1xcoDWhJtbqzw.ttf" - }, - { - "family": "Figtree", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v4", - "lastModified": "2023-03-21", - "files": { - "300": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5ewkEU4HTy.ttf", - "500": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5ewkEU4HTy.ttf", - "600": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15ewkEU4HTy.ttf", - "700": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15ewkEU4HTy.ttf", - "800": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_f_R15ewkEU4HTy.ttf", - "900": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15ewkEU4HTy.ttf", - "regular": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5ewkEU4HTy.ttf", - "300italic": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A-gdyEU25WTybO8.ttf", - "italic": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A7YdyEU25WTybO8.ttf", - "500italic": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A4QdyEU25WTybO8.ttf", - "600italic": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A2gayEU25WTybO8.ttf", - "700italic": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A1EayEU25WTybO8.ttf", - "800italic": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3AzYayEU25WTybO8.ttf", - "900italic": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3Ax8ayEU25WTybO8.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QG5fyEU.ttf" - }, - { - "family": "Finger Paint", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/fingerpaint/v15/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fingerpaint/v15/0QInMXVJ-o-oRn_7dron8YW-8pzW.ttf" - }, - { - "family": "Finlandica", - "variants": [ - "regular", - "500", - "600", - "700", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v8", - "lastModified": "2023-03-09", - "files": { - "500": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19AJrEjx9i5ss3a3.ttf", - "600": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dlq0jx9i5ss3a3.ttf", - "700": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dcq0jx9i5ss3a3.ttf", - "regular": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19A7rEjx9i5ss3a3.ttf", - "italic": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz76Cy_CpOtma3uNQ.ttf", - "500italic": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz75Ky_CpOtma3uNQ.ttf", - "600italic": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz7361_CpOtma3uNQ.ttf", - "700italic": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz70e1_CpOtma3uNQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19A7rHjw_Co.ttf" - }, - { - "family": "Fira Code", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext" - ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf", - "500": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf", - "600": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf", - "700": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf", - "regular": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/festive/v7/cY9Ffj6KX1xcoDWhFtfgy9HTkak.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Festive" + } + ] + }, + { + "name": "Figtree", + "fontFamily": "Figtree, sans-serif", + "slug": "figtree", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5ewkEU4HTy.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5ewkEU4HTy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5ewkEU4HTy.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15ewkEU4HTy.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15ewkEU4HTy.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_f_R15ewkEU4HTy.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15ewkEU4HTy.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A-gdyEU25WTybO8.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A7YdyEU25WTybO8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A4QdyEU25WTybO8.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A2gayEU25WTybO8.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A1EayEU25WTybO8.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3AzYayEU25WTybO8.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3Ax8ayEU25WTybO8.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Figtree" + } + ] + }, + { + "name": "Finger Paint", + "fontFamily": "Finger Paint, system-ui", + "slug": "finger-paint", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fingerpaint/v15/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Finger Paint" + } + ] + }, + { + "name": "Finlandica", + "fontFamily": "Finlandica, sans-serif", + "slug": "finlandica", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19A7rEjx9i5ss3a3.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19AJrEjx9i5ss3a3.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dlq0jx9i5ss3a3.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dcq0jx9i5ss3a3.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz76Cy_CpOtma3uNQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz75Ky_CpOtma3uNQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz7361_CpOtma3uNQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz70e1_CpOtma3uNQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Finlandica" + } + ] + }, + { + "name": "Fira Code", + "fontFamily": "Fira Code, monospace", + "slug": "fira-code", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sJVb7Mw.ttf" - }, - { - "family": "Fira Mono", - "variants": [ "regular", "500", "700" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext" - ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf", - "700": "http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf", - "regular": "http://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fira Code" + }, + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Code" + }, + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Code" + }, + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fira Code" + }, + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Code" + } + ] + }, + { + "name": "Fira Mono", + "fontFamily": "Fira Mono, monospace", + "slug": "fira-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtgIP7X.ttf" - }, - { - "family": "Fira Sans", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v17", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf", - "200": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf", - "300": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf", - "500": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf", - "600": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf", - "700": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf", - "800": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf", - "900": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf", - "100italic": "http://fonts.gstatic.com/s/firasans/v17/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf", - "200italic": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf", - "300italic": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf", - "regular": "http://fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf", - "italic": "http://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf", - "500italic": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf", - "600italic": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf", - "700italic": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf", - "800italic": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf", - "900italic": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5VvkYjO.ttf" - }, - { - "family": "Fira Sans Condensed", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf", - "200": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf", - "300": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf", - "500": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf", - "600": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf", - "700": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf", - "800": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf", - "900": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf", - "100italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf", - "200italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf", - "300italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf", - "regular": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf", - "italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf", - "500italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf", - "600italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf", - "700italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf", - "800italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf", - "900italic": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOhEADFm8hSaQTFG18FErVhsC9x-tarUfDtqA.ttf" - }, - { - "family": "Fira Sans Extra Condensed", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf", - "200": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf", - "300": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf", - "500": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf", - "600": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf", - "700": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf", - "800": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf", - "900": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf", - "100italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf", - "200italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf", - "300italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf", - "regular": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf", - "italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf", - "500italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf", - "600italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf", - "700italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf", - "800italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf", - "900italic": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fmuvw.ttf" - }, - { - "family": "Fjalla One", - "variants": [ "regular" ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], - "version": "v15", - "lastModified": "2023-04-04", - "files": { - "regular": "http://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFrOd6lw.ttf" - }, - { - "family": "Fjord One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKb6ORE.ttf" - }, - { - "family": "Flamenco", - "variants": [ "300", "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/flamenco/v18/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf", - "regular": "http://fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssaWGHK06UY30.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssZWHFqk.ttf" - }, - { - "family": "Flavors", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/flavors/v22/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/flavors/v22/FBV2dDrhxqmveJTpXk3vMg.ttf" - }, - { - "family": "Fleur De Leah", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/fleurdeleah/v7/AYCNpXX7ftYZWLhv9UmPJTMC5vat4I_Gdq0.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Mono" + }, + { + "src": "http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Mono" + }, + { + "src": "http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Mono" + } + ] + }, + { + "name": "Fira Sans", + "fontFamily": "Fira Sans, sans-serif", + "slug": "fira-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + } + ] + }, + { + "name": "Fira Sans Condensed", + "fontFamily": "Fira Sans Condensed, sans-serif", + "slug": "fira-sans-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + } + ] + }, + { + "name": "Fira Sans Extra Condensed", + "fontFamily": "Fira Sans Extra Condensed, sans-serif", + "slug": "fira-sans-extra-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + } + ] + }, + { + "name": "Fjalla One", + "fontFamily": "Fjalla One, sans-serif", + "slug": "fjalla-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fjalla One" + } + ] + }, + { + "name": "Fjord One", + "fontFamily": "Fjord One, serif", + "slug": "fjord-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fjord One" + } + ] + }, + { + "name": "Flamenco", + "fontFamily": "Flamenco, system-ui", + "slug": "flamenco", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flamenco/v18/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Flamenco" + }, + { + "src": "http://fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssaWGHK06UY30.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flamenco" + } + ] + }, + { + "name": "Flavors", + "fontFamily": "Flavors, system-ui", + "slug": "flavors", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flavors/v22/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flavors" + } + ] + }, + { + "name": "Fleur De Leah", + "fontFamily": "Fleur De Leah, cursive", + "slug": "fleur-de-leah", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fleurdeleah/v7/AYCNpXX7ftYZWLhv9UmPJTMC1ven5A.ttf" - }, - { - "family": "Flow Block", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v7", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/flowblock/v7/wlp0gwfPCEB65UmTk-d6-WZlbCBXE_I.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/flowblock/v7/wlp0gwfPCEB65UmTk-d6yWdvaA.ttf" - }, - { - "family": "Flow Circular", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v7", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/flowcircular/v7/lJwB-pc4j2F-H8YKuyvfxdZ45ifpWdr2rIg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/flowcircular/v7/lJwB-pc4j2F-H8YKuyvfxdZ41ibjXQ.ttf" - }, - { - "family": "Flow Rounded", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v7", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/flowrounded/v7/-zki91mtwsU9qlLiGwD4oQX3oZX-Xup87g.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/flowrounded/v7/-zki91mtwsU9qlLiGwD4oQXHoJ_6.ttf" - }, - { - "family": "Foldit", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpANmapUYLHkN80.ttf", - "200": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhAMmapUYLHkN80.ttf", - "300": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xs4MmapUYLHkN80.ttf", - "500": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XqIMmapUYLHkN80.ttf", - "600": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xk4LmapUYLHkN80.ttf", - "700": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XncLmapUYLHkN80.ttf", - "800": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhALmapUYLHkN80.ttf", - "900": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XjkLmapUYLHkN80.ttf", - "regular": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpAMmapUYLHkN80.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpAMqateZA.ttf" - }, - { - "family": "Fondamento", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/fondamento/v17/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf", - "italic": "http://fonts.gstatic.com/s/fondamento/v17/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fleurdeleah/v7/AYCNpXX7ftYZWLhv9UmPJTMC5vat4I_Gdq0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fleur De Leah" + } + ] + }, + { + "name": "Flow Block", + "fontFamily": "Flow Block, system-ui", + "slug": "flow-block", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flowblock/v7/wlp0gwfPCEB65UmTk-d6-WZlbCBXE_I.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flow Block" + } + ] + }, + { + "name": "Flow Circular", + "fontFamily": "Flow Circular, system-ui", + "slug": "flow-circular", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flowcircular/v7/lJwB-pc4j2F-H8YKuyvfxdZ45ifpWdr2rIg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flow Circular" + } + ] + }, + { + "name": "Flow Rounded", + "fontFamily": "Flow Rounded, system-ui", + "slug": "flow-rounded", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flowrounded/v7/-zki91mtwsU9qlLiGwD4oQX3oZX-Xup87g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flow Rounded" + } + ] + }, + { + "name": "Foldit", + "fontFamily": "Foldit, system-ui", + "slug": "foldit", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpANmapUYLHkN80.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhAMmapUYLHkN80.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xs4MmapUYLHkN80.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpAMmapUYLHkN80.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XqIMmapUYLHkN80.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xk4LmapUYLHkN80.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XncLmapUYLHkN80.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhALmapUYLHkN80.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XjkLmapUYLHkN80.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Foldit" + } + ] + }, + { + "name": "Fondamento", + "fontFamily": "Fondamento, cursive", + "slug": "fondamento", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fondamento/v17/4UaHrEJGsxNmFTPDnkaJ96zp4g.ttf" - }, - { - "family": "Fontdiner Swanky", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/fontdinerswanky/v19/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fontdinerswanky/v19/ijwOs4XgRNsiaI5-hcVb4hQgMvCD0uAVLg.ttf" - }, - { - "family": "Forum", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/forum/v16/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/forum/v16/6aey4Ky-Vb8Ew8IXOpc.ttf" - }, - { - "family": "Fragment Mono", - "variants": [ "regular", "italic" ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext" ], - "version": "v1", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/fragmentmono/v1/4iCr6K5wfMRRjxp0DA6-2CLnN4RNh4UI_1U.ttf", - "italic": "http://fonts.gstatic.com/s/fragmentmono/v1/4iC16K5wfMRRjxp0DA6-2CLnB4ZHg6cN71URtQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fondamento/v17/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fondamento" + }, + { + "src": "http://fonts.gstatic.com/s/fondamento/v17/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fondamento" + } + ] + }, + { + "name": "Fontdiner Swanky", + "fontFamily": "Fontdiner Swanky, system-ui", + "slug": "fontdiner-swanky", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fontdinerswanky/v19/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fontdiner Swanky" + } + ] + }, + { + "name": "Forum", + "fontFamily": "Forum, system-ui", + "slug": "forum", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/forum/v16/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Forum" + } + ] + }, + { + "name": "Fragment Mono", + "fontFamily": "Fragment Mono, monospace", + "slug": "fragment-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fragmentmono/v1/4iCr6K5wfMRRjxp0DA6-2CLnB4VHgw.ttf" - }, - { - "family": "Francois One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v21", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/francoisone/v21/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/francoisone/v21/_Xmr-H4zszafZw3A-KPSZut9xwiU.ttf" - }, - { - "family": "Frank Ruhl Libre", - "variants": [ "300", "regular", "500", "600", "700", "800", "900" ], - "subsets": [ "hebrew", "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2023-04-27", - "files": { - "300": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw6bYVqQPxR2EUR_.ttf", - "500": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw73YVqQPxR2EUR_.ttf", - "600": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4bZlqQPxR2EUR_.ttf", - "700": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4iZlqQPxR2EUR_.ttf", - "800": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5FZlqQPxR2EUR_.ttf", - "900": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5sZlqQPxR2EUR_.ttf", - "regular": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYVqQPxR2EUR_.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYWqRNRA.ttf" - }, - { - "family": "Fraunces", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v31", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxqjDvTShUtWNg.ttf", - "200": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxujDvTShUtWNg.ttf", - "300": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIc6RujDvTShUtWNg.ttf", - "500": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIchRujDvTShUtWNg.ttf", - "600": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcaRyjDvTShUtWNg.ttf", - "700": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcUByjDvTShUtWNg.ttf", - "800": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxyjDvTShUtWNg.ttf", - "900": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcHhyjDvTShUtWNg.ttf", - "regular": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxujDvTShUtWNg.ttf", - "100italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTP7Wp05GNi3k.ttf", - "200italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLTf7Wp05GNi3k.ttf", - "300italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1gVTf7Wp05GNi3k.ttf", - "italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTf7Wp05GNi3k.ttf", - "500italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1h5Tf7Wp05GNi3k.ttf", - "600italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1iVSv7Wp05GNi3k.ttf", - "700italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1isSv7Wp05GNi3k.ttf", - "800italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLSv7Wp05GNi3k.ttf", - "900italic": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jiSv7Wp05GNi3k.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxuTD_7W.ttf" - }, - { - "family": "Freckle Face", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/freckleface/v15/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/freckleface/v15/AMOWz4SXrmKHCvXTohxY-YIEUliy.ttf" - }, - { - "family": "Fredericka the Great", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/frederickathegreat/v16/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/frederickathegreat/v16/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV--SlxbI.ttf" - }, - { - "family": "Fredoka", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "hebrew", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-04-04", - "files": { - "300": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OryLMFuOLlNldbw.ttf", - "500": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OwyLMFuOLlNldbw.ttf", - "600": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OLyXMFuOLlNldbw.ttf", - "700": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiXMFuOLlNldbw.ttf", - "regular": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3O8SLMFuOLlNldbw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3O8SL8F-mP.ttf" - }, - { - "family": "Freehand", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin" ], - "version": "v27", - "lastModified": "2022-04-21", - "files": { - "regular": "http://fonts.gstatic.com/s/freehand/v27/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/freehand/v27/cIf-Ma5eqk01VjKTgDmARGE.ttf" - }, - { - "family": "Fresca", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/fresca/v18/6ae94K--SKgCzbM2Gr0W13DKPA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fresca/v18/6ae94K--SKgCzbMGG7cS.ttf" - }, - { - "family": "Frijole", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ3xLR2g.ttf" - }, - { - "family": "Fruktur", - "variants": [ "regular", "italic" ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], - "version": "v27", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/fruktur/v27/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf", - "italic": "http://fonts.gstatic.com/s/fruktur/v27/SZc73FHsOru5QYsMTz_MlWjX4DJXgQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fruktur/v27/SZc53FHsOru5QYsMTzzMlQ.ttf" - }, - { - "family": "Fugaz One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/fugazone/v15/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fugazone/v15/rax_HiWKp9EAITukFsl8BRha.ttf" - }, - { - "family": "Fuggles", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v9", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/fuggles/v9/k3kQo8UEJOlD1hpOTd7iL0nAMaM.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fragmentmono/v1/4iCr6K5wfMRRjxp0DA6-2CLnN4RNh4UI_1U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fragment Mono" + }, + { + "src": "http://fonts.gstatic.com/s/fragmentmono/v1/4iC16K5wfMRRjxp0DA6-2CLnB4ZHg6cN71URtQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fragment Mono" + } + ] + }, + { + "name": "Francois One", + "fontFamily": "Francois One, sans-serif", + "slug": "francois-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/francoisone/v21/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Francois One" + } + ] + }, + { + "name": "Frank Ruhl Libre", + "fontFamily": "Frank Ruhl Libre, serif", + "slug": "frank-ruhl-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw6bYVqQPxR2EUR_.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYVqQPxR2EUR_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw73YVqQPxR2EUR_.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4bZlqQPxR2EUR_.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4iZlqQPxR2EUR_.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5FZlqQPxR2EUR_.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5sZlqQPxR2EUR_.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + } + ] + }, + { + "name": "Fraunces", + "fontFamily": "Fraunces, serif", + "slug": "fraunces", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxqjDvTShUtWNg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxujDvTShUtWNg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIc6RujDvTShUtWNg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxujDvTShUtWNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIchRujDvTShUtWNg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcaRyjDvTShUtWNg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcUByjDvTShUtWNg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxyjDvTShUtWNg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcHhyjDvTShUtWNg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTP7Wp05GNi3k.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLTf7Wp05GNi3k.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1gVTf7Wp05GNi3k.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTf7Wp05GNi3k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1h5Tf7Wp05GNi3k.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1iVSv7Wp05GNi3k.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1isSv7Wp05GNi3k.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLSv7Wp05GNi3k.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jiSv7Wp05GNi3k.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Fraunces" + } + ] + }, + { + "name": "Freckle Face", + "fontFamily": "Freckle Face, system-ui", + "slug": "freckle-face", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/freckleface/v15/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Freckle Face" + } + ] + }, + { + "name": "Fredericka the Great", + "fontFamily": "Fredericka the Great, system-ui", + "slug": "fredericka-the-great", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/frederickathegreat/v16/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fredericka the Great" + } + ] + }, + { + "name": "Fredoka", + "fontFamily": "Fredoka, sans-serif", + "slug": "fredoka", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OryLMFuOLlNldbw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fredoka" + }, + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3O8SLMFuOLlNldbw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fredoka" + }, + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OwyLMFuOLlNldbw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fredoka" + }, + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OLyXMFuOLlNldbw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fredoka" + }, + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiXMFuOLlNldbw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fredoka" + } + ] + }, + { + "name": "Freehand", + "fontFamily": "Freehand, system-ui", + "slug": "freehand", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/freehand/v27/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Freehand" + } + ] + }, + { + "name": "Fresca", + "fontFamily": "Fresca, sans-serif", + "slug": "fresca", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fresca/v18/6ae94K--SKgCzbM2Gr0W13DKPA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fresca" + } + ] + }, + { + "name": "Frijole", + "fontFamily": "Frijole, system-ui", + "slug": "frijole", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Frijole" + } + ] + }, + { + "name": "Fruktur", + "fontFamily": "Fruktur, system-ui", + "slug": "fruktur", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fruktur/v27/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fruktur" + }, + { + "src": "http://fonts.gstatic.com/s/fruktur/v27/SZc73FHsOru5QYsMTz_MlWjX4DJXgQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fruktur" + } + ] + }, + { + "name": "Fugaz One", + "fontFamily": "Fugaz One, system-ui", + "slug": "fugaz-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fugazone/v15/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fugaz One" + } + ] + }, + { + "name": "Fuggles", + "fontFamily": "Fuggles, cursive", + "slug": "fuggles", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fuggles/v9/k3kQo8UEJOlD1hpOfd_oKw.ttf" - }, - { - "family": "Fuzzy Bubbles", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLbKZMbrgv9pwtjPEVNV0F2Ds_WQxMAZkM1pn4.ttf", - "regular": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLGKZMbrgv9pwtjPEVNV0F2NnP5Zxsreko.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fuggles/v9/k3kQo8UEJOlD1hpOTd7iL0nAMaM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fuggles" + } + ] + }, + { + "name": "Fuzzy Bubbles", + "fontFamily": "Fuzzy Bubbles, cursive", + "slug": "fuzzy-bubbles", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLGKZMbrgv9pwtjPEVNV0F2BnLzYw.ttf" - }, - { - "family": "GFS Didot", - "variants": [ "regular" ], - "subsets": [ "greek" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/gfsdidot/v15/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gfsdidot/v15/Jqzh5TybZ9vZMWFssvwSFu3C.ttf" - }, - { - "family": "GFS Neohellenic", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "greek" ], - "version": "v25", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf", - "regular": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf", - "italic": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf", - "700italic": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIRdiDOrfiq0b7R8O1Iw9WLcY5jLKJL.ttf" - }, - { - "family": "Gabriela", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/gabriela/v17/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gabriela/v17/qkBWXvsO6sreR8E-b8m_xL4.ttf" - }, - { - "family": "Gaegu", - "variants": [ "300", "regular", "700" ], - "subsets": [ "korean", "latin" ], - "version": "v15", - "lastModified": "2022-09-27", - "files": { - "300": "http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf", - "700": "http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf", - "regular": "http://fonts.gstatic.com/s/gaegu/v15/TuGfUVB6Up9NU6ZLodgzydtk.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLGKZMbrgv9pwtjPEVNV0F2NnP5Zxsreko.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fuzzy Bubbles" + }, + { + "src": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLbKZMbrgv9pwtjPEVNV0F2Ds_WQxMAZkM1pn4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fuzzy Bubbles" + } + ] + }, + { + "name": "GFS Didot", + "fontFamily": "GFS Didot, serif", + "slug": "gfs-didot", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gfsdidot/v15/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "GFS Didot" + } + ] + }, + { + "name": "GFS Neohellenic", + "fontFamily": "GFS Neohellenic, sans-serif", + "slug": "gfs-neohellenic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "GFS Neohellenic" + }, + { + "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "GFS Neohellenic" + }, + { + "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "GFS Neohellenic" + }, + { + "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "GFS Neohellenic" + } + ] + }, + { + "name": "Gabriela", + "fontFamily": "Gabriela, serif", + "slug": "gabriela", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gabriela/v17/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gabriela" + } + ] + }, + { + "name": "Gaegu", + "fontFamily": "Gaegu, cursive", + "slug": "gaegu", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gaegu/v15/TuGfUVB6Up9NU5ZKq9w.ttf" - }, - { - "family": "Gafata", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/gafata/v16/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gafata/v16/XRXV3I6Cn0VJKonIM-aE.ttf" - }, - { - "family": "Gajraj One", - "variants": [ "regular" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v3", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/gajrajone/v3/1cX2aUDCDpXsuWVb1jIjr1GqhcitzeM.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gajrajone/v3/1cX2aUDCDpXsuWVb1jIjn1CggQ.ttf" - }, - { - "family": "Galada", - "variants": [ "regular" ], - "subsets": [ "bengali", "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/galada/v14/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/galada/v14/H4cmBXyGmcjXlUXO8yY6.ttf" - }, - { - "family": "Galdeano", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boAPw-vQ.ttf" - }, - { - "family": "Galindo", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/galindo/v20/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/galindo/v20/HI_KiYMeLqVKqwyuc5DoQg.ttf" - }, - { - "family": "Gamja Flower", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v20", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/gamjaflower/v20/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gaegu" + }, + { + "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGfUVB6Up9NU6ZLodgzydtk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gaegu" + }, + { + "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gaegu" + } + ] + }, + { + "name": "Gafata", + "fontFamily": "Gafata, sans-serif", + "slug": "gafata", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gafata/v16/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gafata" + } + ] + }, + { + "name": "Gajraj One", + "fontFamily": "Gajraj One, system-ui", + "slug": "gajraj-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gajrajone/v3/1cX2aUDCDpXsuWVb1jIjr1GqhcitzeM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gajraj One" + } + ] + }, + { + "name": "Galada", + "fontFamily": "Galada, system-ui", + "slug": "galada", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/galada/v14/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Galada" + } + ] + }, + { + "name": "Galdeano", + "fontFamily": "Galdeano, sans-serif", + "slug": "galdeano", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Galdeano" + } + ] + }, + { + "name": "Galindo", + "fontFamily": "Galindo, system-ui", + "slug": "galindo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/galindo/v20/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Galindo" + } + ] + }, + { + "name": "Gamja Flower", + "fontFamily": "Gamja Flower, cursive", + "slug": "gamja-flower", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gamjaflower/v20/6NUR8FiKJg-Pa0rM6uN40Z4UyPVB.ttf" - }, - { - "family": "Gantari", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v1", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOz3wa5GD2qnm.ttf", - "200": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gOj3wa5GD2qnm.ttf", - "300": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g1-Oj3wa5GD2qnm.ttf", - "500": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0SOj3wa5GD2qnm.ttf", - "600": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3-PT3wa5GD2qnm.ttf", - "700": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3HPT3wa5GD2qnm.ttf", - "800": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gPT3wa5GD2qnm.ttf", - "900": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2JPT3wa5GD2qnm.ttf", - "regular": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOj3wa5GD2qnm.ttf", - "100italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWyYZWh37nmpWc.ttf", - "200italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVWzYZWh37nmpWc.ttf", - "300italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeYuzYZWh37nmpWc.ttf", - "italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWzYZWh37nmpWc.ttf", - "500italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeeezYZWh37nmpWc.ttf", - "600italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeQu0YZWh37nmpWc.ttf", - "700italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeTK0YZWh37nmpWc.ttf", - "800italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVW0YZWh37nmpWc.ttf", - "900italic": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeXy0YZWh37nmpWc.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOg3xYZU.ttf" - }, - { - "family": "Gayathri", - "variants": [ "100", "regular", "700" ], - "subsets": [ "latin", "malayalam" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/gayathri/v15/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf", - "700": "http://fonts.gstatic.com/s/gayathri/v15/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf", - "regular": "http://fonts.gstatic.com/s/gayathri/v15/MCoQzAb429DbBilWLIA48J_wBugA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gayathri/v15/MCoQzAb429DbBilWLLA5-ps.ttf" - }, - { - "family": "Gelasio", - "variants": [ - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_N2CRGEsnIJkWL4.ttf", - "600": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_PGFRGEsnIJkWL4.ttf", - "700": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_JWERGEsnIJkWL4.ttf", - "regular": "http://fonts.gstatic.com/s/gelasio/v10/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf", - "italic": "http://fonts.gstatic.com/s/gelasio/v10/cIf_MaFfvUQxTTqS9CuhZEsCkIt9QQ.ttf", - "500italic": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZkGImmKBhSL7Y1Q.ttf", - "600italic": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZvGUmmKBhSL7Y1Q.ttf", - "700italic": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZ2GQmmKBhSL7Y1Q.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gelasio/v10/cIf9MaFfvUQxTTqS9CihZA.ttf" - }, - { - "family": "Gemunu Libre", - "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], - "subsets": [ "latin", "latin-ext", "sinhala" ], - "version": "v12", - "lastModified": "2023-03-21", - "files": { - "200": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iJPvSLeMXPIWA.ttf", - "300": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp00aJPvSLeMXPIWA.ttf", - "500": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0yqJPvSLeMXPIWA.ttf", - "600": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp08aOPvSLeMXPIWA.ttf", - "700": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0_-OPvSLeMXPIWA.ttf", - "800": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iOPvSLeMXPIWA.ttf", - "regular": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJPvSLeMXPIWA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJDvWBfA.ttf" - }, - { - "family": "Genos", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "cherokee", "latin", "latin-ext", "vietnamese" ], - "version": "v10", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqknorUK6K7ZsAg.ttf", - "200": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVKkjorUK6K7ZsAg.ttf", - "300": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwV9EjorUK6K7ZsAg.ttf", - "500": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVmEjorUK6K7ZsAg.ttf", - "600": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVdE_orUK6K7ZsAg.ttf", - "700": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVTU_orUK6K7ZsAg.ttf", - "800": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVKk_orUK6K7ZsAg.ttf", - "900": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVA0_orUK6K7ZsAg.ttf", - "regular": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjorUK6K7ZsAg.ttf", - "100italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA70i-CbN8Ard7.ttf", - "200italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA7ki-CbN8Ard7.ttf", - "300italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgte7ki-CbN8Ard7.ttf", - "italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA7ki-CbN8Ard7.ttf", - "500italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsy7ki-CbN8Ard7.ttf", - "600italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgve6Ui-CbN8Ard7.ttf", - "700italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgvn6Ui-CbN8Ard7.ttf", - "800italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA6Ui-CbN8Ard7.ttf", - "900italic": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgup6Ui-CbN8Ard7.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjYrEi-.ttf" - }, - { - "family": "Gentium Book Plus", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v1", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFO2-RHBgUK5fbjKxRpbBtJPyRpocojWpbGhs_cfKe1.ttf", - "regular": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpofKfdbLOrdPV.ttf", - "italic": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFN2-RHBgUK5fbjKxRpbBtJPyRpocKdf7bsqMPVZb4.ttf", - "700italic": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFA2-RHBgUK5fbjKxRpbBtJPyRpocKdRwrDjMv-ebe1Els.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpocKef7Y.ttf" - }, - { - "family": "Gentium Plus", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v2", - "lastModified": "2023-04-27", - "files": { - "700": "http://fonts.gstatic.com/s/gentiumplus/v2/IurC6Ytw-oSPaZ00r2bNe8VRMLRo4EYx_ofHsw.ttf", - "regular": "http://fonts.gstatic.com/s/gentiumplus/v2/Iurd6Ytw-oSPaZ00r2bNe8VpjJtM6G0t9w.ttf", - "italic": "http://fonts.gstatic.com/s/gentiumplus/v2/IurD6Ytw-oSPaZ00r2bNe8VZjpFIymg9957e.ttf", - "700italic": "http://fonts.gstatic.com/s/gentiumplus/v2/IurA6Ytw-oSPaZ00r2bNe8VZjqn05Uw13ILXs-h6.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gentiumplus/v2/Iurd6Ytw-oSPaZ00r2bNe8VZjZFI.ttf" - }, - { - "family": "Geo", - "variants": [ "regular", "italic" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/geo/v19/CSRz4zRZlufVL3BmQjlCbQ.ttf", - "italic": "http://fonts.gstatic.com/s/geo/v19/CSRx4zRZluflLXpiYDxSbf8r.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/geo/v19/CSRz4zRZluflLnpi.ttf" - }, - { - "family": "Georama", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v8", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvktmQsL5_tgbg.ttf", - "200": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mvgtmQsL5_tgbg.ttf", - "300": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5RPgtmQsL5_tgbg.ttf", - "500": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5KPgtmQsL5_tgbg.ttf", - "600": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5xP8tmQsL5_tgbg.ttf", - "700": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5_f8tmQsL5_tgbg.ttf", - "800": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mv8tmQsL5_tgbg.ttf", - "900": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5s_8tmQsL5_tgbg.ttf", - "regular": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgtmQsL5_tgbg.ttf", - "100italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2wEPxf5wbh3T.ttf", - "200italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF2gEPxf5wbh3T.ttf", - "300italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rub2gEPxf5wbh3T.ttf", - "italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2gEPxf5wbh3T.ttf", - "500italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rv32gEPxf5wbh3T.ttf", - "600italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsb3QEPxf5wbh3T.ttf", - "700italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsi3QEPxf5wbh3T.ttf", - "800italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF3QEPxf5wbh3T.ttf", - "900italic": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rts3QEPxf5wbh3T.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgdmAEP.ttf" - }, - { - "family": "Geostar", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/geostar/v22/sykz-yx4n701VLOftSq9-trEvlQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/geostar/v22/sykz-yx4n701VLOfhSu3_g.ttf" - }, - { - "family": "Geostar Fill", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/geostarfill/v22/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/geostarfill/v22/AMOWz4SWuWiXFfjEohxQ9osEUliy.ttf" - }, - { - "family": "Germania One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3uzQhK.ttf" - }, - { - "family": "Gideon Roman", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v8", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/gideonroman/v8/e3tmeuGrVOys8sxzZgWlmXoge0PWovdU4w.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gideonroman/v8/e3tmeuGrVOys8sxzZgWlmXoQeknS.ttf" - }, - { - "family": "Gidugu", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/gidugu/v21/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gidugu/v21/L0x8DFMkk1Uf6w3hvfqi.ttf" - }, - { - "family": "Gilda Display", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-02-16", - "files": { - "regular": "http://fonts.gstatic.com/s/gildadisplay/v14/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gildadisplay/v14/t5tmIRoYMoaYG0WEOh7HwMeR3TjPqg.ttf" - }, - { - "family": "Girassol", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/girassol/v17/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/girassol/v17/JTUUjIo_-DK48laaNB9MxW4.ttf" - }, - { - "family": "Give You Glory", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/giveyouglory/v15/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gamjaflower/v20/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gamja Flower" + } + ] + }, + { + "name": "Gantari", + "fontFamily": "Gantari, sans-serif", + "slug": "gantari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOz3wa5GD2qnm.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gOj3wa5GD2qnm.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g1-Oj3wa5GD2qnm.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOj3wa5GD2qnm.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0SOj3wa5GD2qnm.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3-PT3wa5GD2qnm.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3HPT3wa5GD2qnm.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gPT3wa5GD2qnm.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2JPT3wa5GD2qnm.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWyYZWh37nmpWc.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVWzYZWh37nmpWc.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeYuzYZWh37nmpWc.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWzYZWh37nmpWc.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeeezYZWh37nmpWc.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeQu0YZWh37nmpWc.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeTK0YZWh37nmpWc.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVW0YZWh37nmpWc.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeXy0YZWh37nmpWc.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Gantari" + } + ] + }, + { + "name": "Gayathri", + "fontFamily": "Gayathri, sans-serif", + "slug": "gayathri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Gayathri" + }, + { + "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoQzAb429DbBilWLIA48J_wBugA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gayathri" + }, + { + "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gayathri" + } + ] + }, + { + "name": "Gelasio", + "fontFamily": "Gelasio, serif", + "slug": "gelasio", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf_MaFfvUQxTTqS9CuhZEsCkIt9QQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_N2CRGEsnIJkWL4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZkGImmKBhSL7Y1Q.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_PGFRGEsnIJkWL4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZvGUmmKBhSL7Y1Q.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_JWERGEsnIJkWL4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZ2GQmmKBhSL7Y1Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Gelasio" + } + ] + }, + { + "name": "Gemunu Libre", + "fontFamily": "Gemunu Libre, sans-serif", + "slug": "gemunu-libre", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iJPvSLeMXPIWA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp00aJPvSLeMXPIWA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJPvSLeMXPIWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0yqJPvSLeMXPIWA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp08aOPvSLeMXPIWA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0_-OPvSLeMXPIWA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iOPvSLeMXPIWA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + } + ] + }, + { + "name": "Genos", + "fontFamily": "Genos, sans-serif", + "slug": "genos", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqknorUK6K7ZsAg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVKkjorUK6K7ZsAg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwV9EjorUK6K7ZsAg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjorUK6K7ZsAg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVmEjorUK6K7ZsAg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVdE_orUK6K7ZsAg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVTU_orUK6K7ZsAg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVKk_orUK6K7ZsAg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVA0_orUK6K7ZsAg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA70i-CbN8Ard7.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA7ki-CbN8Ard7.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgte7ki-CbN8Ard7.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA7ki-CbN8Ard7.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsy7ki-CbN8Ard7.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgve6Ui-CbN8Ard7.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgvn6Ui-CbN8Ard7.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA6Ui-CbN8Ard7.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgup6Ui-CbN8Ard7.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Genos" + } + ] + }, + { + "name": "Gentium Book Plus", + "fontFamily": "Gentium Book Plus, serif", + "slug": "gentium-book-plus", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpofKfdbLOrdPV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gentium Book Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFN2-RHBgUK5fbjKxRpbBtJPyRpocKdf7bsqMPVZb4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gentium Book Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFO2-RHBgUK5fbjKxRpbBtJPyRpocojWpbGhs_cfKe1.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gentium Book Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFA2-RHBgUK5fbjKxRpbBtJPyRpocKdRwrDjMv-ebe1Els.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Gentium Book Plus" + } + ] + }, + { + "name": "Gentium Plus", + "fontFamily": "Gentium Plus, serif", + "slug": "gentium-plus", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gentiumplus/v2/Iurd6Ytw-oSPaZ00r2bNe8VpjJtM6G0t9w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gentium Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurD6Ytw-oSPaZ00r2bNe8VZjpFIymg9957e.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gentium Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurC6Ytw-oSPaZ00r2bNe8VRMLRo4EYx_ofHsw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gentium Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurA6Ytw-oSPaZ00r2bNe8VZjqn05Uw13ILXs-h6.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Gentium Plus" + } + ] + }, + { + "name": "Geo", + "fontFamily": "Geo, sans-serif", + "slug": "geo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/geo/v19/CSRz4zRZlufVL3BmQjlCbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Geo" + }, + { + "src": "http://fonts.gstatic.com/s/geo/v19/CSRx4zRZluflLXpiYDxSbf8r.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Geo" + } + ] + }, + { + "name": "Georama", + "fontFamily": "Georama, sans-serif", + "slug": "georama", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvktmQsL5_tgbg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mvgtmQsL5_tgbg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5RPgtmQsL5_tgbg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgtmQsL5_tgbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5KPgtmQsL5_tgbg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5xP8tmQsL5_tgbg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5_f8tmQsL5_tgbg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mv8tmQsL5_tgbg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5s_8tmQsL5_tgbg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2wEPxf5wbh3T.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF2gEPxf5wbh3T.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rub2gEPxf5wbh3T.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2gEPxf5wbh3T.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rv32gEPxf5wbh3T.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsb3QEPxf5wbh3T.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsi3QEPxf5wbh3T.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF3QEPxf5wbh3T.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rts3QEPxf5wbh3T.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Georama" + } + ] + }, + { + "name": "Geostar", + "fontFamily": "Geostar, system-ui", + "slug": "geostar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/geostar/v22/sykz-yx4n701VLOftSq9-trEvlQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Geostar" + } + ] + }, + { + "name": "Geostar Fill", + "fontFamily": "Geostar Fill, system-ui", + "slug": "geostar-fill", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/geostarfill/v22/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Geostar Fill" + } + ] + }, + { + "name": "Germania One", + "fontFamily": "Germania One, system-ui", + "slug": "germania-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Germania One" + } + ] + }, + { + "name": "Gideon Roman", + "fontFamily": "Gideon Roman, system-ui", + "slug": "gideon-roman", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gideonroman/v8/e3tmeuGrVOys8sxzZgWlmXoge0PWovdU4w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gideon Roman" + } + ] + }, + { + "name": "Gidugu", + "fontFamily": "Gidugu, sans-serif", + "slug": "gidugu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gidugu/v21/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gidugu" + } + ] + }, + { + "name": "Gilda Display", + "fontFamily": "Gilda Display, serif", + "slug": "gilda-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gildadisplay/v14/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gilda Display" + } + ] + }, + { + "name": "Girassol", + "fontFamily": "Girassol, system-ui", + "slug": "girassol", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/girassol/v17/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Girassol" + } + ] + }, + { + "name": "Give You Glory", + "fontFamily": "Give You Glory, cursive", + "slug": "give-you-glory", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/giveyouglory/v15/8QIQdiHOgt3vv4LR7ahjw9-XYf1yDYI.ttf" - }, - { - "family": "Glass Antiqua", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/glassantiqua/v20/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/glassantiqua/v20/xfu30Wr0Wn3NOQM2piC0uXOjrL76Mw.ttf" - }, - { - "family": "Glegoo", - "variants": [ "regular", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/glegoo/v14/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf", - "regular": "http://fonts.gstatic.com/s/glegoo/v14/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/glegoo/v14/_Xmt-HQyrTKWaw25iqOd.ttf" - }, - { - "family": "Gloock", - "variants": [ "regular" ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext" ], - "version": "v2", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/gloock/v2/Iurb6YFw84WUY4N5jxylBrdRjQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gloock/v2/Iurb6YFw84WUY4NJjhah.ttf" - }, - { - "family": "Gloria Hallelujah", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/gloriahallelujah/v17/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/giveyouglory/v15/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Give You Glory" + } + ] + }, + { + "name": "Glass Antiqua", + "fontFamily": "Glass Antiqua, system-ui", + "slug": "glass-antiqua", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/glassantiqua/v20/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Glass Antiqua" + } + ] + }, + { + "name": "Glegoo", + "fontFamily": "Glegoo, serif", + "slug": "glegoo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/glegoo/v14/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Glegoo" + }, + { + "src": "http://fonts.gstatic.com/s/glegoo/v14/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Glegoo" + } + ] + }, + { + "name": "Gloock", + "fontFamily": "Gloock, serif", + "slug": "gloock", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gloock/v2/Iurb6YFw84WUY4N5jxylBrdRjQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gloock" + } + ] + }, + { + "name": "Gloria Hallelujah", + "fontFamily": "Gloria Hallelujah, cursive", + "slug": "gloria-hallelujah", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gloriahallelujah/v17/LYjYdHv3kUk9BMV96EIswT9DIbW-MISz1zY.ttf" - }, - { - "family": "Glory", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v13", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwIiDpn-dDi9EOQ.ttf", - "200": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQQImDpn-dDi9EOQ.ttf", - "300": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQnomDpn-dDi9EOQ.ttf", - "500": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQ8omDpn-dDi9EOQ.ttf", - "600": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQHo6Dpn-dDi9EOQ.ttf", - "700": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQJ46Dpn-dDi9EOQ.ttf", - "800": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQQI6Dpn-dDi9EOQ.ttf", - "regular": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwImDpn-dDi9EOQ.ttf", - "100italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", - "200italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", - "300italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", - "italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf", - "500italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", - "600italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", - "700italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", - "800italic": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwImzp3WZ.ttf" - }, - { - "family": "Gluten", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v10", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7B1Luni7ciJh.ttf", - "200": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb7R1Luni7ciJh.ttf", - "300": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8UF7R1Luni7ciJh.ttf", - "500": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vp7R1Luni7ciJh.ttf", - "600": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8WF6h1Luni7ciJh.ttf", - "700": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8W86h1Luni7ciJh.ttf", - "800": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb6h1Luni7ciJh.ttf", - "900": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xy6h1Luni7ciJh.ttf", - "regular": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7R1Luni7ciJh.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7S1KsHw.ttf" - }, - { - "family": "Goblin One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/goblinone/v22/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/goblinone/v22/CSR64z1ZnOqZRjRCBVY_fOYKSA.ttf" - }, - { - "family": "Gochi Hand", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/gochihand/v19/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gloriahallelujah/v17/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gloria Hallelujah" + } + ] + }, + { + "name": "Glory", + "fontFamily": "Glory, sans-serif", + "slug": "glory", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwIiDpn-dDi9EOQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQQImDpn-dDi9EOQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQnomDpn-dDi9EOQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwImDpn-dDi9EOQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQ8omDpn-dDi9EOQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQHo6Dpn-dDi9EOQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQJ46Dpn-dDi9EOQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQQI6Dpn-dDi9EOQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Glory" + } + ] + }, + { + "name": "Gluten", + "fontFamily": "Gluten, system-ui", + "slug": "gluten", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7B1Luni7ciJh.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb7R1Luni7ciJh.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8UF7R1Luni7ciJh.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7R1Luni7ciJh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vp7R1Luni7ciJh.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8WF6h1Luni7ciJh.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8W86h1Luni7ciJh.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb6h1Luni7ciJh.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xy6h1Luni7ciJh.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Gluten" + } + ] + }, + { + "name": "Goblin One", + "fontFamily": "Goblin One, system-ui", + "slug": "goblin-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/goblinone/v22/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Goblin One" + } + ] + }, + { + "name": "Gochi Hand", + "fontFamily": "Gochi Hand, cursive", + "slug": "gochi-hand", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gochihand/v19/hES06XlsOjtJsgCkx1Pkfo___g.ttf" - }, - { - "family": "Goldman", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v16", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/goldman/v16/pe0rMIWbN4JFplR2FI5XIteQB9Zra1U.ttf", - "regular": "http://fonts.gstatic.com/s/goldman/v16/pe0uMIWbN4JFplR2LDJ4Bt-7G98.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/goldman/v16/pe0uMIWbN4JFplR2HDNyAg.ttf" - }, - { - "family": "Golos Text", - "variants": [ "regular", "500", "600", "700", "800", "900" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v4", - "lastModified": "2023-03-21", - "files": { - "500": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVjRQ5cEr8zXcyx.ttf", - "600": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plWPQg5cEr8zXcyx.ttf", - "700": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plW2Qg5cEr8zXcyx.ttf", - "800": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plXRQg5cEr8zXcyx.ttf", - "900": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plX4Qg5cEr8zXcyx.ttf", - "regular": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVRRQ5cEr8zXcyx.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVRRT5dGLs.ttf" - }, - { - "family": "Gorditas", - "variants": [ "regular", "700" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/gorditas/v20/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf", - "regular": "http://fonts.gstatic.com/s/gorditas/v20/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gorditas/v20/ll8_K2aTVD26DsPEtTDpB6o.ttf" - }, - { - "family": "Gothic A1", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "korean", "latin" ], - "version": "v13", - "lastModified": "2022-09-27", - "files": { - "100": "http://fonts.gstatic.com/s/gothica1/v13/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf", - "200": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf", - "300": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf", - "500": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf", - "600": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf", - "700": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf", - "800": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf", - "900": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf", - "regular": "http://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwlKbccq.ttf" - }, - { - "family": "Gotu", - "variants": [ "regular" ], - "subsets": [ "devanagari", "latin", "latin-ext", "vietnamese" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/gotu/v14/o-0FIpksx3QOlH0Lioh6-hU.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gotu/v14/o-0FIpksx3QOpHwBjg.ttf" - }, - { - "family": "Goudy Bookletter 1911", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/goudybookletter1911/v15/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/goudybookletter1911/v15/sykt-z54laciWfKv-kX8krex0jDiD2HbY6IJtBzT.ttf" - }, - { - "family": "Gowun Batang", - "variants": [ "regular", "700" ], - "subsets": [ "korean", "latin", "latin-ext", "vietnamese" ], - "version": "v7", - "lastModified": "2022-09-27", - "files": { - "700": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwNs5nhRMIjYsdSgcMa3wRZ4J7awssxJii23w.ttf", - "regular": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwSs5nhRMIjYsdSgcMa3wRhXLH-yuAtLw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwSs5nhRMIjYsdSgcMa3wRRXbv6.ttf" - }, - { - "family": "Gowun Dodum", - "variants": [ "regular" ], - "subsets": [ "korean", "latin", "latin-ext", "vietnamese" ], - "version": "v7", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/gowundodum/v7/3Jn5SD_00GqwlBnWc1TUJF0FfORL0fNy.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gowundodum/v7/3Jn5SD_00GqwlBnWc1TUJG0EduA.ttf" - }, - { - "family": "Graduate", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/graduate/v13/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/graduate/v13/C8cg4cs3o2n15t_2YygQ43k.ttf" - }, - { - "family": "Grand Hotel", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/grandhotel/v14/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gochihand/v19/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gochi Hand" + } + ] + }, + { + "name": "Goldman", + "fontFamily": "Goldman, system-ui", + "slug": "goldman", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/goldman/v16/pe0uMIWbN4JFplR2LDJ4Bt-7G98.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Goldman" + }, + { + "src": "http://fonts.gstatic.com/s/goldman/v16/pe0rMIWbN4JFplR2FI5XIteQB9Zra1U.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Goldman" + } + ] + }, + { + "name": "Golos Text", + "fontFamily": "Golos Text, sans-serif", + "slug": "golos-text", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVRRQ5cEr8zXcyx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVjRQ5cEr8zXcyx.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plWPQg5cEr8zXcyx.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plW2Qg5cEr8zXcyx.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plXRQg5cEr8zXcyx.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plX4Qg5cEr8zXcyx.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Golos Text" + } + ] + }, + { + "name": "Gorditas", + "fontFamily": "Gorditas, system-ui", + "slug": "gorditas", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gorditas/v20/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gorditas" + }, + { + "src": "http://fonts.gstatic.com/s/gorditas/v20/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gorditas" + } + ] + }, + { + "name": "Gothic A1", + "fontFamily": "Gothic A1, sans-serif", + "slug": "gothic-a1", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + } + ] + }, + { + "name": "Gotu", + "fontFamily": "Gotu, sans-serif", + "slug": "gotu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gotu/v14/o-0FIpksx3QOlH0Lioh6-hU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gotu" + } + ] + }, + { + "name": "Goudy Bookletter 1911", + "fontFamily": "Goudy Bookletter 1911, serif", + "slug": "goudy-bookletter-1911", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/goudybookletter1911/v15/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Goudy Bookletter 1911" + } + ] + }, + { + "name": "Gowun Batang", + "fontFamily": "Gowun Batang, serif", + "slug": "gowun-batang", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwSs5nhRMIjYsdSgcMa3wRhXLH-yuAtLw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gowun Batang" + }, + { + "src": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwNs5nhRMIjYsdSgcMa3wRZ4J7awssxJii23w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gowun Batang" + } + ] + }, + { + "name": "Gowun Dodum", + "fontFamily": "Gowun Dodum, sans-serif", + "slug": "gowun-dodum", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gowundodum/v7/3Jn5SD_00GqwlBnWc1TUJF0FfORL0fNy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gowun Dodum" + } + ] + }, + { + "name": "Graduate", + "fontFamily": "Graduate, system-ui", + "slug": "graduate", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/graduate/v13/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Graduate" + } + ] + }, + { + "name": "Grand Hotel", + "fontFamily": "Grand Hotel, cursive", + "slug": "grand-hotel", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/grandhotel/v14/7Au7p_IgjDKdCRWuR1azplQMGFk.ttf" - }, - { - "family": "Grandstander", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v15", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1-_D3jWttFGmQk.ttf", - "200": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9--D3jWttFGmQk.ttf", - "300": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQDwG-D3jWttFGmQk.ttf", - "500": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD22-D3jWttFGmQk.ttf", - "600": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD4G5D3jWttFGmQk.ttf", - "700": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD7i5D3jWttFGmQk.ttf", - "800": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9-5D3jWttFGmQk.ttf", - "900": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD_a5D3jWttFGmQk.ttf", - "regular": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--D3jWttFGmQk.ttf", - "100italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zrcsvNDiQlBYQ.ttf", - "200italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzvcsvNDiQlBYQ.ttf", - "300italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9uTvcsvNDiQlBYQ.ttf", - "italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zvcsvNDiQlBYQ.ttf", - "500italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf91TvcsvNDiQlBYQ.ttf", - "600italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9OTzcsvNDiQlBYQ.ttf", - "700italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ADzcsvNDiQlBYQ.ttf", - "800italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzzcsvNDiQlBYQ.ttf", - "900italic": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9TjzcsvNDiQlBYQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--P3ncsg.ttf" - }, - { - "family": "Grape Nuts", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/grapenuts/v2/syk2-yF4iLM2RfKj4F7k3tLvol2RN1E.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grandhotel/v14/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grand Hotel" + } + ] + }, + { + "name": "Grandstander", + "fontFamily": "Grandstander, system-ui", + "slug": "grandstander", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1-_D3jWttFGmQk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9--D3jWttFGmQk.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQDwG-D3jWttFGmQk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--D3jWttFGmQk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD22-D3jWttFGmQk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD4G5D3jWttFGmQk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD7i5D3jWttFGmQk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9-5D3jWttFGmQk.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD_a5D3jWttFGmQk.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zrcsvNDiQlBYQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzvcsvNDiQlBYQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9uTvcsvNDiQlBYQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zvcsvNDiQlBYQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf91TvcsvNDiQlBYQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9OTzcsvNDiQlBYQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ADzcsvNDiQlBYQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzzcsvNDiQlBYQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9TjzcsvNDiQlBYQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Grandstander" + } + ] + }, + { + "name": "Grape Nuts", + "fontFamily": "Grape Nuts, cursive", + "slug": "grape-nuts", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/grapenuts/v2/syk2-yF4iLM2RfKj4F7k7tPlpg.ttf" - }, - { - "family": "Gravitas One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/gravitasone/v15/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gravitasone/v15/5h1diZ4hJ3cblKy3LWakKQmqDG5J.ttf" - }, - { - "family": "Great Vibes", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/greatvibes/v15/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grapenuts/v2/syk2-yF4iLM2RfKj4F7k3tLvol2RN1E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grape Nuts" + } + ] + }, + { + "name": "Gravitas One", + "fontFamily": "Gravitas One, system-ui", + "slug": "gravitas-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gravitasone/v15/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gravitas One" + } + ] + }, + { + "name": "Great Vibes", + "fontFamily": "Great Vibes, cursive", + "slug": "great-vibes", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/greatvibes/v15/RWmMoKWR9v4ksMfaWd_JN9XDiaE.ttf" - }, - { - "family": "Grechen Fuemen", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/grechenfuemen/v7/vEFI2_tHEQ4d5ObgKxBzZh0MAWgc-NaXXq7H.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/greatvibes/v15/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Great Vibes" + } + ] + }, + { + "name": "Grechen Fuemen", + "fontFamily": "Grechen Fuemen, cursive", + "slug": "grechen-fuemen", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/grechenfuemen/v7/vEFI2_tHEQ4d5ObgKxBzZh0MAVgd8tI.ttf" - }, - { - "family": "Grenze", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf", - "200": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf", - "300": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf", - "500": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf", - "600": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf", - "700": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf", - "800": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf", - "900": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf", - "100italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf", - "200italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf", - "300italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf", - "regular": "http://fonts.gstatic.com/s/grenze/v15/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf", - "italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf", - "500italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf", - "600italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf", - "700italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf", - "800italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf", - "900italic": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/grenze/v15/O4ZTFGb7hR12BxqH_mIj.ttf" - }, - { - "family": "Grenze Gotisch", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v16", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz5UcICdYPSd_w.ttf", - "200": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rz9UcICdYPSd_w.ttf", - "300": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5cT9UcICdYPSd_w.ttf", - "500": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5HT9UcICdYPSd_w.ttf", - "600": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i58ThUcICdYPSd_w.ttf", - "700": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5yDhUcICdYPSd_w.ttf", - "800": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rzhUcICdYPSd_w.ttf", - "900": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5hjhUcICdYPSd_w.ttf", - "regular": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9UcICdYPSd_w.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9kcYqZ.ttf" - }, - { - "family": "Grey Qo", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/greyqo/v7/BXRrvF_Nmv_TyXxNDOtQ9Wf0QcE.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grechenfuemen/v7/vEFI2_tHEQ4d5ObgKxBzZh0MAWgc-NaXXq7H.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grechen Fuemen" + } + ] + }, + { + "name": "Grenze", + "fontFamily": "Grenze, serif", + "slug": "grenze", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Grenze" + } + ] + }, + { + "name": "Grenze Gotisch", + "fontFamily": "Grenze Gotisch, system-ui", + "slug": "grenze-gotisch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz5UcICdYPSd_w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rz9UcICdYPSd_w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5cT9UcICdYPSd_w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9UcICdYPSd_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5HT9UcICdYPSd_w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i58ThUcICdYPSd_w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5yDhUcICdYPSd_w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rzhUcICdYPSd_w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5hjhUcICdYPSd_w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + } + ] + }, + { + "name": "Grey Qo", + "fontFamily": "Grey Qo, cursive", + "slug": "grey-qo", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/greyqo/v7/BXRrvF_Nmv_TyXxNPOpa8Q.ttf" - }, - { - "family": "Griffy", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/griffy/v22/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/griffy/v22/FwZa7-ox2FQh9kfASd6A.ttf" - }, - { - "family": "Gruppo", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/gruppo/v16/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gruppo/v16/WwkfxPmzE06v_ZW1WHrE.ttf" - }, - { - "family": "Gudea", - "variants": [ "regular", "italic", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/gudea/v15/neIIzCqgsI0mp9gz26WGHK06UY30.ttf", - "regular": "http://fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp-CP9IGON7Ez.ttf", - "italic": "http://fonts.gstatic.com/s/gudea/v15/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp9CO_oU.ttf" - }, - { - "family": "Gugi", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/gugi/v13/A2BVn5dXywshVA6A9DEfgqM.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gugi/v13/A2BVn5dXywshZA-K8A.ttf" - }, - { - "family": "Gulzar", - "variants": [ "regular" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v6", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/gulzar/v6/Wnz6HAc9eB3HB2ILYTwZqg_MPQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gulzar/v6/Wnz6HAc9eB3HB2I7YDYd.ttf" - }, - { - "family": "Gupter", - "variants": [ "regular", "500", "700" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qslb-bUsT5rZhaZg.ttf", - "700": "http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qs3bmbUsT5rZhaZg.ttf", - "regular": "http://fonts.gstatic.com/s/gupter/v14/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gupter/v14/2-cm9JNmxJqPO1QkYJy7.ttf" - }, - { - "family": "Gurajada", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/gurajada/v15/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gurajada/v15/FwZY7-Qx308m-l-0Ke6B6Mw.ttf" - }, - { - "family": "Gwendolyn", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBSXvoO_M3CSss-d7emWLtvmC7HONiSFQ.ttf", - "regular": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBXXvoO_M3CSss-d7ee5JRLkAXbMQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/greyqo/v7/BXRrvF_Nmv_TyXxNDOtQ9Wf0QcE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grey Qo" + } + ] + }, + { + "name": "Griffy", + "fontFamily": "Griffy, system-ui", + "slug": "griffy", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/griffy/v22/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Griffy" + } + ] + }, + { + "name": "Gruppo", + "fontFamily": "Gruppo, system-ui", + "slug": "gruppo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gruppo/v16/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gruppo" + } + ] + }, + { + "name": "Gudea", + "fontFamily": "Gudea, sans-serif", + "slug": "gudea", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp-CP9IGON7Ez.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gudea" + }, + { + "src": "http://fonts.gstatic.com/s/gudea/v15/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gudea" + }, + { + "src": "http://fonts.gstatic.com/s/gudea/v15/neIIzCqgsI0mp9gz26WGHK06UY30.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gudea" + } + ] + }, + { + "name": "Gugi", + "fontFamily": "Gugi, system-ui", + "slug": "gugi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gugi/v13/A2BVn5dXywshVA6A9DEfgqM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gugi" + } + ] + }, + { + "name": "Gulzar", + "fontFamily": "Gulzar, serif", + "slug": "gulzar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gulzar/v6/Wnz6HAc9eB3HB2ILYTwZqg_MPQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gulzar" + } + ] + }, + { + "name": "Gupter", + "fontFamily": "Gupter, serif", + "slug": "gupter", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gupter/v14/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gupter" + }, + { + "src": "http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qslb-bUsT5rZhaZg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gupter" + }, + { + "src": "http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qs3bmbUsT5rZhaZg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gupter" + } + ] + }, + { + "name": "Gurajada", + "fontFamily": "Gurajada, serif", + "slug": "gurajada", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gurajada/v15/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gurajada" + } + ] + }, + { + "name": "Gwendolyn", + "fontFamily": "Gwendolyn, cursive", + "slug": "gwendolyn", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBXXvoO_M3CSss-d7eu5Z5P.ttf" - }, - { - "family": "Habibi", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNySxha.ttf" - }, - { - "family": "Hachi Maru Pop", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/hachimarupop/v17/HI_TiYoRLqpLrEiMAuO9Ysfz7rW1EM_btd8u.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBXXvoO_M3CSss-d7ee5JRLkAXbMQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gwendolyn" + }, + { + "src": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBSXvoO_M3CSss-d7emWLtvmC7HONiSFQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gwendolyn" + } + ] + }, + { + "name": "Habibi", + "fontFamily": "Habibi, serif", + "slug": "habibi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Habibi" + } + ] + }, + { + "name": "Hachi Maru Pop", + "fontFamily": "Hachi Maru Pop, cursive", + "slug": "hachi-maru-pop", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hachimarupop/v17/HI_TiYoRLqpLrEiMAuO9Ysfz7oW0Gss.ttf" - }, - { - "family": "Hahmlet", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "korean", "latin", "latin-ext", "vietnamese" ], - "version": "v13", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOdjobsO-aVxn.ttf", - "200": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKONjobsO-aVxn.ttf", - "300": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RgUONjobsO-aVxn.ttf", - "500": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4Rh4ONjobsO-aVxn.ttf", - "600": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RiUP9jobsO-aVxn.ttf", - "700": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RitP9jobsO-aVxn.ttf", - "800": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKP9jobsO-aVxn.ttf", - "900": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjjP9jobsO-aVxn.ttf", - "regular": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKONjobsO-aVxn.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOOjpZMc.ttf" - }, - { - "family": "Halant", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf", - "500": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf", - "600": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf", - "700": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf", - "regular": "http://fonts.gstatic.com/s/halant/v14/u-4-0qaujRI2PbsX39Jmky12eg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/halant/v14/u-4-0qaujRI2Pbsn3thi.ttf" - }, - { - "family": "Hammersmith One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnrsxEg.ttf" - }, - { - "family": "Hanalei", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHXzgmVydREus.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHbzksUw.ttf" - }, - { - "family": "Hanalei Fill", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/hanaleifill/v22/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hanaleifill/v22/fC1mPYtObGbfyQznIaQzPQi8VgjF.ttf" - }, - { - "family": "Handlee", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/handlee/v14/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hachimarupop/v17/HI_TiYoRLqpLrEiMAuO9Ysfz7rW1EM_btd8u.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hachi Maru Pop" + } + ] + }, + { + "name": "Hahmlet", + "fontFamily": "Hahmlet, serif", + "slug": "hahmlet", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOdjobsO-aVxn.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKONjobsO-aVxn.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RgUONjobsO-aVxn.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKONjobsO-aVxn.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4Rh4ONjobsO-aVxn.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RiUP9jobsO-aVxn.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RitP9jobsO-aVxn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKP9jobsO-aVxn.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjjP9jobsO-aVxn.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + } + ] + }, + { + "name": "Halant", + "fontFamily": "Halant, serif", + "slug": "halant", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Halant" + }, + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-4-0qaujRI2PbsX39Jmky12eg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Halant" + }, + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Halant" + }, + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Halant" + }, + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Halant" + } + ] + }, + { + "name": "Hammersmith One", + "fontFamily": "Hammersmith One, sans-serif", + "slug": "hammersmith-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hammersmith One" + } + ] + }, + { + "name": "Hanalei", + "fontFamily": "Hanalei, system-ui", + "slug": "hanalei", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHXzgmVydREus.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hanalei" + } + ] + }, + { + "name": "Hanalei Fill", + "fontFamily": "Hanalei Fill, system-ui", + "slug": "hanalei-fill", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hanaleifill/v22/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hanalei Fill" + } + ] + }, + { + "name": "Handlee", + "fontFamily": "Handlee, cursive", + "slug": "handlee", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/handlee/v14/-F6xfjBsISg9aMakPmvwpg.ttf" - }, - { - "family": "Hanken Grotesk", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], - "version": "v8", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2da4fpNzXhRKA.ttf", - "200": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Za4fpNzXhRKA.ttf", - "300": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf", - "500": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf", - "600": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcbWFa4fpNzXhRKA.ttf", - "700": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcVGFa4fpNzXhRKA.ttf", - "800": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Fa4fpNzXhRKA.ttf", - "900": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcGmFa4fpNzXhRKA.ttf", - "regular": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2Za4fpNzXhRKA.ttf", - "100italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyo_BJ731BKMSK.ttf", - "200italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUyovBJ731BKMSK.ttf", - "300italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyXsovBJ731BKMSK.ttf", - "italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyovBJ731BKMSK.ttf", - "500italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWAovBJ731BKMSK.ttf", - "600italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVspfBJ731BKMSK.ttf", - "700italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVVpfBJ731BKMSK.ttf", - "800italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUypfBJ731BKMSK.ttf", - "900italic": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUbpfBJ731BKMSK.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2Zq4PBJ.ttf" - }, - { - "family": "Hanuman", - "variants": [ "100", "300", "regular", "700", "900" ], - "subsets": [ "khmer", "latin" ], - "version": "v22", - "lastModified": "2022-04-21", - "files": { - "100": "http://fonts.gstatic.com/s/hanuman/v22/VuJzdNvD15HhpJJBQMLdPKNiaRpFvg.ttf", - "300": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQAr_HIlMZRNcp0o.ttf", - "700": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf", - "900": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQCL6HIlMZRNcp0o.ttf", - "regular": "http://fonts.gstatic.com/s/hanuman/v22/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hanuman/v22/VuJxdNvD15HhpJJBSKfdPA.ttf" - }, - { - "family": "Happy Monkey", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OwBgry.ttf" - }, - { - "family": "Harmattan", - "variants": [ "regular", "700" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-11-09", - "files": { - "700": "http://fonts.gstatic.com/s/harmattan/v17/gokpH6L2DkFvVvRp9Xpr92-HmNZEq6TTFw.ttf", - "regular": "http://fonts.gstatic.com/s/harmattan/v17/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/harmattan/v17/goksH6L2DkFvVvRp9XpjSkqn.ttf" - }, - { - "family": "Headland One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/headlandone/v16/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/headlandone/v16/yYLu0hHR2vKnp89Tk1TCq3TB0fNX.ttf" - }, - { - "family": "Heebo", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "hebrew", "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cckOnz02SXQ.ttf", - "200": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycckOnz02SXQ.ttf", - "300": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycckOnz02SXQ.ttf", - "500": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyycckOnz02SXQ.ttf", - "600": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucckOnz02SXQ.ttf", - "700": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiucckOnz02SXQ.ttf", - "800": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucckOnz02SXQ.ttf", - "900": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucckOnz02SXQ.ttf", - "regular": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycckOnz02SXQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSysc0mj.ttf" - }, - { - "family": "Henny Penny", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfPQrvXc.ttf" - }, - { - "family": "Hepta Slab", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v21", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf", - "200": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf", - "300": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf", - "500": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf", - "600": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf", - "700": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf", - "800": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf", - "900": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf", - "regular": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5wfaaZQ.ttf" - }, - { - "family": "Herr Von Muellerhoff", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/herrvonmuellerhoff/v16/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/handlee/v14/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Handlee" + } + ] + }, + { + "name": "Hanken Grotesk", + "fontFamily": "Hanken Grotesk, sans-serif", + "slug": "hanken-grotesk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2da4fpNzXhRKA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Za4fpNzXhRKA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2Za4fpNzXhRKA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcbWFa4fpNzXhRKA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcVGFa4fpNzXhRKA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Fa4fpNzXhRKA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcGmFa4fpNzXhRKA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyo_BJ731BKMSK.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUyovBJ731BKMSK.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyXsovBJ731BKMSK.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyovBJ731BKMSK.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWAovBJ731BKMSK.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVspfBJ731BKMSK.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVVpfBJ731BKMSK.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUypfBJ731BKMSK.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUbpfBJ731BKMSK.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + } + ] + }, + { + "name": "Hanuman", + "fontFamily": "Hanuman, serif", + "slug": "hanuman", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJzdNvD15HhpJJBQMLdPKNiaRpFvg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Hanuman" + }, + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQAr_HIlMZRNcp0o.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hanuman" + }, + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hanuman" + }, + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hanuman" + }, + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQCL6HIlMZRNcp0o.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Hanuman" + } + ] + }, + { + "name": "Happy Monkey", + "fontFamily": "Happy Monkey, system-ui", + "slug": "happy-monkey", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Happy Monkey" + } + ] + }, + { + "name": "Harmattan", + "fontFamily": "Harmattan, sans-serif", + "slug": "harmattan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/harmattan/v17/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Harmattan" + }, + { + "src": "http://fonts.gstatic.com/s/harmattan/v17/gokpH6L2DkFvVvRp9Xpr92-HmNZEq6TTFw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Harmattan" + } + ] + }, + { + "name": "Headland One", + "fontFamily": "Headland One, serif", + "slug": "headland-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/headlandone/v16/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Headland One" + } + ] + }, + { + "name": "Heebo", + "fontFamily": "Heebo, sans-serif", + "slug": "heebo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cckOnz02SXQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycckOnz02SXQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycckOnz02SXQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycckOnz02SXQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyycckOnz02SXQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucckOnz02SXQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiucckOnz02SXQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucckOnz02SXQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucckOnz02SXQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Heebo" + } + ] + }, + { + "name": "Henny Penny", + "fontFamily": "Henny Penny, system-ui", + "slug": "henny-penny", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Henny Penny" + } + ] + }, + { + "name": "Hepta Slab", + "fontFamily": "Hepta Slab, serif", + "slug": "hepta-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + } + ] + }, + { + "name": "Herr Von Muellerhoff", + "fontFamily": "Herr Von Muellerhoff, cursive", + "slug": "herr-von-muellerhoff", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/herrvonmuellerhoff/v16/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft0c79KY.ttf" - }, - { - "family": "Hi Melody", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v13", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/himelody/v13/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/herrvonmuellerhoff/v16/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Herr Von Muellerhoff" + } + ] + }, + { + "name": "Hi Melody", + "fontFamily": "Hi Melody, cursive", + "slug": "hi-melody", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/himelody/v13/46ktlbP8Vnz0pJcqCTb0fmVA.ttf" - }, - { - "family": "Hina Mincho", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "japanese", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v9", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/hinamincho/v9/2sDaZGBRhpXa2Jjz5w5LAGW8KbkVZTHR.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hinamincho/v9/2sDaZGBRhpXa2Jjz5w5LAFW9I70.ttf" - }, - { - "family": "Hind", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf", - "500": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf", - "600": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf", - "700": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf", - "regular": "http://fonts.gstatic.com/s/hind/v16/5aU69_a8oxmIRG5yBROzkDM.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hind/v16/5aU69_a8oxmIdG94AQ.ttf" - }, - { - "family": "Hind Guntur", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "telugu" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf", - "500": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf", - "600": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf", - "700": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf", - "regular": "http://fonts.gstatic.com/s/hindguntur/v12/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hindguntur/v12/wXKvE3UZrok56nvamSuJd_QrvXc.ttf" - }, - { - "family": "Hind Madurai", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "tamil" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf", - "500": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf", - "600": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf", - "700": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf", - "regular": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOcpqjX8IcH.ttf" - }, - { - "family": "Hind Siliguri", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "bengali", "latin", "latin-ext" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf", - "500": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf", - "600": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf", - "700": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf", - "regular": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwTs5juQtsyLLR5jN4cxBEoTJrawg.ttf" - }, - { - "family": "Hind Vadodara", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "gujarati", "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf", - "500": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf", - "600": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf", - "700": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf", - "regular": "http://fonts.gstatic.com/s/hindvadodara/v13/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hindvadodara/v13/neINzCKvrIcn5pbuuuriV9tTQJTVqQ.ttf" - }, - { - "family": "Holtwood One SC", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/holtwoodonesc/v16/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/holtwoodonesc/v16/yYLx0hLR0P-3vMFSk1TCq3Txg5BHcLz-.ttf" - }, - { - "family": "Homemade Apple", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/homemadeapple/v18/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/himelody/v13/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hi Melody" + } + ] + }, + { + "name": "Hina Mincho", + "fontFamily": "Hina Mincho, serif", + "slug": "hina-mincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hinamincho/v9/2sDaZGBRhpXa2Jjz5w5LAGW8KbkVZTHR.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hina Mincho" + } + ] + }, + { + "name": "Hind", + "fontFamily": "Hind, sans-serif", + "slug": "hind", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind" + }, + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU69_a8oxmIRG5yBROzkDM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind" + }, + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind" + }, + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind" + }, + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind" + } + ] + }, + { + "name": "Hind Guntur", + "fontFamily": "Hind Guntur, sans-serif", + "slug": "hind-guntur", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + }, + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + }, + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + }, + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + }, + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + } + ] + }, + { + "name": "Hind Madurai", + "fontFamily": "Hind Madurai, sans-serif", + "slug": "hind-madurai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + }, + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + }, + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + }, + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + }, + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + } + ] + }, + { + "name": "Hind Siliguri", + "fontFamily": "Hind Siliguri, sans-serif", + "slug": "hind-siliguri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + }, + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + }, + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + }, + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + }, + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + } + ] + }, + { + "name": "Hind Vadodara", + "fontFamily": "Hind Vadodara, sans-serif", + "slug": "hind-vadodara", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + }, + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + }, + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + }, + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + }, + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + } + ] + }, + { + "name": "Holtwood One SC", + "fontFamily": "Holtwood One SC, serif", + "slug": "holtwood-one-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/holtwoodonesc/v16/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Holtwood One SC" + } + ] + }, + { + "name": "Homemade Apple", + "fontFamily": "Homemade Apple, cursive", + "slug": "homemade-apple", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/homemadeapple/v18/Qw3EZQFXECDrI2q789EKQZJob0x8XH0.ttf" - }, - { - "family": "Homenaje", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Le6B6Mw.ttf" - }, - { - "family": "Hubballi", - "variants": [ "regular" ], - "subsets": [ "kannada", "latin", "latin-ext" ], - "version": "v4", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/hubballi/v4/o-0JIpUj3WIZ1RFN56B7yBBNYuSF.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hubballi/v4/o-0JIpUj3WIZ1RFN55B6whQ.ttf" - }, - { - "family": "Hurricane", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/hurricane/v5/pe0sMIuULZxTolZ5YldyAv2-C99ycg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/homemadeapple/v18/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Homemade Apple" + } + ] + }, + { + "name": "Homenaje", + "fontFamily": "Homenaje, sans-serif", + "slug": "homenaje", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Homenaje" + } + ] + }, + { + "name": "Hubballi", + "fontFamily": "Hubballi, system-ui", + "slug": "hubballi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hubballi/v4/o-0JIpUj3WIZ1RFN56B7yBBNYuSF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hubballi" + } + ] + }, + { + "name": "Hurricane", + "fontFamily": "Hurricane, cursive", + "slug": "hurricane", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/hurricane/v5/pe0sMIuULZxTolZ5YldCA_e6.ttf" - }, - { - "family": "IBM Plex Mono", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v19", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf", - "200": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf", - "300": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf", - "500": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf", - "600": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf", - "700": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf", - "100italic": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf", - "200italic": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf", - "300italic": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf", - "regular": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf", - "italic": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf", - "500italic": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf", - "600italic": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf", - "700italic": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hurricane/v5/pe0sMIuULZxTolZ5YldyAv2-C99ycg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hurricane" + } + ] + }, + { + "name": "IBM Plex Mono", + "fontFamily": "IBM Plex Mono, monospace", + "slug": "ibm-plex-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n1ikq0g.ttf" - }, - { - "family": "IBM Plex Sans", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v19", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf", - "200": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf", - "300": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf", - "500": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf", - "600": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf", - "700": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf", - "100italic": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf", - "200italic": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf", - "300italic": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf", - "regular": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf", - "italic": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf", - "500italic": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf", - "600italic": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf", - "700italic": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKhdfeEA.ttf" - }, - { - "family": "IBM Plex Sans Arabic", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "arabic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v12", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3MZRtWPQCuHme67tEYUIx3Kh0PHR9N6YNe3PC5eMlAMg0.ttf", - "200": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPy_dCTVsVJKxTs.ttf", - "300": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOW_tCTVsVJKxTs.ttf", - "500": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPO_9CTVsVJKxTs.ttf", - "600": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPi-NCTVsVJKxTs.ttf", - "700": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOG-dCTVsVJKxTs.ttf", - "regular": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs61vSbfdlA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6Ys73PA.ttf" - }, - { - "family": "IBM Plex Sans Condensed", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], - "version": "v14", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf", - "200": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf", - "300": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf", - "500": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf", - "600": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf", - "700": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf", - "100italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf", - "200italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf", - "300italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf", - "regular": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf", - "italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf", - "500italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf", - "600italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf", - "700italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYavyKs.ttf" - }, - { - "family": "IBM Plex Sans Devanagari", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "cyrillic-ext", "devanagari", "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXB3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HMUjwUcjwCEQq.ttf", - "200": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HnWnQe-b8AV0z0w.ttf", - "300": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H-WrQe-b8AV0z0w.ttf", - "500": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HoWvQe-b8AV0z0w.ttf", - "600": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HjWzQe-b8AV0z0w.ttf", - "700": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H6W3Qe-b8AV0z0w.ttf", - "regular": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__VUL0c83gCA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_PVEjw.ttf" - }, - { - "family": "IBM Plex Sans Hebrew", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "cyrillic-ext", "hebrew", "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa4qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEXB-l0VqDaM7C4.ttf", - "200": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVt230_hjqF9Tc2.ttf", - "300": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUJ2H0_hjqF9Tc2.ttf", - "500": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVR2X0_hjqF9Tc2.ttf", - "600": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEV93n0_hjqF9Tc2.ttf", - "700": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUZ330_hjqF9Tc2.ttf", - "regular": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2l8Fk3rSaM.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXE2k-l0.ttf" - }, - { - "family": "IBM Plex Sans JP", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v5", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XLDn9KbTDf6_f7dISNqYf_tvPT7E7yjPB7twdmHQ.ttf", - "200": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7OLTrNpVuw5_BAM.ttf", - "300": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7IbQrNpVuw5_BAM.ttf", - "500": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7N7RrNpVuw5_BAM.ttf", - "600": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7PLWrNpVuw5_BAM.ttf", - "700": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7JbXrNpVuw5_BAM.ttf", - "regular": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XNDn9KbTDf6_f7dISNqYf_tvPT1Cr4iNJ-pwc.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XNDn9KbTDf6_f7dISNqYf_tvPT5CvyjA.ttf" - }, - { - "family": "IBM Plex Sans KR", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "korean", "latin", "latin-ext" ], - "version": "v10", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFM2-VJISZe3O_rc3ZVYh4aTwNOyra_X5zCpMrMfA.ttf", - "200": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyhqef7bsqMPVZb4.ttf", - "300": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyn6df7bsqMPVZb4.ttf", - "500": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyiacf7bsqMPVZb4.ttf", - "600": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOygqbf7bsqMPVZb4.ttf", - "700": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOym6af7bsqMPVZb4.ttf", - "regular": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFK2-VJISZe3O_rc3ZVYh4aTwNO8tK1W77HtMo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFK2-VJISZe3O_rc3ZVYh4aTwNOwtO_Xw.ttf" - }, - { - "family": "IBM Plex Sans Thai", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext", "thai" ], - "version": "v10", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JNje1VVIzcq1HzJq2AEdo2Tj_qvLqEatYlR8ZKUqcX.ttf", - "200": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqExvcFbehGW74OXw.ttf", - "300": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEovQFbehGW74OXw.ttf", - "500": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE-vUFbehGW74OXw.ttf", - "600": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE1vIFbehGW74OXw.ttf", - "700": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEsvMFbehGW74OXw.ttf", - "regular": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8DtwhZcNaUg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLqMD9Yl.ttf" - }, - { - "family": "IBM Plex Sans Thai Looped", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext", "thai" ], - "version": "v11", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss5AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_HaKpHOtFCQ76Q.ttf", - "200": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_NqrhFmDGC0i8Cc.ttf", - "300": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_L6ohFmDGC0i8Cc.ttf", - "500": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_OaphFmDGC0i8Cc.ttf", - "600": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_MquhFmDGC0i8Cc.ttf", - "700": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_K6vhFmDGC0i8Cc.ttf", - "regular": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBKAoFGoBCQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L9BOKpA.ttf" - }, - { - "family": "IBM Plex Serif", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v19", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf", - "200": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf", - "300": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf", - "500": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf", - "600": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf", - "700": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf", - "100italic": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf", - "200italic": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf", - "300italic": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf", - "regular": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf", - "italic": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf", - "500italic": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf", - "600italic": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf", - "700italic": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizDREVNn1dOx-zrZ2X3pZvkTiUZ2zI.ttf" - }, - { - "family": "IM Fell DW Pica", - "variants": [ "regular", "italic" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf", - "italic": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNwNZQnQ.ttf" - }, - { - "family": "IM Fell DW Pica SC", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTm-RKO.ttf" - }, - { - "family": "IM Fell Double Pica", - "variants": [ "regular", "italic" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf", - "italic": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0W_VA.ttf" - }, - { - "family": "IM Fell Double Pica SC", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ0YwOfg.ttf" - }, - { - "family": "IM Fell English", - "variants": [ "regular", "italic" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf", - "italic": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAzHFqOd.ttf" - }, - { - "family": "IM Fell English SC", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZ7OoIK.ttf" - }, - { - "family": "IM Fell French Canon", - "variants": [ "regular", "italic" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf", - "italic": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6foUNNk.ttf" - }, - { - "family": "IM Fell French Canon SC", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H0c1WhQ.ttf" - }, - { - "family": "IM Fell Great Primer", - "variants": [ "regular", "italic" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf", - "italic": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJrrWtj4.ttf" - }, - { - "family": "IM Fell Great Primer SC", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTIf8D3g.ttf" - }, - { - "family": "Ibarra Real Nova", - "variants": [ - "regular", - "500", - "600", - "700", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v25", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdS5MDtVT9TWIvS.ttf", - "600": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXe-48DtVT9TWIvS.ttf", - "700": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXeH48DtVT9TWIvS.ttf", - "regular": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5MDtVT9TWIvS.ttf", - "italic": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopyiuXztxXZvSkTo.ttf", - "500italic": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopxquXztxXZvSkTo.ttf", - "600italic": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop_apXztxXZvSkTo.ttf", - "700italic": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop8-pXztxXZvSkTo.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5PDsXzs.ttf" - }, - { - "family": "Iceberg", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/iceberg/v20/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/iceberg/v20/8QIJdijAiM7o-qnZiIkErw.ttf" - }, - { - "family": "Iceland", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/iceland/v16/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/iceland/v16/rax9HiuFsdMNOnWPaK1MBA.ttf" - }, - { - "family": "Imbue", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iWfOsNNK-Q4xY.ttf", - "200": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iXfOsNNK-Q4xY.ttf", - "300": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP5aXfOsNNK-Q4xY.ttf", - "500": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP_qXfOsNNK-Q4xY.ttf", - "600": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPxaQfOsNNK-Q4xY.ttf", - "700": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPy-QfOsNNK-Q4xY.ttf", - "800": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iQfOsNNK-Q4xY.ttf", - "900": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP2GQfOsNNK-Q4xY.ttf", - "regular": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXfOsNNK-Q4xY.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXTOoHMA.ttf" - }, - { - "family": "Imperial Script", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/imperialscript/v3/5DCPAKrpzy_H98IV2ISnZBbGrVNvPenlvttWNg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + } + ] + }, + { + "name": "IBM Plex Sans", + "fontFamily": "IBM Plex Sans, sans-serif", + "slug": "ibm-plex-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + } + ] + }, + { + "name": "IBM Plex Sans Arabic", + "fontFamily": "IBM Plex Sans Arabic, sans-serif", + "slug": "ibm-plex-sans-arabic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3MZRtWPQCuHme67tEYUIx3Kh0PHR9N6YNe3PC5eMlAMg0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPy_dCTVsVJKxTs.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOW_tCTVsVJKxTs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs61vSbfdlA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPO_9CTVsVJKxTs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPi-NCTVsVJKxTs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOG-dCTVsVJKxTs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + } + ] + }, + { + "name": "IBM Plex Sans Condensed", + "fontFamily": "IBM Plex Sans Condensed, sans-serif", + "slug": "ibm-plex-sans-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + } + ] + }, + { + "name": "IBM Plex Sans Devanagari", + "fontFamily": "IBM Plex Sans Devanagari, sans-serif", + "slug": "ibm-plex-sans-devanagari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXB3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HMUjwUcjwCEQq.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HnWnQe-b8AV0z0w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H-WrQe-b8AV0z0w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__VUL0c83gCA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HoWvQe-b8AV0z0w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HjWzQe-b8AV0z0w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H6W3Qe-b8AV0z0w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + } + ] + }, + { + "name": "IBM Plex Sans Hebrew", + "fontFamily": "IBM Plex Sans Hebrew, sans-serif", + "slug": "ibm-plex-sans-hebrew", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa4qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEXB-l0VqDaM7C4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVt230_hjqF9Tc2.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUJ2H0_hjqF9Tc2.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2l8Fk3rSaM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVR2X0_hjqF9Tc2.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEV93n0_hjqF9Tc2.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUZ330_hjqF9Tc2.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + } + ] + }, + { + "name": "IBM Plex Sans JP", + "fontFamily": "IBM Plex Sans JP, sans-serif", + "slug": "ibm-plex-sans-jp", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XLDn9KbTDf6_f7dISNqYf_tvPT7E7yjPB7twdmHQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7OLTrNpVuw5_BAM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7IbQrNpVuw5_BAM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XNDn9KbTDf6_f7dISNqYf_tvPT1Cr4iNJ-pwc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7N7RrNpVuw5_BAM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7PLWrNpVuw5_BAM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7JbXrNpVuw5_BAM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + } + ] + }, + { + "name": "IBM Plex Sans KR", + "fontFamily": "IBM Plex Sans KR, sans-serif", + "slug": "ibm-plex-sans-kr", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFM2-VJISZe3O_rc3ZVYh4aTwNOyra_X5zCpMrMfA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyhqef7bsqMPVZb4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyn6df7bsqMPVZb4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFK2-VJISZe3O_rc3ZVYh4aTwNO8tK1W77HtMo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyiacf7bsqMPVZb4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOygqbf7bsqMPVZb4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOym6af7bsqMPVZb4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + } + ] + }, + { + "name": "IBM Plex Sans Thai", + "fontFamily": "IBM Plex Sans Thai, sans-serif", + "slug": "ibm-plex-sans-thai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JNje1VVIzcq1HzJq2AEdo2Tj_qvLqEatYlR8ZKUqcX.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqExvcFbehGW74OXw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEovQFbehGW74OXw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8DtwhZcNaUg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE-vUFbehGW74OXw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE1vIFbehGW74OXw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEsvMFbehGW74OXw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + } + ] + }, + { + "name": "IBM Plex Sans Thai Looped", + "fontFamily": "IBM Plex Sans Thai Looped, sans-serif", + "slug": "ibm-plex-sans-thai-looped", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss5AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_HaKpHOtFCQ76Q.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_NqrhFmDGC0i8Cc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_L6ohFmDGC0i8Cc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBKAoFGoBCQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_OaphFmDGC0i8Cc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_MquhFmDGC0i8Cc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_K6vhFmDGC0i8Cc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + } + ] + }, + { + "name": "IBM Plex Serif", + "fontFamily": "IBM Plex Serif, serif", + "slug": "ibm-plex-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + } + ] + }, + { + "name": "IM Fell DW Pica", + "fontFamily": "IM Fell DW Pica, serif", + "slug": "im-fell-dw-pica", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell DW Pica" + }, + { + "src": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell DW Pica" + } + ] + }, + { + "name": "IM Fell DW Pica SC", + "fontFamily": "IM Fell DW Pica SC, serif", + "slug": "im-fell-dw-pica-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell DW Pica SC" + } + ] + }, + { + "name": "IM Fell Double Pica", + "fontFamily": "IM Fell Double Pica, serif", + "slug": "im-fell-double-pica", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell Double Pica" + }, + { + "src": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell Double Pica" + } + ] + }, + { + "name": "IM Fell Double Pica SC", + "fontFamily": "IM Fell Double Pica SC, serif", + "slug": "im-fell-double-pica-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell Double Pica SC" + } + ] + }, + { + "name": "IM Fell English", + "fontFamily": "IM Fell English, serif", + "slug": "im-fell-english", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell English" + }, + { + "src": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell English" + } + ] + }, + { + "name": "IM Fell English SC", + "fontFamily": "IM Fell English SC, serif", + "slug": "im-fell-english-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell English SC" + } + ] + }, + { + "name": "IM Fell French Canon", + "fontFamily": "IM Fell French Canon, serif", + "slug": "im-fell-french-canon", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell French Canon" + }, + { + "src": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell French Canon" + } + ] + }, + { + "name": "IM Fell French Canon SC", + "fontFamily": "IM Fell French Canon SC, serif", + "slug": "im-fell-french-canon-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell French Canon SC" + } + ] + }, + { + "name": "IM Fell Great Primer", + "fontFamily": "IM Fell Great Primer, serif", + "slug": "im-fell-great-primer", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell Great Primer" + }, + { + "src": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell Great Primer" + } + ] + }, + { + "name": "IM Fell Great Primer SC", + "fontFamily": "IM Fell Great Primer SC, serif", + "slug": "im-fell-great-primer-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell Great Primer SC" + } + ] + }, + { + "name": "Ibarra Real Nova", + "fontFamily": "Ibarra Real Nova, serif", + "slug": "ibarra-real-nova", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5MDtVT9TWIvS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdS5MDtVT9TWIvS.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXe-48DtVT9TWIvS.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXeH48DtVT9TWIvS.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopyiuXztxXZvSkTo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopxquXztxXZvSkTo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop_apXztxXZvSkTo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop8-pXztxXZvSkTo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Ibarra Real Nova" + } + ] + }, + { + "name": "Iceberg", + "fontFamily": "Iceberg, system-ui", + "slug": "iceberg", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/iceberg/v20/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Iceberg" + } + ] + }, + { + "name": "Iceland", + "fontFamily": "Iceland, system-ui", + "slug": "iceland", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/iceland/v16/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Iceland" + } + ] + }, + { + "name": "Imbue", + "fontFamily": "Imbue, serif", + "slug": "imbue", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iWfOsNNK-Q4xY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iXfOsNNK-Q4xY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP5aXfOsNNK-Q4xY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXfOsNNK-Q4xY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP_qXfOsNNK-Q4xY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPxaQfOsNNK-Q4xY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPy-QfOsNNK-Q4xY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iQfOsNNK-Q4xY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP2GQfOsNNK-Q4xY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Imbue" + } + ] + }, + { + "name": "Imperial Script", + "fontFamily": "Imperial Script, cursive", + "slug": "imperial-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/imperialscript/v3/5DCPAKrpzy_H98IV2ISnZBbGrVNfPOPh.ttf" - }, - { - "family": "Imprima", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2023-03-21", - "files": { - "regular": "http://fonts.gstatic.com/s/imprima/v18/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/imprima/v18/VEMxRoN7sY3yuy-7yoSNzA.ttf" - }, - { - "family": "Inconsolata", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v31", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aRr8lleY2co.ttf", - "300": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aRr8lleY2co.ttf", - "500": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aRr8lleY2co.ttf", - "600": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aRr8lleY2co.ttf", - "700": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aRr8lleY2co.ttf", - "800": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aRr8lleY2co.ttf", - "900": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aRr8lleY2co.ttf", - "regular": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aRr8lleY2co.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imperialscript/v3/5DCPAKrpzy_H98IV2ISnZBbGrVNvPenlvttWNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Imperial Script" + } + ] + }, + { + "name": "Imprima", + "fontFamily": "Imprima, sans-serif", + "slug": "imprima", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imprima/v18/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Imprima" + } + ] + }, + { + "name": "Inconsolata", + "fontFamily": "Inconsolata, monospace", + "slug": "inconsolata", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8WRv2kg.ttf" - }, - { - "family": "Inder", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4vq6pw-P3U4O.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4sq7rQs.ttf" - }, - { - "family": "Indie Flower", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/indieflower/v17/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aRr8lleY2co.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aRr8lleY2co.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aRr8lleY2co.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aRr8lleY2co.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aRr8lleY2co.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aRr8lleY2co.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aRr8lleY2co.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aRr8lleY2co.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + } + ] + }, + { + "name": "Inder", + "fontFamily": "Inder, sans-serif", + "slug": "inder", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4vq6pw-P3U4O.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inder" + } + ] + }, + { + "name": "Indie Flower", + "fontFamily": "Indie Flower, cursive", + "slug": "indie-flower", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/indieflower/v17/m8JVjfNVeKWVnh3QMuKkFcZVb0uC.ttf" - }, - { - "family": "Ingrid Darling", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ingriddarling/v2/LDIrapaJNxUtSuFdw-9yf4rCPsLOub458jGL.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/indieflower/v17/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Indie Flower" + } + ] + }, + { + "name": "Ingrid Darling", + "fontFamily": "Ingrid Darling, cursive", + "slug": "ingrid-darling", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ingriddarling/v2/LDIrapaJNxUtSuFdw-9yf4rCPvLPs7o.ttf" - }, - { - "family": "Inika", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/inika/v21/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf", - "regular": "http://fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-phTHRcc2s2XH.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-piTGT8M.ttf" - }, - { - "family": "Inknut Antiqua", - "variants": [ "300", "regular", "500", "600", "700", "800", "900" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf", - "500": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf", - "600": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf", - "700": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf", - "800": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf", - "900": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf", - "regular": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GSYax7VC4ot_qNB4nYpBdaKUUC4Jg.ttf" - }, - { - "family": "Inria Sans", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3ELaDQtFqeY3fX4.ttf", - "700": "http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3FLdDQtFqeY3fX4.ttf", - "300italic": "http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPrcQybX4pQA.ttf", - "regular": "http://fonts.gstatic.com/s/inriasans/v14/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf", - "italic": "http://fonts.gstatic.com/s/inriasans/v14/ptROTiqXYfZMCOiVj9kQ1Oz4LSFrpe8uZA.ttf", - "700italic": "http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PrcQybX4pQA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/inriasans/v14/ptRMTiqXYfZMCOiVj9kQ1O_4LQ.ttf" - }, - { - "family": "Inria Serif", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wAVQjFhFyta3xN.ttf", - "700": "http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wQUgjFhFyta3xN.ttf", - "300italic": "http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT4THjliPbmxN0_E.ttf", - "regular": "http://fonts.gstatic.com/s/inriaserif/v14/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf", - "italic": "http://fonts.gstatic.com/s/inriaserif/v14/fC1nPYxPY3rXxEndZJAzN3SudyjvqlCkcmU.ttf", - "700italic": "http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT5TAjliPbmxN0_E.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/inriaserif/v14/fC1lPYxPY3rXxEndZJAzN3Stdyg.ttf" - }, - { - "family": "Inspiration", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/inspiration/v3/x3dkckPPZa6L4wIg5cZOEvoGnSrlBBsy.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ingriddarling/v2/LDIrapaJNxUtSuFdw-9yf4rCPsLOub458jGL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ingrid Darling" + } + ] + }, + { + "name": "Inika", + "fontFamily": "Inika, serif", + "slug": "inika", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-phTHRcc2s2XH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inika" + }, + { + "src": "http://fonts.gstatic.com/s/inika/v21/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inika" + } + ] + }, + { + "name": "Inknut Antiqua", + "fontFamily": "Inknut Antiqua, serif", + "slug": "inknut-antiqua", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + } + ] + }, + { + "name": "Inria Sans", + "fontFamily": "Inria Sans, sans-serif", + "slug": "inria-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3ELaDQtFqeY3fX4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPrcQybX4pQA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptROTiqXYfZMCOiVj9kQ1Oz4LSFrpe8uZA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3FLdDQtFqeY3fX4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PrcQybX4pQA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Inria Sans" + } + ] + }, + { + "name": "Inria Serif", + "fontFamily": "Inria Serif, serif", + "slug": "inria-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wAVQjFhFyta3xN.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT4THjliPbmxN0_E.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC1nPYxPY3rXxEndZJAzN3SudyjvqlCkcmU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wQUgjFhFyta3xN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT5TAjliPbmxN0_E.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Inria Serif" + } + ] + }, + { + "name": "Inspiration", + "fontFamily": "Inspiration, cursive", + "slug": "inspiration", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/inspiration/v3/x3dkckPPZa6L4wIg5cZOEsoHly4.ttf" - }, - { - "family": "Instrument Serif", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v3", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/instrumentserif/v3/jizBRFtNs2ka5fXjeivQ4LroWlx-2zIZj1bIkNo.ttf", - "italic": "http://fonts.gstatic.com/s/instrumentserif/v3/jizHRFtNs2ka5fXjeivQ4LroWlx-6zATi3TNgNq55w.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/instrumentserif/v3/jizBRFtNs2ka5fXjeivQ4LroWlx-6zMTiw.ttf" - }, - { - "family": "Inter", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.ttf", - "200": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZhrib2Bg-4.ttf", - "300": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf", - "500": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf", - "600": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf", - "700": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf", - "800": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf", - "900": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZhrib2Bg-4.ttf", - "regular": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZlhjQ.ttf" - }, - { - "family": "Inter Tight", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v3", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw6qXCRToK8EPg.ttf", - "200": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjw-qXCRToK8EPg.ttf", - "300": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qXCRToK8EPg.ttf", - "500": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qXCRToK8EPg.ttf", - "600": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqXCRToK8EPg.ttf", - "700": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqXCRToK8EPg.ttf", - "800": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjwiqXCRToK8EPg.ttf", - "900": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqXCRToK8EPg.ttf", - "regular": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qXCRToK8EPg.ttf", - "100italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHi5XgqoUPvi5.ttf", - "200italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCHy5XgqoUPvi5.ttf", - "300italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0wcHy5XgqoUPvi5.ttf", - "italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5XgqoUPvi5.ttf", - "500italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xwHy5XgqoUPvi5.ttf", - "600italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ycGC5XgqoUPvi5.ttf", - "700italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5XgqoUPvi5.ttf", - "800italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCGC5XgqoUPvi5.ttf", - "900italic": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zrGC5XgqoUPvi5.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-aXS5X.ttf" - }, - { - "family": "Irish Grover", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v23", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgv-fRK.ttf" - }, - { - "family": "Island Moments", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/islandmoments/v3/NaPBcZfVGvBdxIt7Ar0qzkXJF-TGIohbZ6SY.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inspiration/v3/x3dkckPPZa6L4wIg5cZOEvoGnSrlBBsy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inspiration" + } + ] + }, + { + "name": "Instrument Sans", + "fontFamily": "Instrument Sans, sans-serif", + "slug": "instrument-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-Qf1mS0v3_7Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-Qf1mS0v3_7Y.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQb_gf1mS0v3_7Y.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gf1mS0v3_7Y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENuu-2kykN2u7YUwU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENut22kykN2u7YUwU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENujGxkykN2u7YUwU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENugixkykN2u7YUwU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Instrument Sans" + } + ] + }, + { + "name": "Instrument Serif", + "fontFamily": "Instrument Serif, serif", + "slug": "instrument-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/instrumentserif/v3/jizBRFtNs2ka5fXjeivQ4LroWlx-2zIZj1bIkNo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Instrument Serif" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentserif/v3/jizHRFtNs2ka5fXjeivQ4LroWlx-6zATi3TNgNq55w.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Instrument Serif" + } + ] + }, + { + "name": "Inter", + "fontFamily": "Inter, sans-serif", + "slug": "inter", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZhrib2Bg-4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZhrib2Bg-4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Inter" + } + ] + }, + { + "name": "Inter Tight", + "fontFamily": "Inter Tight, sans-serif", + "slug": "inter-tight", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw6qXCRToK8EPg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjw-qXCRToK8EPg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qXCRToK8EPg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qXCRToK8EPg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qXCRToK8EPg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqXCRToK8EPg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqXCRToK8EPg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjwiqXCRToK8EPg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqXCRToK8EPg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHi5XgqoUPvi5.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCHy5XgqoUPvi5.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0wcHy5XgqoUPvi5.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5XgqoUPvi5.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xwHy5XgqoUPvi5.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ycGC5XgqoUPvi5.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5XgqoUPvi5.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCGC5XgqoUPvi5.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zrGC5XgqoUPvi5.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + } + ] + }, + { + "name": "Irish Grover", + "fontFamily": "Irish Grover, system-ui", + "slug": "irish-grover", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Irish Grover" + } + ] + }, + { + "name": "Island Moments", + "fontFamily": "Island Moments, cursive", + "slug": "island-moments", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/islandmoments/v3/NaPBcZfVGvBdxIt7Ar0qzkXJF9THKIw.ttf" - }, - { - "family": "Istok Web", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/istokweb/v21/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf", - "regular": "http://fonts.gstatic.com/s/istokweb/v21/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf", - "italic": "http://fonts.gstatic.com/s/istokweb/v21/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf", - "700italic": "http://fonts.gstatic.com/s/istokweb/v21/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/istokweb/v21/3qTvojGmgSyUukBzKslpAGt6.ttf" - }, - { - "family": "Italiana", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/italiana/v16/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/italiana/v16/QldNNTtLsx4E__B0XQmQaXk.ttf" - }, - { - "family": "Italianno", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v17", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/italianno/v17/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/islandmoments/v3/NaPBcZfVGvBdxIt7Ar0qzkXJF-TGIohbZ6SY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Island Moments" + } + ] + }, + { + "name": "Istok Web", + "fontFamily": "Istok Web, sans-serif", + "slug": "istok-web", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Istok Web" + }, + { + "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Istok Web" + }, + { + "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Istok Web" + }, + { + "src": "http://fonts.gstatic.com/s/istokweb/v21/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Istok Web" + } + ] + }, + { + "name": "Italiana", + "fontFamily": "Italiana, serif", + "slug": "italiana", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/italiana/v16/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Italiana" + } + ] + }, + { + "name": "Italianno", + "fontFamily": "Italianno, cursive", + "slug": "italianno", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/italianno/v17/dg4n_p3sv6gCJkwzT6RXjpwt.ttf" - }, - { - "family": "Itim", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v11", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/itim/v11/0nknC9ziJOYewARKkc7ZdwU.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/italianno/v17/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Italianno" + } + ] + }, + { + "name": "Itim", + "fontFamily": "Itim, cursive", + "slug": "itim", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/itim/v11/0nknC9ziJOYe8AVAlQ.ttf" - }, - { - "family": "Jacques Francois", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/jacquesfrancois/v20/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/jacquesfrancois/v20/ZXu9e04ZvKeOOHIe1TMahbcIU2cgqcLgpQ.ttf" - }, - { - "family": "Jacques Francois Shadow", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v21/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v21/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_p8Uun8.ttf" - }, - { - "family": "Jaldi", - "variants": [ "regular", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/jaldi/v12/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf", - "regular": "http://fonts.gstatic.com/s/jaldi/v12/or3sQ67z0_CI30NUZpD_B6g8.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/jaldi/v12/or3sQ67z0_CI33NVbJQ.ttf" - }, - { - "family": "JetBrains Mono", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yK1jPVmUsaaDhw.ttf", - "200": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKxjPVmUsaaDhw.ttf", - "300": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8lqxjPVmUsaaDhw.ttf", - "500": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjPVmUsaaDhw.ttf", - "600": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtjPVmUsaaDhw.ttf", - "700": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjPVmUsaaDhw.ttf", - "800": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKtjPVmUsaaDhw.ttf", - "regular": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPVmUsaaDhw.ttf", - "100italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-Lf1OQk6OThxPA.ttf", - "200italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LflOQk6OThxPA.ttf", - "300italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO_VflOQk6OThxPA.ttf", - "italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-LflOQk6OThxPA.ttf", - "500italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-5flOQk6OThxPA.ttf", - "600italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9VeVOQk6OThxPA.ttf", - "700italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9seVOQk6OThxPA.ttf", - "800italic": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LeVOQk6OThxPA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/itim/v11/0nknC9ziJOYewARKkc7ZdwU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Itim" + } + ] + }, + { + "name": "Jacques Francois", + "fontFamily": "Jacques Francois, serif", + "slug": "jacques-francois", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jacquesfrancois/v20/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jacques Francois" + } + ] + }, + { + "name": "Jacques Francois Shadow", + "fontFamily": "Jacques Francois Shadow, system-ui", + "slug": "jacques-francois-shadow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v21/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jacques Francois Shadow" + } + ] + }, + { + "name": "Jaldi", + "fontFamily": "Jaldi, sans-serif", + "slug": "jaldi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jaldi/v12/or3sQ67z0_CI30NUZpD_B6g8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jaldi" + }, + { + "src": "http://fonts.gstatic.com/s/jaldi/v12/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Jaldi" + } + ] + }, + { + "name": "JetBrains Mono", + "fontFamily": "JetBrains Mono, monospace", + "slug": "jetbrains-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTPFOQ.ttf" - }, - { - "family": "Jim Nightshade", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yK1jPVmUsaaDhw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKxjPVmUsaaDhw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8lqxjPVmUsaaDhw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPVmUsaaDhw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjPVmUsaaDhw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtjPVmUsaaDhw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjPVmUsaaDhw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKtjPVmUsaaDhw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-Lf1OQk6OThxPA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LflOQk6OThxPA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO_VflOQk6OThxPA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-LflOQk6OThxPA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-5flOQk6OThxPA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9VeVOQk6OThxPA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9seVOQk6OThxPA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LeVOQk6OThxPA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + } + ] + }, + { + "name": "Jim Nightshade", + "fontFamily": "Jim Nightshade, cursive", + "slug": "jim-nightshade", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-NS5XX4.ttf" - }, - { - "family": "Joan", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v2", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/joan/v2/ZXupe1oZsqWRbRdH8X1p_Ng.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/joan/v2/ZXupe1oZsqWRXRZN9Q.ttf" - }, - { - "family": "Jockey One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/jockeyone/v16/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/jockeyone/v16/HTxpL2g2KjCFj4x8WI6AnIfxGQ.ttf" - }, - { - "family": "Jolly Lodger", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3lWODX.ttf" - }, - { - "family": "Jomhuria", - "variants": [ "regular" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/jomhuria/v18/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/jomhuria/v18/Dxxp8j-TMXf-llKur1b0OuU.ttf" - }, - { - "family": "Jomolhari", - "variants": [ "regular" ], - "subsets": [ "latin", "tibetan" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/jomolhari/v14/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/jomolhari/v14/EvONzA1M1Iw_CBd2hsQyFlgd.ttf" - }, - { - "family": "Josefin Sans", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v26", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMFrLgTsQV0.ttf", - "200": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMFrLgTsQV0.ttf", - "300": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMFrLgTsQV0.ttf", - "500": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMFrLgTsQV0.ttf", - "600": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMFrLgTsQV0.ttf", - "700": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMFrLgTsQV0.ttf", - "regular": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMFrLgTsQV0.ttf", - "100italic": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKibpUV3MEQ.ttf", - "200italic": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKibpUV3MEQ.ttf", - "300italic": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKibpUV3MEQ.ttf", - "italic": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKibpUV3MEQ.ttf", - "500italic": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKibpUV3MEQ.ttf", - "600italic": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKibpUV3MEQ.ttf", - "700italic": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKibpUV3MEQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQbMBhKg.ttf" - }, - { - "family": "Josefin Slab", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71mtd3k3K6CcEyI.ttf", - "200": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W79msd3k3K6CcEyI.ttf", - "300": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W7wesd3k3K6CcEyI.ttf", - "500": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W72usd3k3K6CcEyI.ttf", - "600": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W74erd3k3K6CcEyI.ttf", - "700": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W776rd3k3K6CcEyI.ttf", - "regular": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msd3k3K6CcEyI.ttf", - "100italic": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzs9L4KZAyK43w.ttf", - "200italic": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvHzo9L4KZAyK43w.ttf", - "300italic": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvwTo9L4KZAyK43w.ttf", - "italic": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzo9L4KZAyK43w.ttf", - "500italic": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvrTo9L4KZAyK43w.ttf", - "600italic": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvQT09L4KZAyK43w.ttf", - "700italic": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHveD09L4KZAyK43w.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msR3g9Lw.ttf" - }, - { - "family": "Jost", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "cyrillic", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJAVGPokMmuHL.ttf", - "200": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjJQVGPokMmuHL.ttf", - "300": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mz9JQVGPokMmuHL.ttf", - "500": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myRJQVGPokMmuHL.ttf", - "600": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mx9IgVGPokMmuHL.ttf", - "700": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mxEIgVGPokMmuHL.ttf", - "800": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjIgVGPokMmuHL.ttf", - "900": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwKIgVGPokMmuHL.ttf", - "regular": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJQVGPokMmuHL.ttf", - "100italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENI0un_HLMEo.ttf", - "200italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNI0un_HLMEo.ttf", - "300italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNI0un_HLMEo.ttf", - "italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNI0un_HLMEo.ttf", - "500italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNI0un_HLMEo.ttf", - "600italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNI0un_HLMEo.ttf", - "700italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNI0un_HLMEo.ttf", - "800italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNI0un_HLMEo.ttf", - "900italic": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNI0un_HLMEo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJTVHNI0.ttf" - }, - { - "family": "Joti One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-04-04", - "files": { - "regular": "http://fonts.gstatic.com/s/jotione/v22/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/jotione/v22/Z9XVDmdJQAmWm9TwabTf6Ok.ttf" - }, - { - "family": "Jua", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/jua/v13/co3KmW9ljjAjc-DZCsKgsg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/jua/v13/co3KmW9ljjATcurd.ttf" - }, - { - "family": "Judson", - "variants": [ "regular", "italic", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v19", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/judson/v19/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf", - "regular": "http://fonts.gstatic.com/s/judson/v19/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf", - "italic": "http://fonts.gstatic.com/s/judson/v19/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/judson/v19/FeVRS0Fbvbc14VxhDrlw.ttf" - }, - { - "family": "Julee", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v25", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/julee/v25/TuGfUVB3RpZPQ6ZLodgzydtk.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jim Nightshade" + } + ] + }, + { + "name": "Joan", + "fontFamily": "Joan, serif", + "slug": "joan", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/joan/v2/ZXupe1oZsqWRbRdH8X1p_Ng.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Joan" + } + ] + }, + { + "name": "Jockey One", + "fontFamily": "Jockey One, sans-serif", + "slug": "jockey-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jockeyone/v16/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jockey One" + } + ] + }, + { + "name": "Jolly Lodger", + "fontFamily": "Jolly Lodger, system-ui", + "slug": "jolly-lodger", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jolly Lodger" + } + ] + }, + { + "name": "Jomhuria", + "fontFamily": "Jomhuria, system-ui", + "slug": "jomhuria", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jomhuria/v18/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jomhuria" + } + ] + }, + { + "name": "Jomolhari", + "fontFamily": "Jomolhari, serif", + "slug": "jomolhari", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jomolhari/v14/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jomolhari" + } + ] + }, + { + "name": "Josefin Sans", + "fontFamily": "Josefin Sans, sans-serif", + "slug": "josefin-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMFrLgTsQV0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMFrLgTsQV0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMFrLgTsQV0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMFrLgTsQV0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMFrLgTsQV0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMFrLgTsQV0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMFrLgTsQV0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKibpUV3MEQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKibpUV3MEQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKibpUV3MEQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKibpUV3MEQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKibpUV3MEQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKibpUV3MEQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKibpUV3MEQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + } + ] + }, + { + "name": "Josefin Slab", + "fontFamily": "Josefin Slab, serif", + "slug": "josefin-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71mtd3k3K6CcEyI.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W79msd3k3K6CcEyI.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W7wesd3k3K6CcEyI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msd3k3K6CcEyI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W72usd3k3K6CcEyI.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W74erd3k3K6CcEyI.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W776rd3k3K6CcEyI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzs9L4KZAyK43w.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvHzo9L4KZAyK43w.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvwTo9L4KZAyK43w.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzo9L4KZAyK43w.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvrTo9L4KZAyK43w.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvQT09L4KZAyK43w.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHveD09L4KZAyK43w.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + } + ] + }, + { + "name": "Jost", + "fontFamily": "Jost, sans-serif", + "slug": "jost", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJAVGPokMmuHL.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjJQVGPokMmuHL.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mz9JQVGPokMmuHL.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJQVGPokMmuHL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myRJQVGPokMmuHL.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mx9IgVGPokMmuHL.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mxEIgVGPokMmuHL.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjIgVGPokMmuHL.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwKIgVGPokMmuHL.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENI0un_HLMEo.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNI0un_HLMEo.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNI0un_HLMEo.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNI0un_HLMEo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNI0un_HLMEo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNI0un_HLMEo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNI0un_HLMEo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNI0un_HLMEo.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNI0un_HLMEo.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Jost" + } + ] + }, + { + "name": "Joti One", + "fontFamily": "Joti One, system-ui", + "slug": "joti-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jotione/v22/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Joti One" + } + ] + }, + { + "name": "Jua", + "fontFamily": "Jua, sans-serif", + "slug": "jua", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jua/v13/co3KmW9ljjAjc-DZCsKgsg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jua" + } + ] + }, + { + "name": "Judson", + "fontFamily": "Judson, serif", + "slug": "judson", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/judson/v19/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Judson" + }, + { + "src": "http://fonts.gstatic.com/s/judson/v19/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Judson" + }, + { + "src": "http://fonts.gstatic.com/s/judson/v19/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Judson" + } + ] + }, + { + "name": "Julee", + "fontFamily": "Julee, cursive", + "slug": "julee", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/julee/v25/TuGfUVB3RpZPQ5ZKq9w.ttf" - }, - { - "family": "Julius Sans One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/juliussansone/v14/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/juliussansone/v14/1Pt2g8TAX_SGgBGUi0tGOYEga5WOxHsS.ttf" - }, - { - "family": "Junge", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/junge/v20/gokgH670Gl1lUqAdvhB7SnKm.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/junge/v20/gokgH670Gl1lUpActBQ.ttf" - }, - { - "family": "Jura", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "kayah-li", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v29", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf", - "500": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf", - "600": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf", - "700": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf", - "regular": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7ZugR_0.ttf" - }, - { - "family": "Just Another Hand", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/justanotherhand/v19/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/julee/v25/TuGfUVB3RpZPQ6ZLodgzydtk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Julee" + } + ] + }, + { + "name": "Julius Sans One", + "fontFamily": "Julius Sans One, sans-serif", + "slug": "julius-sans-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/juliussansone/v14/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Julius Sans One" + } + ] + }, + { + "name": "Junge", + "fontFamily": "Junge, serif", + "slug": "junge", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/junge/v20/gokgH670Gl1lUqAdvhB7SnKm.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Junge" + } + ] + }, + { + "name": "Jura", + "fontFamily": "Jura, sans-serif", + "slug": "jura", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Jura" + }, + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jura" + }, + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Jura" + }, + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Jura" + }, + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Jura" + } + ] + }, + { + "name": "Just Another Hand", + "fontFamily": "Just Another Hand, cursive", + "slug": "just-another-hand", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/justanotherhand/v19/845CNN4-AJyIGvIou-6yJKyptyOpOfr-DG0.ttf" - }, - { - "family": "Just Me Again Down Here", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/justanotherhand/v19/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Just Another Hand" + } + ] + }, + { + "name": "Just Me Again Down Here", + "fontFamily": "Just Me Again Down Here, cursive", + "slug": "just-me-again-down-here", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAtwGtKQ.ttf" - }, - { - "family": "K2D", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic" - ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v9", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0ErE6UpvrIw74NL.ttf", - "200": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erv4QJlJw85ppSGw.ttf", - "300": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er24cJlJw85ppSGw.ttf", - "500": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erg4YJlJw85ppSGw.ttf", - "600": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Err4EJlJw85ppSGw.ttf", - "700": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Ery4AJlJw85ppSGw.ttf", - "800": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er14MJlJw85ppSGw.ttf", - "100italic": "http://fonts.gstatic.com/s/k2d/v9/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf", - "200italic": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf", - "300italic": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf", - "regular": "http://fonts.gstatic.com/s/k2d/v9/J7aTnpF2V0ETd68tnLcg7w.ttf", - "italic": "http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0EjdaUpvrIw74NL.ttf", - "500italic": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf", - "600italic": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf", - "700italic": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf", - "800italic": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/k2d/v9/J7aTnpF2V0EjdqUp.ttf" - }, - { - "family": "Kadwa", - "variants": [ "regular", "700" ], - "subsets": [ "devanagari", "latin" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/kadwa/v10/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf", - "regular": "http://fonts.gstatic.com/s/kadwa/v10/rnCm-x5V0g7iphTHRcc2s2XH.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kadwa/v10/rnCm-x5V0g7ipiTGT8M.ttf" - }, - { - "family": "Kaisei Decol", - "variants": [ "regular", "500", "700" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v8", - "lastModified": "2022-09-27", - "files": { - "500": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iKr3gr00i_qb57kA.ttf", - "700": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iK534r00i_qb57kA.ttf", - "regular": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrwmSqP45sidWf3QmfFW6iyW1EP22OjoA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrwmSqP45sidWf3QmfFW6iCWlsL.ttf" - }, - { - "family": "Kaisei HarunoUmi", - "variants": [ "regular", "500", "700" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v8", - "lastModified": "2022-09-27", - "files": { - "500": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcIj_QlMcFwmC9FAU.ttf", - "700": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcInfWlMcFwmC9FAU.ttf", - "regular": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_RiZQSLqBQoAHhK_C6N_nzy_jcGsv5sM8u3mk.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_RiZQSLqBQoAHhK_C6N_nzy_jcKsrztA.ttf" - }, - { - "family": "Kaisei Opti", - "variants": [ "regular", "500", "700" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v8", - "lastModified": "2022-09-27", - "files": { - "500": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGGqxY1u7f34DYwn.ttf", - "700": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGHiw41u7f34DYwn.ttf", - "regular": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldKNThJphYb8_g6c2nlIFle7KlmxuHx.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldKNThJphYb8_g6c2nlIGlf5q0.ttf" - }, - { - "family": "Kaisei Tokumin", - "variants": [ "regular", "500", "700", "800" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v8", - "lastModified": "2022-09-27", - "files": { - "500": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnqr_3khpMIzeI6v.ttf", - "700": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnrj-XkhpMIzeI6v.ttf", - "800": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnr_-nkhpMIzeI6v.ttf", - "regular": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8sN5wdZg7xCwuMsylww2ZiQkJf1l0pj946.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8sN5wdZg7xCwuMsylww2ZiQnJe3Fk.ttf" - }, - { - "family": "Kalam", - "variants": [ "300", "regular", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf", - "700": "http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf", - "regular": "http://fonts.gstatic.com/s/kalam/v16/YA9dr0Wd4kDdMuhWMibDszkB.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Just Me Again Down Here" + } + ] + }, + { + "name": "K2D", + "fontFamily": "K2D, sans-serif", + "slug": "k2d", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0ErE6UpvrIw74NL.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erv4QJlJw85ppSGw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er24cJlJw85ppSGw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aTnpF2V0ETd68tnLcg7w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0EjdaUpvrIw74NL.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erg4YJlJw85ppSGw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Err4EJlJw85ppSGw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Ery4AJlJw85ppSGw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er14MJlJw85ppSGw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "K2D" + } + ] + }, + { + "name": "Kadwa", + "fontFamily": "Kadwa, serif", + "slug": "kadwa", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kadwa/v10/rnCm-x5V0g7iphTHRcc2s2XH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kadwa" + }, + { + "src": "http://fonts.gstatic.com/s/kadwa/v10/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kadwa" + } + ] + }, + { + "name": "Kaisei Decol", + "fontFamily": "Kaisei Decol, serif", + "slug": "kaisei-decol", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrwmSqP45sidWf3QmfFW6iyW1EP22OjoA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaisei Decol" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iKr3gr00i_qb57kA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kaisei Decol" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iK534r00i_qb57kA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kaisei Decol" + } + ] + }, + { + "name": "Kaisei HarunoUmi", + "fontFamily": "Kaisei HarunoUmi, serif", + "slug": "kaisei-harunoumi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_RiZQSLqBQoAHhK_C6N_nzy_jcGsv5sM8u3mk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaisei HarunoUmi" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcIj_QlMcFwmC9FAU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kaisei HarunoUmi" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcInfWlMcFwmC9FAU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kaisei HarunoUmi" + } + ] + }, + { + "name": "Kaisei Opti", + "fontFamily": "Kaisei Opti, serif", + "slug": "kaisei-opti", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldKNThJphYb8_g6c2nlIFle7KlmxuHx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaisei Opti" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGGqxY1u7f34DYwn.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kaisei Opti" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGHiw41u7f34DYwn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kaisei Opti" + } + ] + }, + { + "name": "Kaisei Tokumin", + "fontFamily": "Kaisei Tokumin, serif", + "slug": "kaisei-tokumin", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8sN5wdZg7xCwuMsylww2ZiQkJf1l0pj946.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaisei Tokumin" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnqr_3khpMIzeI6v.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kaisei Tokumin" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnrj-XkhpMIzeI6v.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kaisei Tokumin" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnr_-nkhpMIzeI6v.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Kaisei Tokumin" + } + ] + }, + { + "name": "Kalam", + "fontFamily": "Kalam, cursive", + "slug": "kalam", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kalam/v16/YA9dr0Wd4kDdMthXOCI.ttf" - }, - { - "family": "Kameron", - "variants": [ "regular", "700" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/kameron/v15/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf", - "regular": "http://fonts.gstatic.com/s/kameron/v15/vm82dR7vXErQxuznsL4wL-XIYH8.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kameron/v15/vm82dR7vXErQxuzngL86Kw.ttf" - }, - { - "family": "Kanit", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v13", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/kanit/v13/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf", - "200": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf", - "300": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf", - "500": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf", - "600": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf", - "700": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf", - "800": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf", - "900": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf", - "100italic": "http://fonts.gstatic.com/s/kanit/v13/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf", - "200italic": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf", - "300italic": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf", - "regular": "http://fonts.gstatic.com/s/kanit/v13/nKKZ-Go6G5tXcoaSEQGodLxA.ttf", - "italic": "http://fonts.gstatic.com/s/kanit/v13/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf", - "500italic": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf", - "600italic": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf", - "700italic": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf", - "800italic": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf", - "900italic": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kanit/v13/nKKZ-Go6G5tXcraTGwU.ttf" - }, - { - "family": "Kantumruy Pro", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "khmer", "latin", "latin-ext" ], - "version": "v8", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urUs0M34dR6dW.ttf", - "200": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg3urEs0M34dR6dW.ttf", - "300": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg0wrEs0M34dR6dW.ttf", - "500": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1crEs0M34dR6dW.ttf", - "600": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2wq0s0M34dR6dW.ttf", - "700": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2Jq0s0M34dR6dW.ttf", - "regular": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urEs0M34dR6dW.ttf", - "100italic": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N2OXo_QrdWlcU.ttf", - "200italic": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7yN3OXo_QrdWlcU.ttf", - "300italic": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7_13OXo_QrdWlcU.ttf", - "italic": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N3OXo_QrdWlcU.ttf", - "500italic": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim75F3OXo_QrdWlcU.ttf", - "600italic": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim731wOXo_QrdWlcU.ttf", - "700italic": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim70RwOXo_QrdWlcU.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urHs1OXo.ttf" - }, - { - "family": "Karantina", - "variants": [ "300", "regular", "700" ], - "subsets": [ "hebrew", "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxXCgf-P5Oaiw4cw.ttf", - "700": "http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxTC8f-P5Oaiw4cw.ttf", - "regular": "http://fonts.gstatic.com/s/karantina/v11/buE0po24ccnh31GVMABJ8AA78NVSYw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/karantina/v11/buE0po24ccnh31GVMAB58Qo_.ttf" - }, - { - "family": "Karla", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2023-05-02", - "files": { - "200": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqFENLR7fHGw.ttf", - "300": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqFENLR7fHGw.ttf", - "500": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqFENLR7fHGw.ttf", - "600": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qFENLR7fHGw.ttf", - "700": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qFENLR7fHGw.ttf", - "800": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qFENLR7fHGw.ttf", - "regular": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFENLR7fHGw.ttf", - "200italic": "http://fonts.gstatic.com/s/karla/v24/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCV0lPZbLXGxGR.ttf", - "300italic": "http://fonts.gstatic.com/s/karla/v24/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNkcV0lPZbLXGxGR.ttf", - "italic": "http://fonts.gstatic.com/s/karla/v24/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlCV0lPZbLXGxGR.ttf", - "500italic": "http://fonts.gstatic.com/s/karla/v24/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlwV0lPZbLXGxGR.ttf", - "600italic": "http://fonts.gstatic.com/s/karla/v24/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmcUElPZbLXGxGR.ttf", - "700italic": "http://fonts.gstatic.com/s/karla/v24/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmlUElPZbLXGxGR.ttf", - "800italic": "http://fonts.gstatic.com/s/karla/v24/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCUElPZbLXGxGR.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/karla/v24/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqaFUlP.ttf" - }, - { - "family": "Karma", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf", - "500": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf", - "600": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf", - "700": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf", - "regular": "http://fonts.gstatic.com/s/karma/v16/va9I4kzAzMZRGIBvS-J3kbDP.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/karma/v16/va9I4kzAzMZRGLBuQeY.ttf" - }, - { - "family": "Katibeh", - "variants": [ "regular" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/katibeh/v17/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/katibeh/v17/ZGjXol5MQJog4bxDWCxbUA.ttf" - }, - { - "family": "Kaushan Script", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/kaushanscript/v14/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kalam" + }, + { + "src": "http://fonts.gstatic.com/s/kalam/v16/YA9dr0Wd4kDdMuhWMibDszkB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kalam" + }, + { + "src": "http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kalam" + } + ] + }, + { + "name": "Kameron", + "fontFamily": "Kameron, serif", + "slug": "kameron", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kameron/v15/vm82dR7vXErQxuznsL4wL-XIYH8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kameron" + }, + { + "src": "http://fonts.gstatic.com/s/kameron/v15/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kameron" + } + ] + }, + { + "name": "Kanit", + "fontFamily": "Kanit, sans-serif", + "slug": "kanit", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKZ-Go6G5tXcoaSEQGodLxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Kanit" + } + ] + }, + { + "name": "Kantumruy Pro", + "fontFamily": "Kantumruy Pro, sans-serif", + "slug": "kantumruy-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urUs0M34dR6dW.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg3urEs0M34dR6dW.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg0wrEs0M34dR6dW.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urEs0M34dR6dW.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1crEs0M34dR6dW.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2wq0s0M34dR6dW.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2Jq0s0M34dR6dW.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N2OXo_QrdWlcU.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7yN3OXo_QrdWlcU.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7_13OXo_QrdWlcU.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N3OXo_QrdWlcU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim75F3OXo_QrdWlcU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim731wOXo_QrdWlcU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim70RwOXo_QrdWlcU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + } + ] + }, + { + "name": "Karantina", + "fontFamily": "Karantina, system-ui", + "slug": "karantina", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxXCgf-P5Oaiw4cw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Karantina" + }, + { + "src": "http://fonts.gstatic.com/s/karantina/v11/buE0po24ccnh31GVMABJ8AA78NVSYw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Karantina" + }, + { + "src": "http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxTC8f-P5Oaiw4cw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Karantina" + } + ] + }, + { + "name": "Karla", + "fontFamily": "Karla, sans-serif", + "slug": "karla", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqFENLR7fHGw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqFENLR7fHGw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFENLR7fHGw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqFENLR7fHGw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qFENLR7fHGw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qFENLR7fHGw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qFENLR7fHGw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCV0lPZbLXGxGR.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNkcV0lPZbLXGxGR.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlCV0lPZbLXGxGR.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlwV0lPZbLXGxGR.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmcUElPZbLXGxGR.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmlUElPZbLXGxGR.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCUElPZbLXGxGR.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Karla" + } + ] + }, + { + "name": "Karma", + "fontFamily": "Karma, serif", + "slug": "karma", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Karma" + }, + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9I4kzAzMZRGIBvS-J3kbDP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Karma" + }, + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Karma" + }, + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Karma" + }, + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Karma" + } + ] + }, + { + "name": "Katibeh", + "fontFamily": "Katibeh, system-ui", + "slug": "katibeh", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/katibeh/v17/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Katibeh" + } + ] + }, + { + "name": "Kaushan Script", + "fontFamily": "Kaushan Script, cursive", + "slug": "kaushan-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kaushanscript/v14/vm8vdRfvXFLG3OLnsO15WYS5DG7-wNc.ttf" - }, - { - "family": "Kavivanar", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "tamil" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/kavivanar/v18/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaushanscript/v14/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaushan Script" + } + ] + }, + { + "name": "Kavivanar", + "fontFamily": "Kavivanar, cursive", + "slug": "kavivanar", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kavivanar/v18/o-0IIpQgyXYSwhxP7_Jr4zRF.ttf" - }, - { - "family": "Kavoon", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/kavoon/v21/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kavoon/v21/pxiFyp4_scRYhlUINbD-.ttf" - }, - { - "family": "Kdam Thmor Pro", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin", "latin-ext" ], - "version": "v1", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/kdamthmorpro/v1/EJRPQgAzVdcI-Qdvt34jzurnGA7_j89I8ZWb.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kdamthmorpro/v1/EJRPQgAzVdcI-Qdvt34jzurnGD7-hcs.ttf" - }, - { - "family": "Keania One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/keaniaone/v21/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/keaniaone/v21/zOL54pXJk65E8pXardnu-cVkuw.ttf" - }, - { - "family": "Kelly Slab", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/kellyslab/v15/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kellyslab/v15/-W_7XJX0Rz3cxUnJC5t6fkILew.ttf" - }, - { - "family": "Kenia", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/kenia/v24/jizURE5PuHQH9qCONUGswfGM.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kenia/v24/jizURE5PuHQH9pCPP0U.ttf" - }, - { - "family": "Khand", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-12-08", - "files": { - "300": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf", - "500": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf", - "600": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf", - "700": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf", - "regular": "http://fonts.gstatic.com/s/khand/v17/TwMA-IINQlQQ0YpVWHU_TBqO.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/khand/v17/TwMA-IINQlQQ0bpUUnE.ttf" - }, - { - "family": "Khmer", - "variants": [ "regular" ], - "subsets": [ "khmer" ], - "version": "v25", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/khmer/v25/MjQImit_vPPwpF-BpN2EeYmD.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/khmer/v25/MjQImit_vPPwpG-Artk.ttf" - }, - { - "family": "Khula", - "variants": [ "300", "regular", "600", "700", "800" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf", - "600": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf", - "700": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf", - "800": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf", - "regular": "http://fonts.gstatic.com/s/khula/v12/OpNCnoEOns3V7FcJpA_chzJ0.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/khula/v12/OpNCnoEOns3V7GcIrgs.ttf" - }, - { - "family": "Kings", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/kings/v5/8AtnGsK4O5CYXU_Iq6GSPaHS.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kavivanar/v18/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kavivanar" + } + ] + }, + { + "name": "Kavoon", + "fontFamily": "Kavoon, system-ui", + "slug": "kavoon", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kavoon/v21/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kavoon" + } + ] + }, + { + "name": "Kdam Thmor Pro", + "fontFamily": "Kdam Thmor Pro, sans-serif", + "slug": "kdam-thmor-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kdamthmorpro/v1/EJRPQgAzVdcI-Qdvt34jzurnGA7_j89I8ZWb.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kdam Thmor Pro" + } + ] + }, + { + "name": "Keania One", + "fontFamily": "Keania One, system-ui", + "slug": "keania-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/keaniaone/v21/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Keania One" + } + ] + }, + { + "name": "Kelly Slab", + "fontFamily": "Kelly Slab, system-ui", + "slug": "kelly-slab", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kellyslab/v15/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kelly Slab" + } + ] + }, + { + "name": "Kenia", + "fontFamily": "Kenia, system-ui", + "slug": "kenia", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kenia/v24/jizURE5PuHQH9qCONUGswfGM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kenia" + } + ] + }, + { + "name": "Khand", + "fontFamily": "Khand, sans-serif", + "slug": "khand", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Khand" + }, + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMA-IINQlQQ0YpVWHU_TBqO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Khand" + }, + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Khand" + }, + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Khand" + }, + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Khand" + } + ] + }, + { + "name": "Khmer", + "fontFamily": "Khmer, system-ui", + "slug": "khmer", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/khmer/v25/MjQImit_vPPwpF-BpN2EeYmD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Khmer" + } + ] + }, + { + "name": "Khula", + "fontFamily": "Khula, sans-serif", + "slug": "khula", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Khula" + }, + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNCnoEOns3V7FcJpA_chzJ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Khula" + }, + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Khula" + }, + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Khula" + }, + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Khula" + } + ] + }, + { + "name": "Kings", + "fontFamily": "Kings, cursive", + "slug": "kings", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kings/v5/8AtnGsK4O5CYXX_JoaU.ttf" - }, - { - "family": "Kirang Haerang", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v20", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/kiranghaerang/v20/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kiranghaerang/v20/E21-_dn_gvvIjhYON1lpIU4-bfquUvI.ttf" - }, - { - "family": "Kite One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-03-21", - "files": { - "regular": "http://fonts.gstatic.com/s/kiteone/v22/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kiteone/v22/70lQu7shLnA_E02vyp1a4n0.ttf" - }, - { - "family": "Kiwi Maru", - "variants": [ "300", "regular", "500" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-27", - "files": { - "300": "http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gNCi0Vxn9R5ShnA.ttf", - "500": "http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gbCm0Vxn9R5ShnA.ttf", - "regular": "http://fonts.gstatic.com/s/kiwimaru/v14/R70YjykGkuuDep-hRg6YmACQXzLhTg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kiwimaru/v14/R70YjykGkuuDep-hRg6omQqU.ttf" - }, - { - "family": "Klee One", - "variants": [ "regular", "600" ], - "subsets": [ - "cyrillic", - "greek-ext", - "japanese", - "latin", - "latin-ext" - ], - "version": "v7", - "lastModified": "2022-09-27", - "files": { - "600": "http://fonts.gstatic.com/s/kleeone/v7/LDI2apCLNRc6A8oT4pbYF8Osc-bGkqIw.ttf", - "regular": "http://fonts.gstatic.com/s/kleeone/v7/LDIxapCLNRc6A8oT4q4AOeekWPrP.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kings/v5/8AtnGsK4O5CYXU_Iq6GSPaHS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kings" + } + ] + }, + { + "name": "Kirang Haerang", + "fontFamily": "Kirang Haerang, system-ui", + "slug": "kirang-haerang", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kiranghaerang/v20/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kirang Haerang" + } + ] + }, + { + "name": "Kite One", + "fontFamily": "Kite One, sans-serif", + "slug": "kite-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kiteone/v22/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kite One" + } + ] + }, + { + "name": "Kiwi Maru", + "fontFamily": "Kiwi Maru, serif", + "slug": "kiwi-maru", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gNCi0Vxn9R5ShnA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kiwi Maru" + }, + { + "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70YjykGkuuDep-hRg6YmACQXzLhTg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kiwi Maru" + }, + { + "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gbCm0Vxn9R5ShnA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kiwi Maru" + } + ] + }, + { + "name": "Klee One", + "fontFamily": "Klee One, cursive", + "slug": "klee-one", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kleeone/v7/LDIxapCLNRc6A8oT4p4BM-M.ttf" - }, - { - "family": "Knewave", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSIhSu3_g.ttf" - }, - { - "family": "KoHo", - "variants": [ - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf", - "300": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf", - "500": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf", - "600": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf", - "700": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf", - "200italic": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf", - "300italic": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf", - "regular": "http://fonts.gstatic.com/s/koho/v16/K2F-fZ5fmddNBikefJbSOos.ttf", - "italic": "http://fonts.gstatic.com/s/koho/v16/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf", - "500italic": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf", - "600italic": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf", - "700italic": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/koho/v16/K2F-fZ5fmddNNigUeA.ttf" - }, - { - "family": "Kodchasan", - "variants": [ - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v17", - "lastModified": "2023-05-02", - "files": { - "200": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf", - "300": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf", - "500": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf", - "600": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf", - "700": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf", - "200italic": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf", - "300italic": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf", - "regular": "http://fonts.gstatic.com/s/kodchasan/v17/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf", - "italic": "http://fonts.gstatic.com/s/kodchasan/v17/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf", - "500italic": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf", - "600italic": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf", - "700italic": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kodchasan/v17/1cXxaUPOAJv9sG4I-DJWjnGA.ttf" - }, - { - "family": "Koh Santepheap", - "variants": [ "100", "300", "regular", "700", "900" ], - "subsets": [ "khmer", "latin" ], - "version": "v9", - "lastModified": "2022-04-26", - "files": { - "100": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMfW3p6SJbwyGj2rBZyeOrTjNuFHVyTtjNJUWU.ttf", - "300": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtNP3y5mD9ASHz5.ttf", - "700": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtdOHy5mD9ASHz5.ttf", - "900": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtlOny5mD9ASHz5.ttf", - "regular": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMdW3p6SJbwyGj2rBZyeOrTjOPhF1ixsyNJ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMdW3p6SJbwyGj2rBZyeOrTjNPgHVw.ttf" - }, - { - "family": "Kolker Brush", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/kolkerbrush/v3/iJWDBXWRZjfKWdvmzwvvog3-7KJ6x8qNUQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kleeone/v7/LDIxapCLNRc6A8oT4q4AOeekWPrP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Klee One" + }, + { + "src": "http://fonts.gstatic.com/s/kleeone/v7/LDI2apCLNRc6A8oT4pbYF8Osc-bGkqIw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Klee One" + } + ] + }, + { + "name": "Knewave", + "fontFamily": "Knewave, system-ui", + "slug": "knewave", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Knewave" + } + ] + }, + { + "name": "KoHo", + "fontFamily": "KoHo, sans-serif", + "slug": "koho", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2F-fZ5fmddNBikefJbSOos.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "KoHo" + } + ] + }, + { + "name": "Kodchasan", + "fontFamily": "Kodchasan, sans-serif", + "slug": "kodchasan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + } + ] + }, + { + "name": "Koh Santepheap", + "fontFamily": "Koh Santepheap, system-ui", + "slug": "koh-santepheap", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMfW3p6SJbwyGj2rBZyeOrTjNuFHVyTtjNJUWU.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + }, + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtNP3y5mD9ASHz5.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + }, + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMdW3p6SJbwyGj2rBZyeOrTjOPhF1ixsyNJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + }, + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtdOHy5mD9ASHz5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + }, + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtlOny5mD9ASHz5.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + } + ] + }, + { + "name": "Kolker Brush", + "fontFamily": "Kolker Brush, cursive", + "slug": "kolker-brush", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kolkerbrush/v3/iJWDBXWRZjfKWdvmzwvvog3O7ah-.ttf" - }, - { - "family": "Konkhmer Sleokchher", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin", "latin-ext" ], - "version": "v2", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/konkhmersleokchher/v2/_Xmw-GE-rjmabA_M-aPOZOsCrUv825LFI3507E0d-W0.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/konkhmersleokchher/v2/_Xmw-GE-rjmabA_M-aPOZOsCrUv825LFE39-6A.ttf" - }, - { - "family": "Kosugi", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/kosugi/v15/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kosugi/v15/pxiFyp4_v8FCjlIINbD-.ttf" - }, - { - "family": "Kosugi Maru", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/kosugimaru/v14/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kosugimaru/v14/0nksC9PgP_wGh21A2KeqGhTrgP4.ttf" - }, - { - "family": "Kotta One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWq_HQfo.ttf" - }, - { - "family": "Koulen", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin" ], - "version": "v25", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/koulen/v25/AMOQz46as3KIBPeWgnA9kuYMUg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/koulen/v25/AMOQz46as3KIBPemg3o5.ttf" - }, - { - "family": "Kranky", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/kranky/v24/hESw6XVgJzlPsFnMpheEZo_H_w.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kranky/v24/hESw6XVgJzlPsFn8px2A.ttf" - }, - { - "family": "Kreon", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v37", - "lastModified": "2023-03-21", - "files": { - "300": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf", - "500": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf", - "600": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf", - "700": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf", - "regular": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtiWez8b.ttf" - }, - { - "family": "Kristi", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/kristi/v17/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kolkerbrush/v3/iJWDBXWRZjfKWdvmzwvvog3-7KJ6x8qNUQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kolker Brush" + } + ] + }, + { + "name": "Konkhmer Sleokchher", + "fontFamily": "Konkhmer Sleokchher, system-ui", + "slug": "konkhmer-sleokchher", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/konkhmersleokchher/v2/_Xmw-GE-rjmabA_M-aPOZOsCrUv825LFI3507E0d-W0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Konkhmer Sleokchher" + } + ] + }, + { + "name": "Kosugi", + "fontFamily": "Kosugi, sans-serif", + "slug": "kosugi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kosugi/v15/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kosugi" + } + ] + }, + { + "name": "Kosugi Maru", + "fontFamily": "Kosugi Maru, sans-serif", + "slug": "kosugi-maru", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kosugimaru/v14/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kosugi Maru" + } + ] + }, + { + "name": "Kotta One", + "fontFamily": "Kotta One, serif", + "slug": "kotta-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kotta One" + } + ] + }, + { + "name": "Koulen", + "fontFamily": "Koulen, system-ui", + "slug": "koulen", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/koulen/v25/AMOQz46as3KIBPeWgnA9kuYMUg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Koulen" + } + ] + }, + { + "name": "Kranky", + "fontFamily": "Kranky, system-ui", + "slug": "kranky", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kranky/v24/hESw6XVgJzlPsFnMpheEZo_H_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kranky" + } + ] + }, + { + "name": "Kreon", + "fontFamily": "Kreon, serif", + "slug": "kreon", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kreon" + }, + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kreon" + }, + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kreon" + }, + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kreon" + }, + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kreon" + } + ] + }, + { + "name": "Kristi", + "fontFamily": "Kristi, cursive", + "slug": "kristi", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kristi/v17/uK_y4ricdeU6zwdhCxcX.ttf" - }, - { - "family": "Krona One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUyMIWl.ttf" - }, - { - "family": "Krub", - "variants": [ - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v9", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf", - "300": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf", - "500": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf", - "600": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf", - "700": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf", - "200italic": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf", - "300italic": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf", - "regular": "http://fonts.gstatic.com/s/krub/v9/sZlLdRyC6CRYXkYQDLlTW6E.ttf", - "italic": "http://fonts.gstatic.com/s/krub/v9/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf", - "500italic": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf", - "600italic": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf", - "700italic": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/krub/v9/sZlLdRyC6CRYbkcaCA.ttf" - }, - { - "family": "Kufam", - "variants": [ - "regular", - "500", - "600", - "700", - "800", - "900", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3pKk7qQCJHvIwYg.ttf", - "600": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3SK47qQCJHvIwYg.ttf", - "700": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3ca47qQCJHvIwYg.ttf", - "800": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3Fq47qQCJHvIwYg.ttf", - "900": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3P647qQCJHvIwYg.ttf", - "regular": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqk7qQCJHvIwYg.ttf", - "italic": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurT6gqNPPcgYp0i.ttf", - "500italic": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurh6gqNPPcgYp0i.ttf", - "600italic": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuoN7QqNPPcgYp0i.ttf", - "700italic": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuo07QqNPPcgYp0i.ttf", - "800italic": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXupT7QqNPPcgYp0i.ttf", - "900italic": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXup67QqNPPcgYp0i.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqkLqAqN.ttf" - }, - { - "family": "Kulim Park", - "variants": [ - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjJYNwa5aZbUvGjU.ttf", - "300": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjPIOwa5aZbUvGjU.ttf", - "600": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjIYIwa5aZbUvGjU.ttf", - "700": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjOIJwa5aZbUvGjU.ttf", - "200italic": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUKa9QYZcqCjVVUA.ttf", - "300italic": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUTaxQYZcqCjVVUA.ttf", - "regular": "http://fonts.gstatic.com/s/kulimpark/v14/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf", - "italic": "http://fonts.gstatic.com/s/kulimpark/v14/fdN59secq3hflz1Uu3IwhFws4YR0abw2Aw.ttf", - "600italic": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUOapQYZcqCjVVUA.ttf", - "700italic": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUXatQYZcqCjVVUA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kulimpark/v14/fdN79secq3hflz1Uu3IwhF8s4Q.ttf" - }, - { - "family": "Kumar One", - "variants": [ "regular" ], - "subsets": [ "gujarati", "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/kumarone/v18/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kumarone/v18/bMr1mS-P958wYi6YaGe2NeSS.ttf" - }, - { - "family": "Kumar One Outline", - "variants": [ "regular" ], - "subsets": [ "gujarati", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9wDxTw8.ttf" - }, - { - "family": "Kumbh Sans", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "math" ], - "version": "v20", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZcA8bTuUkqaLg.ttf", - "200": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZYA8bTuUkqaLg.ttf", - "300": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQz5YA8bTuUkqaLg.ttf", - "500": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQo5YA8bTuUkqaLg.ttf", - "600": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQT5EA8bTuUkqaLg.ttf", - "700": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQdpEA8bTuUkqaLg.ttf", - "800": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZEA8bTuUkqaLg.ttf", - "900": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQOJEA8bTuUkqaLg.ttf", - "regular": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZYA8bTuUkqaLg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZYw8L7q.ttf" - }, - { - "family": "Kurale", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "devanagari", - "latin", - "latin-ext" - ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/kurale/v11/4iCs6KV9e9dXjho6eAT3v02QFg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/kurale/v11/4iCs6KV9e9dXjhoKeQ7z.ttf" - }, - { - "family": "La Belle Aurore", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/labelleaurore/v16/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kristi/v17/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kristi" + } + ] + }, + { + "name": "Krona One", + "fontFamily": "Krona One, sans-serif", + "slug": "krona-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Krona One" + } + ] + }, + { + "name": "Krub", + "fontFamily": "Krub, sans-serif", + "slug": "krub", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlLdRyC6CRYXkYQDLlTW6E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Krub" + } + ] + }, + { + "name": "Kufam", + "fontFamily": "Kufam, sans-serif", + "slug": "kufam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqk7qQCJHvIwYg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3pKk7qQCJHvIwYg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3SK47qQCJHvIwYg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3ca47qQCJHvIwYg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3Fq47qQCJHvIwYg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3P647qQCJHvIwYg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurT6gqNPPcgYp0i.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurh6gqNPPcgYp0i.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuoN7QqNPPcgYp0i.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuo07QqNPPcgYp0i.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXupT7QqNPPcgYp0i.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXup67QqNPPcgYp0i.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Kufam" + } + ] + }, + { + "name": "Kulim Park", + "fontFamily": "Kulim Park, sans-serif", + "slug": "kulim-park", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjJYNwa5aZbUvGjU.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUKa9QYZcqCjVVUA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjPIOwa5aZbUvGjU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUTaxQYZcqCjVVUA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN59secq3hflz1Uu3IwhFws4YR0abw2Aw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjIYIwa5aZbUvGjU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUOapQYZcqCjVVUA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjOIJwa5aZbUvGjU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUXatQYZcqCjVVUA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + } + ] + }, + { + "name": "Kumar One", + "fontFamily": "Kumar One, system-ui", + "slug": "kumar-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kumarone/v18/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kumar One" + } + ] + }, + { + "name": "Kumar One Outline", + "fontFamily": "Kumar One Outline, system-ui", + "slug": "kumar-one-outline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kumar One Outline" + } + ] + }, + { + "name": "Kumbh Sans", + "fontFamily": "Kumbh Sans, sans-serif", + "slug": "kumbh-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZcA8bTuUkqaLg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZYA8bTuUkqaLg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQz5YA8bTuUkqaLg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZYA8bTuUkqaLg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQo5YA8bTuUkqaLg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQT5EA8bTuUkqaLg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQdpEA8bTuUkqaLg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZEA8bTuUkqaLg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQOJEA8bTuUkqaLg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + } + ] + }, + { + "name": "Kurale", + "fontFamily": "Kurale, serif", + "slug": "kurale", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kurale/v11/4iCs6KV9e9dXjho6eAT3v02QFg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kurale" + } + ] + }, + { + "name": "La Belle Aurore", + "fontFamily": "La Belle Aurore, cursive", + "slug": "la-belle-aurore", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/labelleaurore/v16/RrQIbot8-mNYKnGNDkWlocovHeI4Gu2B.ttf" - }, - { - "family": "Labrada", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2023-03-09", - "files": { - "100": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSgM4QPdUej17.ttf", - "200": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTSwM4QPdUej17.ttf", - "300": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9UNSwM4QPdUej17.ttf", - "500": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VhSwM4QPdUej17.ttf", - "600": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9WNTAM4QPdUej17.ttf", - "700": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9W0TAM4QPdUej17.ttf", - "800": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTTAM4QPdUej17.ttf", - "900": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9X6TAM4QPdUej17.ttf", - "regular": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSwM4QPdUej17.ttf", - "100italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt6SvN2fy17-dE.ttf", - "200italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt7SvN2fy17-dE.ttf", - "300italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCLV7SvN2fy17-dE.ttf", - "italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt7SvN2fy17-dE.ttf", - "500italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCNl7SvN2fy17-dE.ttf", - "600italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCDV8SvN2fy17-dE.ttf", - "700italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCAx8SvN2fy17-dE.ttf", - "800italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt8SvN2fy17-dE.ttf", - "900italic": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCEJ8SvN2fy17-dE.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSzM5SvM.ttf" - }, - { - "family": "Lacquer", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/lacquer/v15/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lacquer/v15/EYqzma1QwqpG4_BBN76KWg.ttf" - }, - { - "family": "Laila", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf", - "500": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf", - "600": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf", - "700": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf", - "regular": "http://fonts.gstatic.com/s/laila/v13/LYjMdG_8nE8jDIRdiidIrEIu.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/laila/v13/LYjMdG_8nE8jDLRcgCM.ttf" - }, - { - "family": "Lakki Reddy", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/lakkireddy/v19/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/labelleaurore/v16/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "La Belle Aurore" + } + ] + }, + { + "name": "Labrada", + "fontFamily": "Labrada, serif", + "slug": "labrada", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSgM4QPdUej17.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTSwM4QPdUej17.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9UNSwM4QPdUej17.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSwM4QPdUej17.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VhSwM4QPdUej17.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9WNTAM4QPdUej17.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9W0TAM4QPdUej17.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTTAM4QPdUej17.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9X6TAM4QPdUej17.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt6SvN2fy17-dE.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt7SvN2fy17-dE.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCLV7SvN2fy17-dE.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt7SvN2fy17-dE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCNl7SvN2fy17-dE.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCDV8SvN2fy17-dE.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCAx8SvN2fy17-dE.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt8SvN2fy17-dE.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCEJ8SvN2fy17-dE.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Labrada" + } + ] + }, + { + "name": "Lacquer", + "fontFamily": "Lacquer, system-ui", + "slug": "lacquer", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lacquer/v15/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lacquer" + } + ] + }, + { + "name": "Laila", + "fontFamily": "Laila, sans-serif", + "slug": "laila", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Laila" + }, + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjMdG_8nE8jDIRdiidIrEIu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Laila" + }, + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Laila" + }, + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Laila" + }, + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Laila" + } + ] + }, + { + "name": "Lakki Reddy", + "fontFamily": "Lakki Reddy, cursive", + "slug": "lakki-reddy", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lakkireddy/v19/S6u5w49MUSzD9jlCPmvLZTfpzd0.ttf" - }, - { - "family": "Lalezar", - "variants": [ "regular" ], - "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/lalezar/v14/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lalezar/v14/zrfl0HLVx-HwTP82YaH4Jg.ttf" - }, - { - "family": "Lancelot", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/lancelot/v23/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lancelot/v23/J7acnppxBGtQEulG4KY5zps.ttf" - }, - { - "family": "Langar", - "variants": [ "regular" ], - "subsets": [ "gurmukhi", "latin", "latin-ext" ], - "version": "v27", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/langar/v27/kJEyBukW7AIlgjGVrTVZ99sqrQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/langar/v27/kJEyBukW7AIlgjGlrD9d.ttf" - }, - { - "family": "Lateef", - "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v27", - "lastModified": "2022-11-09", - "files": { - "200": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0bjygbqTb9nQ-RA.ttf", - "300": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0Cj-gbqTb9nQ-RA.ttf", - "500": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0Uj6gbqTb9nQ-RA.ttf", - "600": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0fjmgbqTb9nQ-RA.ttf", - "700": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0GjigbqTb9nQ-RA.ttf", - "800": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0BjugbqTb9nQ-RA.ttf", - "regular": "http://fonts.gstatic.com/s/lateef/v27/hESw6XVnNCxEvkbMpheEZo_H_w.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lateef/v27/hESw6XVnNCxEvkb8px2A.ttf" - }, - { - "family": "Lato", - "variants": [ - "100", - "100italic", - "300", - "300italic", - "regular", - "italic", - "700", - "700italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf", - "300": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf", - "700": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf", - "900": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf", - "100italic": "http://fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf", - "300italic": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf", - "regular": "http://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf", - "italic": "http://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf", - "700italic": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf", - "900italic": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxgwWw.ttf" - }, - { - "family": "Lavishly Yours", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/lavishlyyours/v2/jizDREVIvGwH5OjiZmX9r5z_WxUY0TY7ikbI.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lakkireddy/v19/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lakki Reddy" + } + ] + }, + { + "name": "Lalezar", + "fontFamily": "Lalezar, system-ui", + "slug": "lalezar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lalezar/v14/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lalezar" + } + ] + }, + { + "name": "Lancelot", + "fontFamily": "Lancelot, system-ui", + "slug": "lancelot", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lancelot/v23/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lancelot" + } + ] + }, + { + "name": "Langar", + "fontFamily": "Langar, system-ui", + "slug": "langar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/langar/v27/kJEyBukW7AIlgjGVrTVZ99sqrQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Langar" + } + ] + }, + { + "name": "Lateef", + "fontFamily": "Lateef, serif", + "slug": "lateef", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0bjygbqTb9nQ-RA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0Cj-gbqTb9nQ-RA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v27/hESw6XVnNCxEvkbMpheEZo_H_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0Uj6gbqTb9nQ-RA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0fjmgbqTb9nQ-RA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0GjigbqTb9nQ-RA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0BjugbqTb9nQ-RA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lateef" + } + ] + }, + { + "name": "Lato", + "fontFamily": "Lato, sans-serif", + "slug": "lato", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Lato" + } + ] + }, + { + "name": "Lavishly Yours", + "fontFamily": "Lavishly Yours, cursive", + "slug": "lavishly-yours", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lavishlyyours/v2/jizDREVIvGwH5OjiZmX9r5z_WyUZ2zI.ttf" - }, - { - "family": "League Gothic", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v6", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/leaguegothic/v6/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_-amidQ6Q9hn.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/leaguegothic/v6/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_9ang9A.ttf" - }, - { - "family": "League Script", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/leaguescript/v24/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lavishlyyours/v2/jizDREVIvGwH5OjiZmX9r5z_WxUY0TY7ikbI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lavishly Yours" + } + ] + }, + { + "name": "League Gothic", + "fontFamily": "League Gothic, sans-serif", + "slug": "league-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/leaguegothic/v6/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_-amidQ6Q9hn.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "League Gothic" + } + ] + }, + { + "name": "League Script", + "fontFamily": "League Script, cursive", + "slug": "league-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/leaguescript/v24/CSR54zpSlumSWj9CGVsoBZdeWNJevA.ttf" - }, - { - "family": "League Spartan", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v11", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpBMdcFguczA.ttf", - "200": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpBMdcFguczA.ttf", - "300": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpBMdcFguczA.ttf", - "500": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpBMdcFguczA.ttf", - "600": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpBMdcFguczA.ttf", - "700": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpBMdcFguczA.ttf", - "800": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpBMdcFguczA.ttf", - "900": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpBMdcFguczA.ttf", - "regular": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpBMdcFguczA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTZBc1Y.ttf" - }, - { - "family": "Leckerli One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/leckerlione/v16/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/leaguescript/v24/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "League Script" + } + ] + }, + { + "name": "League Spartan", + "fontFamily": "League Spartan, sans-serif", + "slug": "league-spartan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpBMdcFguczA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpBMdcFguczA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpBMdcFguczA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpBMdcFguczA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpBMdcFguczA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpBMdcFguczA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpBMdcFguczA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpBMdcFguczA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpBMdcFguczA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "League Spartan" + } + ] + }, + { + "name": "Leckerli One", + "fontFamily": "Leckerli One, cursive", + "slug": "leckerli-one", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/leckerlione/v16/V8mCoQH8VCsNttEnxnGQ-1idLJZY.ttf" - }, - { - "family": "Ledger", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sBmsr0.ttf" - }, - { - "family": "Lekton", - "variants": [ "regular", "italic", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/lekton/v17/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf", - "regular": "http://fonts.gstatic.com/s/lekton/v17/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf", - "italic": "http://fonts.gstatic.com/s/lekton/v17/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lekton/v17/SZc43FDmLaWmWpBuXh3s.ttf" - }, - { - "family": "Lemon", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-04-04", - "files": { - "regular": "http://fonts.gstatic.com/s/lemon/v15/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lemon/v15/HI_EiYEVKqRMq3jAQ5E.ttf" - }, - { - "family": "Lemonada", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], - "version": "v26", - "lastModified": "2023-03-21", - "files": { - "300": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2mfWc3Z2pTg.ttf", - "500": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2mfWc3Z2pTg.ttf", - "600": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2mfWc3Z2pTg.ttf", - "700": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2mfWc3Z2pTg.ttf", - "regular": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2mfWc3Z2pTg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeutGmP-Y.ttf" - }, - { - "family": "Lexend", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsX_LBte6KuGEo.ttf", - "200": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sW_LBte6KuGEo.ttf", - "300": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", - "500": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", - "600": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", - "700": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LBte6KuGEo.ttf", - "800": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf", - "900": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC5IR_LBte6KuGEo.ttf", - "regular": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LBte6KuGEo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsWzLFnfw.ttf" - }, - { - "family": "Lexend Deca", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v21", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48MxArBPCqLNflg.ttf", - "200": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cM1ArBPCqLNflg.ttf", - "300": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4rs1ArBPCqLNflg.ttf", - "500": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1ArBPCqLNflg.ttf", - "600": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4LspArBPCqLNflg.ttf", - "700": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4F8pArBPCqLNflg.ttf", - "800": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cMpArBPCqLNflg.ttf", - "900": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4WcpArBPCqLNflg.ttf", - "regular": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1ArBPCqLNflg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1wrRnG.ttf" - }, - { - "family": "Lexend Exa", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v30", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", - "200": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", - "300": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", - "500": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", - "600": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", - "700": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", - "800": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", - "900": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", - "regular": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TpbGFps.ttf" - }, - { - "family": "Lexend Giga", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v24", - "lastModified": "2023-01-06", - "files": { - "100": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LmE68oo6eepYQ.ttf", - "200": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWLiE68oo6eepYQ.ttf", - "300": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRChriE68oo6eepYQ.ttf", - "500": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC6riE68oo6eepYQ.ttf", - "600": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCBr-E68oo6eepYQ.ttf", - "700": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCP7-E68oo6eepYQ.ttf", - "800": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWL-E68oo6eepYQ.ttf", - "900": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCcb-E68oo6eepYQ.ttf", - "regular": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LiE68oo6eepYQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2Li06sAs.ttf" - }, - { - "family": "Lexend Mega", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v24", - "lastModified": "2023-01-06", - "files": { - "100": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fivveyiq9EqQw.ttf", - "200": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcfmvveyiq9EqQw.ttf", - "300": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLr_mvveyiq9EqQw.ttf", - "500": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLw_mvveyiq9EqQw.ttf", - "600": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLL_6vveyiq9EqQw.ttf", - "700": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLFv6vveyiq9EqQw.ttf", - "800": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vveyiq9EqQw.ttf", - "900": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLWP6vveyiq9EqQw.ttf", - "regular": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmvveyiq9EqQw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmfvOam.ttf" - }, - { - "family": "Lexend Peta", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v27", - "lastModified": "2023-03-09", - "files": { - "100": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SFyW1YuRTsnfw.ttf", - "200": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSByW1YuRTsnfw.ttf", - "300": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRtyByW1YuRTsnfw.ttf", - "500": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR2yByW1YuRTsnfw.ttf", - "600": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRNydyW1YuRTsnfw.ttf", - "700": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRDidyW1YuRTsnfw.ttf", - "800": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSdyW1YuRTsnfw.ttf", - "900": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRQCdyW1YuRTsnfw.ttf", - "regular": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SByW1YuRTsnfw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SBCWlwq.ttf" - }, - { - "family": "Lexend Tera", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v27", - "lastModified": "2023-03-09", - "files": { - "100": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zITdpz0fYxcrQ.ttf", - "200": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzMTdpz0fYxcrQ.ttf", - "300": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMuTMTdpz0fYxcrQ.ttf", - "500": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM1TMTdpz0fYxcrQ.ttf", - "600": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMOTQTdpz0fYxcrQ.ttf", - "700": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMADQTdpz0fYxcrQ.ttf", - "800": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzQTdpz0fYxcrQ.ttf", - "900": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMTjQTdpz0fYxcrQ.ttf", - "regular": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMTdpz0fYxcrQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMjd5bw.ttf" - }, - { - "family": "Lexend Zetta", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v28", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bH0z5jbs8qbts.ttf", - "200": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bG0z5jbs8qbts.ttf", - "300": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0z5jbs8qbts.ttf", - "500": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy-TG0z5jbs8qbts.ttf", - "600": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCywjB0z5jbs8qbts.ttf", - "700": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCyzHB0z5jbs8qbts.ttf", - "800": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf", - "900": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy3_B0z5jbs8qbts.ttf", - "regular": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG0z5jbs8qbts.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG4z9pag.ttf" - }, - { - "family": "Libre Barcode 128", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v26", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/librebarcode128/v26/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/librebarcode128/v26/cIfnMbdUsUoiW3O_hVviCwVjuLtXeK_B9Ac.ttf" - }, - { - "family": "Libre Barcode 128 Text", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v26", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/librebarcode128text/v26/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/librebarcode128text/v26/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5QVzS7A.ttf" - }, - { - "family": "Libre Barcode 39", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/librebarcode39/v19/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/librebarcode39/v19/-nFnOHM08vwC6h8Li1eQnP_AHzI2G_Zx1w.ttf" - }, - { - "family": "Libre Barcode 39 Extended", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v25", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/librebarcode39extended/v25/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/librebarcode39extended/v25/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgTNVIPQ.ttf" - }, - { - "family": "Libre Barcode 39 Extended Text", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v25", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/librebarcode39extendedtext/v25/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/librebarcode39extendedtext/v25/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP6Mfbgm.ttf" - }, - { - "family": "Libre Barcode 39 Text", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v26", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/librebarcode39text/v26/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/librebarcode39text/v26/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-0H1B5P.ttf" - }, - { - "family": "Libre Barcode EAN13 Text", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/librebarcodeean13text/v19/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/librebarcodeean13text/v19/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96_AWsg.ttf" - }, - { - "family": "Libre Baskerville", - "variants": [ "regular", "italic", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf", - "regular": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf", - "italic": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0qNfaxY.ttf" - }, - { - "family": "Libre Bodoni", - "variants": [ - "regular", - "500", - "600", - "700", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2023-03-21", - "files": { - "500": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6L9fwWzZcOb3U3s.ttf", - "600": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6FNYwWzZcOb3U3s.ttf", - "700": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6GpYwWzZcOb3U3s.ttf", - "regular": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6I1fwWzZcOb3U3s.ttf", - "italic": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcKS_TdMTyQ3syLg.ttf", - "500italic": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcGy_TdMTyQ3syLg.ttf", - "600italic": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUc9yjTdMTyQ3syLg.ttf", - "700italic": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUczijTdMTyQ3syLg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6I1f8W3TdA.ttf" - }, - { - "family": "Libre Caslon Display", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/librecaslondisplay/v14/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/librecaslondisplay/v14/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr1lQfxw.ttf" - }, - { - "family": "Libre Caslon Text", - "variants": [ "regular", "italic", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v5", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf", - "regular": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf", - "italic": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT878IGsGw1aF1JU10PUbTvNNaDMfq-1-c.ttf" - }, - { - "family": "Libre Franklin", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsSUB9rIb-JH1g.ttf", - "200": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsWUB9rIb-JH1g.ttf", - "300": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWUB9rIb-JH1g.ttf", - "500": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWUB9rIb-JH1g.ttf", - "600": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKUB9rIb-JH1g.ttf", - "700": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKUB9rIb-JH1g.ttf", - "800": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKUB9rIb-JH1g.ttf", - "900": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KUB9rIb-JH1g.ttf", - "regular": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWUB9rIb-JH1g.ttf", - "100italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RdDMTedX1sGE.ttf", - "200italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8RNDMTedX1sGE.ttf", - "300italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oYiRNDMTedX1sGE.ttf", - "italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RNDMTedX1sGE.ttf", - "500italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZORNDMTedX1sGE.ttf", - "600italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oaiQ9DMTedX1sGE.ttf", - "700italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oabQ9DMTedX1sGE.ttf", - "800italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8Q9DMTedX1sGE.ttf", - "900italic": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05obVQ9DMTedX1sGE.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWkBtDM.ttf" - }, - { - "family": "Licorice", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/licorice/v3/t5tjIR8TMomTCAyjNk23hqLgzCHu.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/leckerlione/v16/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Leckerli One" + } + ] + }, + { + "name": "Ledger", + "fontFamily": "Ledger, serif", + "slug": "ledger", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ledger" + } + ] + }, + { + "name": "Lekton", + "fontFamily": "Lekton, sans-serif", + "slug": "lekton", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lekton/v17/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lekton" + }, + { + "src": "http://fonts.gstatic.com/s/lekton/v17/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Lekton" + }, + { + "src": "http://fonts.gstatic.com/s/lekton/v17/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lekton" + } + ] + }, + { + "name": "Lemon", + "fontFamily": "Lemon, system-ui", + "slug": "lemon", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lemon/v15/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lemon" + } + ] + }, + { + "name": "Lemonada", + "fontFamily": "Lemonada, system-ui", + "slug": "lemonada", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2mfWc3Z2pTg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lemonada" + }, + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2mfWc3Z2pTg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lemonada" + }, + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2mfWc3Z2pTg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lemonada" + }, + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2mfWc3Z2pTg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lemonada" + }, + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2mfWc3Z2pTg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lemonada" + } + ] + }, + { + "name": "Lexend", + "fontFamily": "Lexend, sans-serif", + "slug": "lexend", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsX_LBte6KuGEo.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sW_LBte6KuGEo.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LBte6KuGEo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LBte6KuGEo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC5IR_LBte6KuGEo.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend" + } + ] + }, + { + "name": "Lexend Deca", + "fontFamily": "Lexend Deca, sans-serif", + "slug": "lexend-deca", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48MxArBPCqLNflg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cM1ArBPCqLNflg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4rs1ArBPCqLNflg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1ArBPCqLNflg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1ArBPCqLNflg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4LspArBPCqLNflg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4F8pArBPCqLNflg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cMpArBPCqLNflg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4WcpArBPCqLNflg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + } + ] + }, + { + "name": "Lexend Exa", + "fontFamily": "Lexend Exa, sans-serif", + "slug": "lexend-exa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + } + ] + }, + { + "name": "Lexend Giga", + "fontFamily": "Lexend Giga, sans-serif", + "slug": "lexend-giga", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LmE68oo6eepYQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWLiE68oo6eepYQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRChriE68oo6eepYQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LiE68oo6eepYQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC6riE68oo6eepYQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCBr-E68oo6eepYQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCP7-E68oo6eepYQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWL-E68oo6eepYQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCcb-E68oo6eepYQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + } + ] + }, + { + "name": "Lexend Mega", + "fontFamily": "Lexend Mega, sans-serif", + "slug": "lexend-mega", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fivveyiq9EqQw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcfmvveyiq9EqQw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLr_mvveyiq9EqQw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmvveyiq9EqQw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLw_mvveyiq9EqQw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLL_6vveyiq9EqQw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLFv6vveyiq9EqQw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vveyiq9EqQw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLWP6vveyiq9EqQw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + } + ] + }, + { + "name": "Lexend Peta", + "fontFamily": "Lexend Peta, sans-serif", + "slug": "lexend-peta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SFyW1YuRTsnfw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSByW1YuRTsnfw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRtyByW1YuRTsnfw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SByW1YuRTsnfw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR2yByW1YuRTsnfw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRNydyW1YuRTsnfw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRDidyW1YuRTsnfw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSdyW1YuRTsnfw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRQCdyW1YuRTsnfw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + } + ] + }, + { + "name": "Lexend Tera", + "fontFamily": "Lexend Tera, sans-serif", + "slug": "lexend-tera", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zITdpz0fYxcrQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzMTdpz0fYxcrQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMuTMTdpz0fYxcrQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMTdpz0fYxcrQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM1TMTdpz0fYxcrQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMOTQTdpz0fYxcrQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMADQTdpz0fYxcrQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzQTdpz0fYxcrQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMTjQTdpz0fYxcrQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + } + ] + }, + { + "name": "Lexend Zetta", + "fontFamily": "Lexend Zetta, sans-serif", + "slug": "lexend-zetta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bH0z5jbs8qbts.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bG0z5jbs8qbts.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0z5jbs8qbts.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG0z5jbs8qbts.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy-TG0z5jbs8qbts.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCywjB0z5jbs8qbts.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCyzHB0z5jbs8qbts.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy3_B0z5jbs8qbts.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + } + ] + }, + { + "name": "Libre Barcode 128", + "fontFamily": "Libre Barcode 128, system-ui", + "slug": "libre-barcode-128", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode128/v26/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 128" + } + ] + }, + { + "name": "Libre Barcode 128 Text", + "fontFamily": "Libre Barcode 128 Text, system-ui", + "slug": "libre-barcode-128-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode128text/v26/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 128 Text" + } + ] + }, + { + "name": "Libre Barcode 39", + "fontFamily": "Libre Barcode 39, system-ui", + "slug": "libre-barcode-39", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode39/v19/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 39" + } + ] + }, + { + "name": "Libre Barcode 39 Extended", + "fontFamily": "Libre Barcode 39 Extended, system-ui", + "slug": "libre-barcode-39-extended", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode39extended/v25/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 39 Extended" + } + ] + }, + { + "name": "Libre Barcode 39 Extended Text", + "fontFamily": "Libre Barcode 39 Extended Text, system-ui", + "slug": "libre-barcode-39-extended-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode39extendedtext/v25/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 39 Extended Text" + } + ] + }, + { + "name": "Libre Barcode 39 Text", + "fontFamily": "Libre Barcode 39 Text, system-ui", + "slug": "libre-barcode-39-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode39text/v26/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 39 Text" + } + ] + }, + { + "name": "Libre Barcode EAN13 Text", + "fontFamily": "Libre Barcode EAN13 Text, system-ui", + "slug": "libre-barcode-ean13-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcodeean13text/v19/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode EAN13 Text" + } + ] + }, + { + "name": "Libre Baskerville", + "fontFamily": "Libre Baskerville, serif", + "slug": "libre-baskerville", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Baskerville" + }, + { + "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Libre Baskerville" + }, + { + "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Libre Baskerville" + } + ] + }, + { + "name": "Libre Bodoni", + "fontFamily": "Libre Bodoni, serif", + "slug": "libre-bodoni", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6I1fwWzZcOb3U3s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6L9fwWzZcOb3U3s.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6FNYwWzZcOb3U3s.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6GpYwWzZcOb3U3s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcKS_TdMTyQ3syLg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcGy_TdMTyQ3syLg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUc9yjTdMTyQ3syLg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUczijTdMTyQ3syLg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Libre Bodoni" + } + ] + }, + { + "name": "Libre Caslon Display", + "fontFamily": "Libre Caslon Display, serif", + "slug": "libre-caslon-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librecaslondisplay/v14/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Caslon Display" + } + ] + }, + { + "name": "Libre Caslon Text", + "fontFamily": "Libre Caslon Text, serif", + "slug": "libre-caslon-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Caslon Text" + }, + { + "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Libre Caslon Text" + }, + { + "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Libre Caslon Text" + } + ] + }, + { + "name": "Libre Franklin", + "fontFamily": "Libre Franklin, sans-serif", + "slug": "libre-franklin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsSUB9rIb-JH1g.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsWUB9rIb-JH1g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWUB9rIb-JH1g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWUB9rIb-JH1g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWUB9rIb-JH1g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKUB9rIb-JH1g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKUB9rIb-JH1g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKUB9rIb-JH1g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KUB9rIb-JH1g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RdDMTedX1sGE.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8RNDMTedX1sGE.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oYiRNDMTedX1sGE.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RNDMTedX1sGE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZORNDMTedX1sGE.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oaiQ9DMTedX1sGE.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oabQ9DMTedX1sGE.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8Q9DMTedX1sGE.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05obVQ9DMTedX1sGE.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + } + ] + }, + { + "name": "Licorice", + "fontFamily": "Licorice, cursive", + "slug": "licorice", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/licorice/v3/t5tjIR8TMomTCAyjNn22jKY.ttf" - }, - { - "family": "Life Savers", - "variants": [ "regular", "700", "800" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf", - "800": "http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf", - "regular": "http://fonts.gstatic.com/s/lifesavers/v18/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lifesavers/v18/ZXuie1UftKKabUQMgxAal8lqHA4.ttf" - }, - { - "family": "Lilita One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/lilitaone/v13/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lilitaone/v13/i7dPIFZ9Zz-WBtRtedDbYEd8QA.ttf" - }, - { - "family": "Lily Script One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLSIg86n.ttf" - }, - { - "family": "Limelight", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/limelight/v17/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/limelight/v17/XLYkIZL7aopJVbZJHDuoPOlC.ttf" - }, - { - "family": "Linden Hill", - "variants": [ "regular", "italic" ], - "subsets": [ "latin" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/lindenhill/v22/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf", - "italic": "http://fonts.gstatic.com/s/lindenhill/v22/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lindenhill/v22/-F61fjxoKSg9Yc3hZgO8yjFJ5ig.ttf" - }, - { - "family": "Literata", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v34", - "lastModified": "2023-03-21", - "files": { - "200": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG_F_bcTWCWp8g.ttf", - "300": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbE-_F_bcTWCWp8g.ttf", - "500": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbCO_F_bcTWCWp8g.ttf", - "600": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbM-4F_bcTWCWp8g.ttf", - "700": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbPa4F_bcTWCWp8g.ttf", - "800": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG4F_bcTWCWp8g.ttf", - "900": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbLi4F_bcTWCWp8g.ttf", - "regular": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_F_bcTWCWp8g.ttf", - "200italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7XWSUKTt8iVow.ttf", - "300italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8obXWSUKTt8iVow.ttf", - "italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8_7XWSUKTt8iVow.ttf", - "500italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8zbXWSUKTt8iVow.ttf", - "600italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8IbLWSUKTt8iVow.ttf", - "700italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8GLLWSUKTt8iVow.ttf", - "800italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7LWSUKTt8iVow.ttf", - "900italic": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8VrLWSUKTt8iVow.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_J_fWSQ.ttf" - }, - { - "family": "Liu Jian Mao Cao", - "variants": [ "regular" ], - "subsets": [ "chinese-simplified", "latin" ], - "version": "v15", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/liujianmaocao/v15/~ChIKEExpdSBKaWFuIE1hbyBDYW8gACoECAEYAQ==.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/licorice/v3/t5tjIR8TMomTCAyjNk23hqLgzCHu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Licorice" + } + ] + }, + { + "name": "Life Savers", + "fontFamily": "Life Savers, system-ui", + "slug": "life-savers", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Life Savers" + }, + { + "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Life Savers" + }, + { + "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Life Savers" + } + ] + }, + { + "name": "Lilita One", + "fontFamily": "Lilita One, system-ui", + "slug": "lilita-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lilitaone/v13/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lilita One" + } + ] + }, + { + "name": "Lily Script One", + "fontFamily": "Lily Script One, system-ui", + "slug": "lily-script-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lily Script One" + } + ] + }, + { + "name": "Limelight", + "fontFamily": "Limelight, system-ui", + "slug": "limelight", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/limelight/v17/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Limelight" + } + ] + }, + { + "name": "Linden Hill", + "fontFamily": "Linden Hill, serif", + "slug": "linden-hill", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lindenhill/v22/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Linden Hill" + }, + { + "src": "http://fonts.gstatic.com/s/lindenhill/v22/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Linden Hill" + } + ] + }, + { + "name": "Literata", + "fontFamily": "Literata, serif", + "slug": "literata", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG_F_bcTWCWp8g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbE-_F_bcTWCWp8g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_F_bcTWCWp8g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbCO_F_bcTWCWp8g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbM-4F_bcTWCWp8g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbPa4F_bcTWCWp8g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG4F_bcTWCWp8g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbLi4F_bcTWCWp8g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7XWSUKTt8iVow.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8obXWSUKTt8iVow.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8_7XWSUKTt8iVow.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8zbXWSUKTt8iVow.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8IbLWSUKTt8iVow.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8GLLWSUKTt8iVow.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7LWSUKTt8iVow.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8VrLWSUKTt8iVow.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Literata" + } + ] + }, + { + "name": "Liu Jian Mao Cao", + "fontFamily": "Liu Jian Mao Cao, cursive", + "slug": "liu-jian-mao-cao", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/liujianmaocao/v15/~ChIKEExpdSBKaWFuIE1hbyBDYW8QASAA.ttf" - }, - { - "family": "Livvic", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf", - "200": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf", - "300": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf", - "500": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf", - "600": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf", - "700": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf", - "900": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf", - "100italic": "http://fonts.gstatic.com/s/livvic/v14/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf", - "200italic": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf", - "300italic": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf", - "regular": "http://fonts.gstatic.com/s/livvic/v14/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf", - "italic": "http://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf", - "500italic": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf", - "600italic": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf", - "700italic": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf", - "900italic": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/livvic/v14/rnCp-x1S2hzjrlfXbuM-.ttf" - }, - { - "family": "Lobster", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v28", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/lobster/v28/neILzCirqoswsqX9_oWsMqEzSJQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lobster/v28/neILzCirqoswsqX9zoSmNg.ttf" - }, - { - "family": "Lobster Two", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/lobstertwo/v18/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf", - "regular": "http://fonts.gstatic.com/s/lobstertwo/v18/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf", - "italic": "http://fonts.gstatic.com/s/lobstertwo/v18/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf", - "700italic": "http://fonts.gstatic.com/s/lobstertwo/v18/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lobstertwo/v18/BngMUXZGTXPUvIoyV6yN5-fL5qA.ttf" - }, - { - "family": "Londrina Outline", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v23", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/londrinaoutline/v23/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/londrinaoutline/v23/C8c44dM8vmb14dfsZxhetg3pDH-STus7qQ.ttf" - }, - { - "family": "Londrina Shadow", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/londrinashadow/v22/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/londrinashadow/v22/oPWX_kB4kOQoWNJmjxLV5JuoCUlnR1yW.ttf" - }, - { - "family": "Londrina Sketch", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/londrinasketch/v21/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/londrinasketch/v21/c4m41npxGMTnomOHtRU68eIJn8qvWGP9.ttf" - }, - { - "family": "Londrina Solid", - "variants": [ "100", "300", "regular", "900" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/londrinasolid/v15/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf", - "300": "http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf", - "900": "http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf", - "regular": "http://fonts.gstatic.com/s/londrinasolid/v15/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/londrinasolid/v15/flUhRq6sw40kQEJxWNgkLuudGfNYKBY.ttf" - }, - { - "family": "Long Cang", - "variants": [ "regular" ], - "subsets": [ "chinese-simplified", "latin" ], - "version": "v17", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/longcang/v17/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/liujianmaocao/v15/~ChIKEExpdSBKaWFuIE1hbyBDYW8gACoECAEYAQ==.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Liu Jian Mao Cao" + } + ] + }, + { + "name": "Livvic", + "fontFamily": "Livvic, sans-serif", + "slug": "livvic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Livvic" + } + ] + }, + { + "name": "Lobster", + "fontFamily": "Lobster, system-ui", + "slug": "lobster", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lobster/v28/neILzCirqoswsqX9_oWsMqEzSJQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lobster" + } + ] + }, + { + "name": "Lobster Two", + "fontFamily": "Lobster Two, system-ui", + "slug": "lobster-two", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lobster Two" + }, + { + "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Lobster Two" + }, + { + "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lobster Two" + }, + { + "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Lobster Two" + } + ] + }, + { + "name": "Londrina Outline", + "fontFamily": "Londrina Outline, system-ui", + "slug": "londrina-outline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/londrinaoutline/v23/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Londrina Outline" + } + ] + }, + { + "name": "Londrina Shadow", + "fontFamily": "Londrina Shadow, system-ui", + "slug": "londrina-shadow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/londrinashadow/v22/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Londrina Shadow" + } + ] + }, + { + "name": "Londrina Sketch", + "fontFamily": "Londrina Sketch, system-ui", + "slug": "londrina-sketch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/londrinasketch/v21/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Londrina Sketch" + } + ] + }, + { + "name": "Londrina Solid", + "fontFamily": "Londrina Solid, system-ui", + "slug": "londrina-solid", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Londrina Solid" + }, + { + "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Londrina Solid" + }, + { + "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Londrina Solid" + }, + { + "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Londrina Solid" + } + ] + }, + { + "name": "Long Cang", + "fontFamily": "Long Cang, cursive", + "slug": "long-cang", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/longcang/v17/LYjAdGP8kkgoTec8zkRQrHov.ttf" - }, - { - "family": "Lora", - "variants": [ - "regular", - "500", - "600", - "700", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v32", - "lastModified": "2023-02-22", - "files": { - "500": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJGmKxemMeZ.ttf", - "600": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJGmKxemMeZ.ttf", - "700": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJGmKxemMeZ.ttf", - "regular": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuyJGmKxemMeZ.ttf", - "italic": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqh8ndeZzZ0.ttf", - "500italic": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqh8ndeZzZ0.ttf", - "600italic": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqh8ndeZzZ0.ttf", - "700italic": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqh8ndeZzZ0.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuxJHkqg.ttf" - }, - { - "family": "Love Light", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/lovelight/v3/t5tlIR0TNJyZWimpNAXDjKbCyTHuspo.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/longcang/v17/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Long Cang" + } + ] + }, + { + "name": "Lora", + "fontFamily": "Lora, serif", + "slug": "lora", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuyJGmKxemMeZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJGmKxemMeZ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJGmKxemMeZ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJGmKxemMeZ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqh8ndeZzZ0.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqh8ndeZzZ0.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqh8ndeZzZ0.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqh8ndeZzZ0.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Lora" + } + ] + }, + { + "name": "Love Light", + "fontFamily": "Love Light, cursive", + "slug": "love-light", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lovelight/v3/t5tlIR0TNJyZWimpNAXDvKfIzQ.ttf" - }, - { - "family": "Love Ya Like A Sister", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/loveyalikeasister/v16/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/loveyalikeasister/v16/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-BeL83xY.ttf" - }, - { - "family": "Loved by the King", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/lovedbytheking/v17/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lovelight/v3/t5tlIR0TNJyZWimpNAXDjKbCyTHuspo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Love Light" + } + ] + }, + { + "name": "Love Ya Like A Sister", + "fontFamily": "Love Ya Like A Sister, system-ui", + "slug": "love-ya-like-a-sister", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/loveyalikeasister/v16/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Love Ya Like A Sister" + } + ] + }, + { + "name": "Loved by the King", + "fontFamily": "Loved by the King, cursive", + "slug": "loved-by-the-king", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lovedbytheking/v17/Gw6gwdP76VDVJNXerebZxUMeRXUF2MiMn3U.ttf" - }, - { - "family": "Lovers Quarrel", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/loversquarrel/v21/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lovedbytheking/v17/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Loved by the King" + } + ] + }, + { + "name": "Lovers Quarrel", + "fontFamily": "Lovers Quarrel, cursive", + "slug": "lovers-quarrel", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/loversquarrel/v21/Yq6N-LSKXTL-5bCy8ksBzpQ_-wAtab4.ttf" - }, - { - "family": "Luckiest Guy", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/luckiestguy/v18/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/luckiestguy/v18/_gP_1RrxsjcxVyin9l9n_j2hS95z.ttf" - }, - { - "family": "Lusitana", - "variants": [ "regular", "700" ], - "subsets": [ "latin" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/lusitana/v13/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf", - "regular": "http://fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKyhbTOc.ttf" - }, - { - "family": "Lustria", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOnCkzNg.ttf" - }, - { - "family": "Luxurious Roman", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v4", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/luxuriousroman/v4/buEupou_ZcP1w0yTKxJJokVSmbpqYgckeo9RMw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/luxuriousroman/v4/buEupou_ZcP1w0yTKxJJokVSmbpaYw0g.ttf" - }, - { - "family": "Luxurious Script", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/luxuriousscript/v5/ahcCv9e7yydulT32KZ0rBIoD7DzMg0rOby1JtYk.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/loversquarrel/v21/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lovers Quarrel" + } + ] + }, + { + "name": "Luckiest Guy", + "fontFamily": "Luckiest Guy, system-ui", + "slug": "luckiest-guy", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/luckiestguy/v18/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Luckiest Guy" + } + ] + }, + { + "name": "Lusitana", + "fontFamily": "Lusitana, serif", + "slug": "lusitana", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lusitana" + }, + { + "src": "http://fonts.gstatic.com/s/lusitana/v13/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lusitana" + } + ] + }, + { + "name": "Lustria", + "fontFamily": "Lustria, serif", + "slug": "lustria", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lustria" + } + ] + }, + { + "name": "Luxurious Roman", + "fontFamily": "Luxurious Roman, system-ui", + "slug": "luxurious-roman", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/luxuriousroman/v4/buEupou_ZcP1w0yTKxJJokVSmbpqYgckeo9RMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Luxurious Roman" + } + ] + }, + { + "name": "Luxurious Script", + "fontFamily": "Luxurious Script, cursive", + "slug": "luxurious-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/luxuriousscript/v5/ahcCv9e7yydulT32KZ0rBIoD7DzMs0vEaw.ttf" - }, - { - "family": "M PLUS 1", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "japanese", "latin", "latin-ext", "vietnamese" ], - "version": "v6", - "lastModified": "2022-09-27", - "files": { - "100": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSe78nZcsGGycA.ttf", - "200": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51Sa78nZcsGGycA.ttf", - "300": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Cya78nZcsGGycA.ttf", - "500": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Zya78nZcsGGycA.ttf", - "600": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5iyG78nZcsGGycA.ttf", - "700": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5siG78nZcsGGycA.ttf", - "800": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51SG78nZcsGGycA.ttf", - "900": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5_CG78nZcsGGycA.ttf", - "regular": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSa78nZcsGGycA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSaL83xY.ttf" - }, - { - "family": "M PLUS 1 Code", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "japanese", "latin", "latin-ext", "vietnamese" ], - "version": "v7", - "lastModified": "2022-09-27", - "files": { - "100": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0XHpapwmdZhY.ttf", - "200": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7gN0HHpapwmdZhY.ttf", - "300": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7jT0HHpapwmdZhY.ttf", - "500": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7i_0HHpapwmdZhY.ttf", - "600": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hT13HpapwmdZhY.ttf", - "700": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hq13HpapwmdZhY.ttf", - "regular": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0HHpapwmdZhY.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0EHoYJg.ttf" - }, - { - "family": "M PLUS 1p", - "variants": [ "100", "300", "regular", "500", "700", "800", "900" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "hebrew", - "japanese", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v28", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/mplus1p/v28/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf", - "300": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf", - "500": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf", - "700": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf", - "800": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf", - "900": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf", - "regular": "http://fonts.gstatic.com/s/mplus1p/v28/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mplus1p/v28/e3tjeuShHdiFyPFzBRrY-TQA.ttf" - }, - { - "family": "M PLUS 2", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "japanese", "latin", "latin-ext", "vietnamese" ], - "version": "v6", - "lastModified": "2022-09-27", - "files": { - "100": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa-VxlqHrzNgAw.ttf", - "200": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwua6VxlqHrzNgAw.ttf", - "300": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwZ66VxlqHrzNgAw.ttf", - "500": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwC66VxlqHrzNgAw.ttf", - "600": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw56mVxlqHrzNgAw.ttf", - "700": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw3qmVxlqHrzNgAw.ttf", - "800": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwuamVxlqHrzNgAw.ttf", - "900": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwkKmVxlqHrzNgAw.ttf", - "regular": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6VxlqHrzNgAw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6lx1CD.ttf" - }, - { - "family": "M PLUS Code Latin", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v11", - "lastModified": "2023-03-09", - "files": { - "100": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbB6i5MqF9TRwg.ttf", - "200": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1MbA6i5MqF9TRwg.ttf", - "300": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1BjA6i5MqF9TRwg.ttf", - "500": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1HTA6i5MqF9TRwg.ttf", - "600": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1JjH6i5MqF9TRwg.ttf", - "700": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1KHH6i5MqF9TRwg.ttf", - "regular": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA6i5MqF9TRwg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA2i9GrA.ttf" - }, - { - "family": "M PLUS Rounded 1c", - "variants": [ "100", "300", "regular", "500", "700", "800", "900" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "hebrew", - "japanese", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v15", - "lastModified": "2022-09-27", - "files": { - "100": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf", - "300": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf", - "500": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf", - "700": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf", - "800": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf", - "900": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf", - "regular": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGEAYIAV6gnpUpoWwNkYvrugw9RuMWHxLs.ttf" - }, - { - "family": "Ma Shan Zheng", - "variants": [ "regular" ], - "subsets": [ "chinese-simplified", "latin" ], - "version": "v10", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/mashanzheng/v10/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/luxuriousscript/v5/ahcCv9e7yydulT32KZ0rBIoD7DzMg0rOby1JtYk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Luxurious Script" + } + ] + }, + { + "name": "M PLUS 1", + "fontFamily": "M PLUS 1, sans-serif", + "slug": "m-plus-1", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSe78nZcsGGycA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51Sa78nZcsGGycA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Cya78nZcsGGycA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSa78nZcsGGycA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Zya78nZcsGGycA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5iyG78nZcsGGycA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5siG78nZcsGGycA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51SG78nZcsGGycA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5_CG78nZcsGGycA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + } + ] + }, + { + "name": "M PLUS 1 Code", + "fontFamily": "M PLUS 1 Code, sans-serif", + "slug": "m-plus-1-code", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0XHpapwmdZhY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7gN0HHpapwmdZhY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7jT0HHpapwmdZhY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0HHpapwmdZhY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7i_0HHpapwmdZhY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hT13HpapwmdZhY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hq13HpapwmdZhY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + } + ] + }, + { + "name": "M PLUS 1p", + "fontFamily": "M PLUS 1p, sans-serif", + "slug": "m-plus-1p", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + } + ] + }, + { + "name": "M PLUS 2", + "fontFamily": "M PLUS 2, sans-serif", + "slug": "m-plus-2", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa-VxlqHrzNgAw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwua6VxlqHrzNgAw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwZ66VxlqHrzNgAw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6VxlqHrzNgAw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwC66VxlqHrzNgAw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw56mVxlqHrzNgAw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw3qmVxlqHrzNgAw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwuamVxlqHrzNgAw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwkKmVxlqHrzNgAw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + } + ] + }, + { + "name": "M PLUS Code Latin", + "fontFamily": "M PLUS Code Latin, sans-serif", + "slug": "m-plus-code-latin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbB6i5MqF9TRwg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1MbA6i5MqF9TRwg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1BjA6i5MqF9TRwg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA6i5MqF9TRwg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1HTA6i5MqF9TRwg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1JjH6i5MqF9TRwg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1KHH6i5MqF9TRwg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + } + ] + }, + { + "name": "M PLUS Rounded 1c", + "fontFamily": "M PLUS Rounded 1c, sans-serif", + "slug": "m-plus-rounded-1c", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + } + ] + }, + { + "name": "Ma Shan Zheng", + "fontFamily": "Ma Shan Zheng, cursive", + "slug": "ma-shan-zheng", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mashanzheng/v10/NaPecZTRCLxvwo41b4gvzkXadMXmCA.ttf" - }, - { - "family": "Macondo", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/macondo/v21/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/macondo/v21/RrQQboN9-iB1IXmOe2TE1A.ttf" - }, - { - "family": "Macondo Swash Caps", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/macondoswashcaps/v20/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/macondoswashcaps/v20/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6-e0Ae.ttf" - }, - { - "family": "Mada", - "variants": [ "200", "300", "regular", "500", "600", "700", "900" ], - "subsets": [ "arabic", "latin" ], - "version": "v18", - "lastModified": "2022-12-08", - "files": { - "200": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdf3nCCL8zkwMIFg.ttf", - "300": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdZnkCCL8zkwMIFg.ttf", - "500": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdcHlCCL8zkwMIFg.ttf", - "600": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSde3iCCL8zkwMIFg.ttf", - "700": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdYnjCCL8zkwMIFg.ttf", - "900": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdbHhCCL8zkwMIFg.ttf", - "regular": "http://fonts.gstatic.com/s/mada/v18/7Auwp_0qnzeSTTXMLCrX0kU.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mada/v18/7Auwp_0qnzeSfTTGKA.ttf" - }, - { - "family": "Magra", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/magra/v14/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf", - "regular": "http://fonts.gstatic.com/s/magra/v14/uK_94ruaZus72k5xIDMfO-ed.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/magra/v14/uK_94ruaZus72n5wKjc.ttf" - }, - { - "family": "Maiden Orange", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v25", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/maidenorange/v25/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/maidenorange/v25/kJE1BuIX7AUmhi2V4m08kb1XvOdXDQ.ttf" - }, - { - "family": "Maitree", - "variants": [ "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf", - "300": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf", - "500": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf", - "600": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf", - "700": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf", - "regular": "http://fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkntiseA.ttf" - }, - { - "family": "Major Mono Display", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v13", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/majormonodisplay/v13/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mashanzheng/v10/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ma Shan Zheng" + } + ] + }, + { + "name": "Macondo", + "fontFamily": "Macondo, system-ui", + "slug": "macondo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/macondo/v21/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Macondo" + } + ] + }, + { + "name": "Macondo Swash Caps", + "fontFamily": "Macondo Swash Caps, system-ui", + "slug": "macondo-swash-caps", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/macondoswashcaps/v20/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Macondo Swash Caps" + } + ] + }, + { + "name": "Mada", + "fontFamily": "Mada, sans-serif", + "slug": "mada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdf3nCCL8zkwMIFg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdZnkCCL8zkwMIFg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v18/7Auwp_0qnzeSTTXMLCrX0kU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdcHlCCL8zkwMIFg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSde3iCCL8zkwMIFg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdYnjCCL8zkwMIFg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdbHhCCL8zkwMIFg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Mada" + } + ] + }, + { + "name": "Magra", + "fontFamily": "Magra, sans-serif", + "slug": "magra", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/magra/v14/uK_94ruaZus72k5xIDMfO-ed.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Magra" + }, + { + "src": "http://fonts.gstatic.com/s/magra/v14/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Magra" + } + ] + }, + { + "name": "Maiden Orange", + "fontFamily": "Maiden Orange, system-ui", + "slug": "maiden-orange", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/maidenorange/v25/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Maiden Orange" + } + ] + }, + { + "name": "Maitree", + "fontFamily": "Maitree, serif", + "slug": "maitree", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Maitree" + } + ] + }, + { + "name": "Major Mono Display", + "fontFamily": "Major Mono Display, monospace", + "slug": "major-mono-display", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/majormonodisplay/v13/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRh7C3eU.ttf" - }, - { - "family": "Mako", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/mako/v18/H4coBX6Mmc_Z0ST09g478Lo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mako/v18/H4coBX6Mmc_Z4SX-8g.ttf" - }, - { - "family": "Mali", - "variants": [ - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v10", - "lastModified": "2023-05-02", - "files": { - "200": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf", - "300": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf", - "500": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf", - "600": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf", - "700": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf", - "200italic": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf", - "300italic": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf", - "regular": "http://fonts.gstatic.com/s/mali/v10/N0ba2SRONuN4eCrODlxxOd8.ttf", - "italic": "http://fonts.gstatic.com/s/mali/v10/N0bU2SRONuN4SCjECn50Kd_PmA.ttf", - "500italic": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf", - "600italic": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf", - "700italic": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/majormonodisplay/v13/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Major Mono Display" + } + ] + }, + { + "name": "Mako", + "fontFamily": "Mako, sans-serif", + "slug": "mako", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mako/v18/H4coBX6Mmc_Z0ST09g478Lo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mako" + } + ] + }, + { + "name": "Mali", + "fontFamily": "Mali, cursive", + "slug": "mali", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mali/v10/N0ba2SRONuN4SCvECg.ttf" - }, - { - "family": "Mallanna", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v13", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/mallanna/v13/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mallanna/v13/hv-Vlzx-KEQb84YaDFwyGTA.ttf" - }, - { - "family": "Mandali", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v14", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/mandali/v14/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mandali/v14/LhWlMVbYOfASNfNUZFg_YA.ttf" - }, - { - "family": "Manjari", - "variants": [ "100", "regular", "700" ], - "subsets": [ "latin", "latin-ext", "malayalam" ], - "version": "v9", - "lastModified": "2022-04-26", - "files": { - "100": "http://fonts.gstatic.com/s/manjari/v9/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf", - "700": "http://fonts.gstatic.com/s/manjari/v9/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf", - "regular": "http://fonts.gstatic.com/s/manjari/v9/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/manjari/v9/k3kQo8UPMOBO2w1Ufd_oKw.ttf" - }, - { - "family": "Manrope", - "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "200": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.ttf", - "300": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F87jxeN7B.ttf", - "500": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf", - "600": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf", - "700": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf", - "800": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf", - "regular": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F87jxeN7B.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FN_E-bw.ttf" - }, - { - "family": "Mansalva", - "variants": [ "regular" ], - "subsets": [ "greek", "latin", "latin-ext", "vietnamese" ], - "version": "v12", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/mansalva/v12/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0ba2SRONuN4eCrODlxxOd8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bU2SRONuN4SCjECn50Kd_PmA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Mali" + } + ] + }, + { + "name": "Mallanna", + "fontFamily": "Mallanna, sans-serif", + "slug": "mallanna", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mallanna/v13/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mallanna" + } + ] + }, + { + "name": "Mandali", + "fontFamily": "Mandali, sans-serif", + "slug": "mandali", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mandali/v14/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mandali" + } + ] + }, + { + "name": "Manjari", + "fontFamily": "Manjari, sans-serif", + "slug": "manjari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/manjari/v9/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Manjari" + }, + { + "src": "http://fonts.gstatic.com/s/manjari/v9/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Manjari" + }, + { + "src": "http://fonts.gstatic.com/s/manjari/v9/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Manjari" + } + ] + }, + { + "name": "Manrope", + "fontFamily": "Manrope, sans-serif", + "slug": "manrope", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F87jxeN7B.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F87jxeN7B.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Manrope" + } + ] + }, + { + "name": "Mansalva", + "fontFamily": "Mansalva, cursive", + "slug": "mansalva", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mansalva/v12/aWB4m0aacbtDfvq5NKlkKYo.ttf" - }, - { - "family": "Manuale", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "800", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v28", - "lastModified": "2023-03-21", - "files": { - "300": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeG6e7wD1TB_JHHY.ttf", - "500": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wD1TB_JHHY.ttf", - "600": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwD1TB_JHHY.ttf", - "700": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwD1TB_JHHY.ttf", - "800": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeFkfLwD1TB_JHHY.ttf", - "regular": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wD1TB_JHHY.ttf", - "300italic": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOApA3zRdIWHYr8M.ttf", - "italic": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zRdIWHYr8M.ttf", - "500italic": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zRdIWHYr8M.ttf", - "600italic": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zRdIWHYr8M.ttf", - "700italic": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zRdIWHYr8M.ttf", - "800italic": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsONRH3zRdIWHYr8M.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke4wC3zQ.ttf" - }, - { - "family": "Marcellus", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF81UPoP.ttf" - }, - { - "family": "Marcellus SC", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLE_gNaZ.ttf" - }, - { - "family": "Marck Script", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/marckscript/v17/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mansalva/v12/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mansalva" + } + ] + }, + { + "name": "Manuale", + "fontFamily": "Manuale, serif", + "slug": "manuale", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeG6e7wD1TB_JHHY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wD1TB_JHHY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wD1TB_JHHY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwD1TB_JHHY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwD1TB_JHHY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeFkfLwD1TB_JHHY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOApA3zRdIWHYr8M.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zRdIWHYr8M.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zRdIWHYr8M.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zRdIWHYr8M.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zRdIWHYr8M.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsONRH3zRdIWHYr8M.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Manuale" + } + ] + }, + { + "name": "Marcellus", + "fontFamily": "Marcellus, serif", + "slug": "marcellus", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marcellus" + } + ] + }, + { + "name": "Marcellus SC", + "fontFamily": "Marcellus SC, serif", + "slug": "marcellus-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marcellus SC" + } + ] + }, + { + "name": "Marck Script", + "fontFamily": "Marck Script, cursive", + "slug": "marck-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/marckscript/v17/nwpTtK2oNgBA3Or78gapdwuyzig6.ttf" - }, - { - "family": "Margarine", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/margarine/v22/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/margarine/v22/qkBXXvoE6trLT9Y7YLyu5Z5P.ttf" - }, - { - "family": "Marhey", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v4", - "lastModified": "2023-03-09", - "files": { - "300": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBZVwO2cXiGevOMw.ttf", - "500": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBflwO2cXiGevOMw.ttf", - "600": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBRV3O2cXiGevOMw.ttf", - "700": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBSx3O2cXiGevOMw.ttf", - "regular": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBctwO2cXiGevOMw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBctwC2YdjA.ttf" - }, - { - "family": "Markazi Text", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf", - "600": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf", - "700": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf", - "regular": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQf4IvAQ.ttf" - }, - { - "family": "Marko One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v22", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/markoone/v22/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/markoone/v22/9Btq3DFG0cnVM5lw1haqK58b.ttf" - }, - { - "family": "Marmelad", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/marmelad/v18/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/marmelad/v18/Qw3eZQdSHj_jK2e-8uFKEeI.ttf" - }, - { - "family": "Martel", - "variants": [ "200", "300", "regular", "600", "700", "800", "900" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf", - "300": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf", - "600": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf", - "700": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf", - "800": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf", - "900": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf", - "regular": "http://fonts.gstatic.com/s/martel/v10/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/martel/v10/PN_xRfK9oXHga0XdYMg6.ttf" - }, - { - "family": "Martel Sans", - "variants": [ "200", "300", "regular", "600", "700", "800", "900" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf", - "300": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf", - "600": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf", - "700": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf", - "800": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf", - "900": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf", - "regular": "http://fonts.gstatic.com/s/martelsans/v12/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/martelsans/v12/h0GsssGi7VdzDgKjM-4d8hjex-s.ttf" - }, - { - "family": "Martian Mono", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800" - ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v3", - "lastModified": "2023-02-23", - "files": { - "100": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qus6WD75kdpF2.ttf", - "200": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qu86WD75kdpF2.ttf", - "300": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY00u86WD75kdpF2.ttf", - "500": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1Yu86WD75kdpF2.ttf", - "600": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY20vM6WD75kdpF2.ttf", - "700": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY2NvM6WD75kdpF2.ttf", - "800": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qvM6WD75kdpF2.ttf", - "regular": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qu86WD75kdpF2.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marckscript/v17/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marck Script" + } + ] + }, + { + "name": "Margarine", + "fontFamily": "Margarine, system-ui", + "slug": "margarine", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/margarine/v22/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Margarine" + } + ] + }, + { + "name": "Marhey", + "fontFamily": "Marhey, system-ui", + "slug": "marhey", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBZVwO2cXiGevOMw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Marhey" + }, + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBctwO2cXiGevOMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marhey" + }, + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBflwO2cXiGevOMw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Marhey" + }, + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBRV3O2cXiGevOMw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Marhey" + }, + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBSx3O2cXiGevOMw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Marhey" + } + ] + }, + { + "name": "Markazi Text", + "fontFamily": "Markazi Text, serif", + "slug": "markazi-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Markazi Text" + }, + { + "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Markazi Text" + }, + { + "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Markazi Text" + }, + { + "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Markazi Text" + } + ] + }, + { + "name": "Marko One", + "fontFamily": "Marko One, serif", + "slug": "marko-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/markoone/v22/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marko One" + } + ] + }, + { + "name": "Marmelad", + "fontFamily": "Marmelad, sans-serif", + "slug": "marmelad", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marmelad/v18/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marmelad" + } + ] + }, + { + "name": "Martel", + "fontFamily": "Martel, serif", + "slug": "martel", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Martel" + } + ] + }, + { + "name": "Martel Sans", + "fontFamily": "Martel Sans, sans-serif", + "slug": "martel-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + } + ] + }, + { + "name": "Martian Mono", + "fontFamily": "Martian Mono, monospace", + "slug": "martian-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qu_6XBbo.ttf" - }, - { - "family": "Marvel", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/marvel/v14/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf", - "regular": "http://fonts.gstatic.com/s/marvel/v14/nwpVtKeoNgBV0qaIkV7ED366zg.ttf", - "italic": "http://fonts.gstatic.com/s/marvel/v14/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf", - "700italic": "http://fonts.gstatic.com/s/marvel/v14/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/marvel/v14/nwpVtKeoNgBV0qa4kFTA.ttf" - }, - { - "family": "Mate", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-04-04", - "files": { - "regular": "http://fonts.gstatic.com/s/mate/v15/m8JdjftRd7WZ2z28WoXSaLU.ttf", - "italic": "http://fonts.gstatic.com/s/mate/v15/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mate/v15/m8JdjftRd7WZ6zy2Xg.ttf" - }, - { - "family": "Mate SC", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/matesc/v22/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/matesc/v22/-nF8OGQ1-uoVr2wK-iTT8w.ttf" - }, - { - "family": "Material Icons", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v140", - "lastModified": "2023-03-08", - "files": { - "regular": "http://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNZIhI8tIHh.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qus6WD75kdpF2.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qu86WD75kdpF2.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY00u86WD75kdpF2.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qu86WD75kdpF2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1Yu86WD75kdpF2.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY20vM6WD75kdpF2.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY2NvM6WD75kdpF2.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qvM6WD75kdpF2.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + } + ] + }, + { + "name": "Marvel", + "fontFamily": "Marvel, sans-serif", + "slug": "marvel", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marvel/v14/nwpVtKeoNgBV0qaIkV7ED366zg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marvel" + }, + { + "src": "http://fonts.gstatic.com/s/marvel/v14/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Marvel" + }, + { + "src": "http://fonts.gstatic.com/s/marvel/v14/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Marvel" + }, + { + "src": "http://fonts.gstatic.com/s/marvel/v14/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Marvel" + } + ] + }, + { + "name": "Mate", + "fontFamily": "Mate, serif", + "slug": "mate", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mate/v15/m8JdjftRd7WZ2z28WoXSaLU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mate" + }, + { + "src": "http://fonts.gstatic.com/s/mate/v15/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Mate" + } + ] + }, + { + "name": "Mate SC", + "fontFamily": "Mate SC, serif", + "slug": "mate-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/matesc/v22/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mate SC" + } + ] + }, + { + "name": "Material Icons", + "fontFamily": "Material Icons, monospace", + "slug": "material-icons", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDvNYKBY.ttf" - }, - { - "family": "Material Icons Outlined", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v109", - "lastModified": "2023-03-08", - "files": { - "regular": "http://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUcdl5GuI2Ze.otf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNZIhI8tIHh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons" + } + ] + }, + { + "name": "Material Icons Outlined", + "fontFamily": "Material Icons Outlined, monospace", + "slug": "material-icons-outlined", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhXcanZM.otf" - }, - { - "family": "Material Icons Round", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v108", - "lastModified": "2023-03-21", - "files": { - "regular": "http://fonts.gstatic.com/s/materialiconsround/v108/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmMq_fTTvg-.otf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUcdl5GuI2Ze.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons Outlined" + } + ] + }, + { + "name": "Material Icons Round", + "fontFamily": "Material Icons Round, monospace", + "slug": "material-icons-round", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/materialiconsround/v108/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flzmLofU.otf" - }, - { - "family": "Material Icons Sharp", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v109", - "lastModified": "2023-03-08", - "files": { - "regular": "http://fonts.gstatic.com/s/materialiconssharp/v109/oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvmvSImEyc0vd.otf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialiconsround/v108/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmMq_fTTvg-.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons Round" + } + ] + }, + { + "name": "Material Icons Sharp", + "fontFamily": "Material Icons Sharp, monospace", + "slug": "material-icons-sharp", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/materialiconssharp/v109/oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvlvVKGM.otf" - }, - { - "family": "Material Icons Two Tone", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v112", - "lastModified": "2023-03-08", - "files": { - "regular": "http://fonts.gstatic.com/s/materialiconstwotone/v112/hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNCu3NjDrH_77.otf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialiconssharp/v109/oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvmvSImEyc0vd.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons Sharp" + } + ] + }, + { + "name": "Material Icons Two Tone", + "fontFamily": "Material Icons Two Tone, monospace", + "slug": "material-icons-two-tone", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/materialiconstwotone/v112/hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNBuwPDI.otf" - }, - { - "family": "Material Symbols Outlined", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "latin" ], - "version": "v110", - "lastModified": "2023-05-08", - "files": { - "100": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHeembd5zrTgt.ttf", - "200": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDAvHOembd5zrTgt.ttf", - "300": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDDxHOembd5zrTgt.ttf", - "500": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCdHOembd5zrTgt.ttf", - "600": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBxG-embd5zrTgt.ttf", - "700": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBIG-embd5zrTgt.ttf", - "regular": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOembd5zrTgt.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialiconstwotone/v112/hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNCu3NjDrH_77.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons Two Tone" + } + ] + }, + { + "name": "Material Symbols Outlined", + "fontFamily": "Material Symbols Outlined, monospace", + "slug": "material-symbols-outlined", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHNenZ9o.ttf" - }, - { - "family": "Material Symbols Rounded", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "latin" ], - "version": "v109", - "lastModified": "2023-05-08", - "files": { - "100": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIekXxKJKJBjAa8.ttf", - "200": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rAelXxKJKJBjAa8.ttf", - "300": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rNmlXxKJKJBjAa8.ttf", - "500": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rLWlXxKJKJBjAa8.ttf", - "600": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rFmiXxKJKJBjAa8.ttf", - "700": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rGCiXxKJKJBjAa8.ttf", - "regular": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIelXxKJKJBjAa8.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHeembd5zrTgt.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDAvHOembd5zrTgt.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDDxHOembd5zrTgt.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOembd5zrTgt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCdHOembd5zrTgt.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBxG-embd5zrTgt.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBIG-embd5zrTgt.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + } + ] + }, + { + "name": "Material Symbols Rounded", + "fontFamily": "Material Symbols Rounded, monospace", + "slug": "material-symbols-rounded", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIelbxODLA.ttf" - }, - { - "family": "Material Symbols Sharp", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "latin" ], - "version": "v106", - "lastModified": "2023-05-08", - "files": { - "100": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLozCOJ1H7-knk.ttf", - "200": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxMLojCOJ1H7-knk.ttf", - "300": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxPVojCOJ1H7-knk.ttf", - "500": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxO5ojCOJ1H7-knk.ttf", - "600": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNVpTCOJ1H7-knk.ttf", - "700": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNspTCOJ1H7-knk.ttf", - "regular": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLojCOJ1H7-knk.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIekXxKJKJBjAa8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rAelXxKJKJBjAa8.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rNmlXxKJKJBjAa8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIelXxKJKJBjAa8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rLWlXxKJKJBjAa8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rFmiXxKJKJBjAa8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rGCiXxKJKJBjAa8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + } + ] + }, + { + "name": "Material Symbols Sharp", + "fontFamily": "Material Symbols Sharp, monospace", + "slug": "material-symbols-sharp", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLogCPLVU.ttf" - }, - { - "family": "Maven Pro", - "variants": [ "regular", "500", "600", "700", "800", "900" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v32", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nCpozp5GvU.ttf", - "600": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nCpozp5GvU.ttf", - "700": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nCpozp5GvU.ttf", - "800": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nCpozp5GvU.ttf", - "900": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nCpozp5GvU.ttf", - "regular": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nCpozp5GvU.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX21nGjpw.ttf" - }, - { - "family": "McLaren", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/mclaren/v14/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mclaren/v14/2EbnL-ZuAXFqZFXIeYcV9w.ttf" - }, - { - "family": "Mea Culpa", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/meaculpa/v3/AMOTz4GcuWbEIuza8jsZms0QW3mqyg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLozCOJ1H7-knk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxMLojCOJ1H7-knk.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxPVojCOJ1H7-knk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLojCOJ1H7-knk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxO5ojCOJ1H7-knk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNVpTCOJ1H7-knk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNspTCOJ1H7-knk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + } + ] + }, + { + "name": "Maven Pro", + "fontFamily": "Maven Pro, sans-serif", + "slug": "maven-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nCpozp5GvU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nCpozp5GvU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nCpozp5GvU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nCpozp5GvU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nCpozp5GvU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nCpozp5GvU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + } + ] + }, + { + "name": "McLaren", + "fontFamily": "McLaren, system-ui", + "slug": "mclaren", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mclaren/v14/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "McLaren" + } + ] + }, + { + "name": "Mea Culpa", + "fontFamily": "Mea Culpa, cursive", + "slug": "mea-culpa", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/meaculpa/v3/AMOTz4GcuWbEIuza8jspm8cU.ttf" - }, - { - "family": "Meddon", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/meddon/v20/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meaculpa/v3/AMOTz4GcuWbEIuza8jsZms0QW3mqyg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mea Culpa" + } + ] + }, + { + "name": "Meddon", + "fontFamily": "Meddon, cursive", + "slug": "meddon", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/meddon/v20/kmK8ZqA2EgDNeHTphR1F.ttf" - }, - { - "family": "MedievalSharp", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/medievalsharp/v24/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/medievalsharp/v24/EvOJzAlL3oU5AQl2mP5KdgptMq5wNw.ttf" - }, - { - "family": "Medula One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yuoiAgtw.ttf" - }, - { - "family": "Meera Inimai", - "variants": [ "regular" ], - "subsets": [ "latin", "tamil" ], - "version": "v12", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/meerainimai/v12/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/meerainimai/v12/845fNMM5EIqOW5MPuvO3ILeZ_mLH.ttf" - }, - { - "family": "Megrim", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/megrim/v16/46kulbz5WjvLqJZlbWXgd0RY1g.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/megrim/v16/46kulbz5WjvLqJZVbG_k.ttf" - }, - { - "family": "Meie Script", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meddon/v20/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Meddon" + } + ] + }, + { + "name": "MedievalSharp", + "fontFamily": "MedievalSharp, system-ui", + "slug": "medievalsharp", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/medievalsharp/v24/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "MedievalSharp" + } + ] + }, + { + "name": "Medula One", + "fontFamily": "Medula One, system-ui", + "slug": "medula-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Medula One" + } + ] + }, + { + "name": "Meera Inimai", + "fontFamily": "Meera Inimai, sans-serif", + "slug": "meera-inimai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meerainimai/v12/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Meera Inimai" + } + ] + }, + { + "name": "Megrim", + "fontFamily": "Megrim, system-ui", + "slug": "megrim", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/megrim/v16/46kulbz5WjvLqJZlbWXgd0RY1g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Megrim" + } + ] + }, + { + "name": "Meie Script", + "fontFamily": "Meie Script, cursive", + "slug": "meie-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMgxm7oE.ttf" - }, - { - "family": "Meow Script", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/meowscript/v5/0FlQVPqanlaJrtr8AnJ0ESch0_0CfDf1.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Meie Script" + } + ] + }, + { + "name": "Meow Script", + "fontFamily": "Meow Script, cursive", + "slug": "meow-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/meowscript/v5/0FlQVPqanlaJrtr8AnJ0ERcg2fk.ttf" - }, - { - "family": "Merienda", - "variants": [ "300", "regular", "500", "600", "700", "800", "900" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v19", - "lastModified": "2023-03-21", - "files": { - "300": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5JHhoSU78QGBV0A.ttf", - "500": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5SHhoSU78QGBV0A.ttf", - "600": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5pH9oSU78QGBV0A.ttf", - "700": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5nX9oSU78QGBV0A.ttf", - "800": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5-n9oSU78QGBV0A.ttf", - "900": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5039oSU78QGBV0A.ttf", - "regular": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5enhoSU78QGBV0A.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meowscript/v5/0FlQVPqanlaJrtr8AnJ0ESch0_0CfDf1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Meow Script" + } + ] + }, + { + "name": "Merienda", + "fontFamily": "Merienda, cursive", + "slug": "merienda", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5enhYSET4.ttf" - }, - { - "family": "Merriweather", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "700", - "700italic", - "900", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v30", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf", - "700": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf", - "900": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf", - "300italic": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf", - "regular": "http://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf", - "italic": "http://fonts.gstatic.com/s/merriweather/v30/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf", - "700italic": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf", - "900italic": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5-eiZJ.ttf" - }, - { - "family": "Merriweather Sans", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "800", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic" - ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], - "version": "v26", - "lastModified": "2023-04-27", - "files": { - "300": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ljuEG7xFHnQ.ttf", - "500": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ljuEG7xFHnQ.ttf", - "600": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkljuEG7xFHnQ.ttf", - "700": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekljuEG7xFHnQ.ttf", - "800": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukljuEG7xFHnQ.ttf", - "regular": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ljuEG7xFHnQ.ttf", - "300italic": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzesCzRRXnaur.ttf", - "italic": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzesCzRRXnaur.ttf", - "500italic": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zesCzRRXnaur.ttf", - "600italic": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TyusCzRRXnaur.ttf", - "700italic": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qyusCzRRXnaur.ttf", - "800italic": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NyusCzRRXnaur.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4Vj-sC.ttf" - }, - { - "family": "Metal", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin" ], - "version": "v28", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/metal/v28/lW-wwjUJIXTo7i3nnoQAUdN2.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/metal/v28/lW-wwjUJIXTo7h3mlIA.ttf" - }, - { - "family": "Metal Mania", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJdXDiaE.ttf" - }, - { - "family": "Metamorphous", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/metamorphous/v18/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/metamorphous/v18/Wnz8HA03aAXcC39ZEX5y133EPSqp.ttf" - }, - { - "family": "Metrophobic", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v23", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/metrophobic/v23/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/metrophobic/v23/sJoA3LZUhMSAPV_u0qwiAQ-I5Xo.ttf" - }, - { - "family": "Michroma", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/michroma/v16/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/michroma/v16/PN_zRfy9qWD8fEagAPg7pTw.ttf" - }, - { - "family": "Milonga", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/milonga/v20/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/milonga/v20/SZc53FHnIaK9W5kfTzzMlQ.ttf" - }, - { - "family": "Miltonian", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v26", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/miltonian/v26/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/miltonian/v26/zOL-4pbPn6Ne9JqTg9mb6ORE.ttf" - }, - { - "family": "Miltonian Tattoo", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v28", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/miltoniantattoo/v28/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/miltoniantattoo/v28/EvOUzBRL0o0kCxF-lcMCQxlpVsA_JwL2NA.ttf" - }, - { - "family": "Mina", - "variants": [ "regular", "700" ], - "subsets": [ "bengali", "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/mina/v11/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf", - "regular": "http://fonts.gstatic.com/s/mina/v11/-nFzOGc18vARrz9j7i3y65o.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mina/v11/-nFzOGc18vARnz5p6g.ttf" - }, - { - "family": "Mingzat", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "lepcha" ], - "version": "v5", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/mingzat/v5/0QIgMX5C-o-oWWyvBttkm_mv670.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mingzat/v5/0QIgMX5C-o-oWWyvNtpunw.ttf" - }, - { - "family": "Miniver", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/miniver/v21/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/miniver/v21/eLGcP-PxIg-5H0vC37wIzw.ttf" - }, - { - "family": "Miriam Libre", - "variants": [ "regular", "700" ], - "subsets": [ "hebrew", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/miriamlibre/v14/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf", - "regular": "http://fonts.gstatic.com/s/miriamlibre/v14/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/miriamlibre/v14/DdTh798HsHwubBAqfkcBTL_fYZP7.ttf" - }, - { - "family": "Mirza", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIpAeO4mafBomDi.ttf", - "600": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIFBuO4mafBomDi.ttf", - "700": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtJhB-O4mafBomDi.ttf", - "regular": "http://fonts.gstatic.com/s/mirza/v15/co3ImWlikiN5EurdKMewsrvI.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mirza/v15/co3ImWlikiN5EtrcIsM.ttf" - }, - { - "family": "Miss Fajardose", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5JHhoSU78QGBV0A.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5enhoSU78QGBV0A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5SHhoSU78QGBV0A.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5pH9oSU78QGBV0A.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5nX9oSU78QGBV0A.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5-n9oSU78QGBV0A.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5039oSU78QGBV0A.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Merienda" + } + ] + }, + { + "name": "Merriweather", + "fontFamily": "Merriweather, serif", + "slug": "merriweather", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Merriweather" + } + ] + }, + { + "name": "Merriweather Sans", + "fontFamily": "Merriweather Sans, sans-serif", + "slug": "merriweather-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ljuEG7xFHnQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ljuEG7xFHnQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ljuEG7xFHnQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkljuEG7xFHnQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekljuEG7xFHnQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukljuEG7xFHnQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzesCzRRXnaur.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzesCzRRXnaur.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zesCzRRXnaur.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TyusCzRRXnaur.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qyusCzRRXnaur.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NyusCzRRXnaur.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + } + ] + }, + { + "name": "Metal", + "fontFamily": "Metal, system-ui", + "slug": "metal", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/metal/v28/lW-wwjUJIXTo7i3nnoQAUdN2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Metal" + } + ] + }, + { + "name": "Metal Mania", + "fontFamily": "Metal Mania, system-ui", + "slug": "metal-mania", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Metal Mania" + } + ] + }, + { + "name": "Metamorphous", + "fontFamily": "Metamorphous, system-ui", + "slug": "metamorphous", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/metamorphous/v18/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Metamorphous" + } + ] + }, + { + "name": "Metrophobic", + "fontFamily": "Metrophobic, sans-serif", + "slug": "metrophobic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/metrophobic/v23/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Metrophobic" + } + ] + }, + { + "name": "Michroma", + "fontFamily": "Michroma, sans-serif", + "slug": "michroma", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/michroma/v16/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Michroma" + } + ] + }, + { + "name": "Milonga", + "fontFamily": "Milonga, system-ui", + "slug": "milonga", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/milonga/v20/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Milonga" + } + ] + }, + { + "name": "Miltonian", + "fontFamily": "Miltonian, system-ui", + "slug": "miltonian", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/miltonian/v26/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miltonian" + } + ] + }, + { + "name": "Miltonian Tattoo", + "fontFamily": "Miltonian Tattoo, system-ui", + "slug": "miltonian-tattoo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/miltoniantattoo/v28/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miltonian Tattoo" + } + ] + }, + { + "name": "Mina", + "fontFamily": "Mina, sans-serif", + "slug": "mina", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mina/v11/-nFzOGc18vARrz9j7i3y65o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mina" + }, + { + "src": "http://fonts.gstatic.com/s/mina/v11/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mina" + } + ] + }, + { + "name": "Mingzat", + "fontFamily": "Mingzat, sans-serif", + "slug": "mingzat", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mingzat/v5/0QIgMX5C-o-oWWyvBttkm_mv670.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mingzat" + } + ] + }, + { + "name": "Miniver", + "fontFamily": "Miniver, system-ui", + "slug": "miniver", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/miniver/v21/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miniver" + } + ] + }, + { + "name": "Miriam Libre", + "fontFamily": "Miriam Libre, sans-serif", + "slug": "miriam-libre", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/miriamlibre/v14/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miriam Libre" + }, + { + "src": "http://fonts.gstatic.com/s/miriamlibre/v14/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Miriam Libre" + } + ] + }, + { + "name": "Mirza", + "fontFamily": "Mirza, system-ui", + "slug": "mirza", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mirza/v15/co3ImWlikiN5EurdKMewsrvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mirza" + }, + { + "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIpAeO4mafBomDi.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mirza" + }, + { + "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIFBuO4mafBomDi.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mirza" + }, + { + "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtJhB-O4mafBomDi.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mirza" + } + ] + }, + { + "name": "Miss Fajardose", + "fontFamily": "Miss Fajardose, cursive", + "slug": "miss-fajardose", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb_quUvI.ttf" - }, - { - "family": "Mitr", - "variants": [ "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf", - "300": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf", - "500": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf", - "600": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf", - "700": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf", - "regular": "http://fonts.gstatic.com/s/mitr/v11/pxiLypw5ucZFyTsyMJj_b1o.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mitr/v11/pxiLypw5ucZF-To4NA.ttf" - }, - { - "family": "Mochiy Pop One", - "variants": [ "regular" ], - "subsets": [ "japanese", "latin" ], - "version": "v7", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/mochiypopone/v7/QdVPSTA9Jh-gg-5XZP2UmU4O9kwwD3s6ZKAi.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mochiypopone/v7/QdVPSTA9Jh-gg-5XZP2UmU4O9nwxBX8.ttf" - }, - { - "family": "Mochiy Pop P One", - "variants": [ "regular" ], - "subsets": [ "japanese", "latin" ], - "version": "v7", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/mochiypoppone/v7/Ktk2AKuPeY_td1-h9LayHYWCjAqyN4O3WYZB_sU.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mochiypoppone/v7/Ktk2AKuPeY_td1-h9LayHYWCjAqyB4K9XQ.ttf" - }, - { - "family": "Modak", - "variants": [ "regular" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/modak/v18/EJRYQgs1XtIEsnMH8BVZ76KU.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/modak/v18/EJRYQgs1XtIEskMG-hE.ttf" - }, - { - "family": "Modern Antiqua", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/modernantiqua/v22/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/modernantiqua/v22/NGStv5TIAUg6Iq_RLNo_2dp1sL1FYW8.ttf" - }, - { - "family": "Mogra", - "variants": [ "regular" ], - "subsets": [ "gujarati", "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/mogra/v19/f0X40eSs8c95TBo4DvLmxtnG.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mogra/v19/f0X40eSs8c95TCo5BPY.ttf" - }, - { - "family": "Mohave", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "300italic", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v8", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdif_HvCQopLSvBk.ttf", - "500": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdkv_HvCQopLSvBk.ttf", - "600": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdqf4HvCQopLSvBk.ttf", - "700": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdp74HvCQopLSvBk.ttf", - "regular": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_HvCQopLSvBk.ttf", - "300italic": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8qLOaprDXrBlSVw.ttf", - "italic": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G89rOaprDXrBlSVw.ttf", - "500italic": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8xLOaprDXrBlSVw.ttf", - "600italic": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8KLSaprDXrBlSVw.ttf", - "700italic": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8EbSaprDXrBlSVw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_LvGapg.ttf" - }, - { - "family": "Molengo", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQXbValg.ttf" - }, - { - "family": "Molle", - "variants": [ "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-04-26", - "files": { - "italic": "http://fonts.gstatic.com/s/molle/v21/E21n_dL5hOXFhWEsXzgmVydREus.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miss Fajardose" + } + ] + }, + { + "name": "Mitr", + "fontFamily": "Mitr, sans-serif", + "slug": "mitr", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiLypw5ucZFyTsyMJj_b1o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mitr" + } + ] + }, + { + "name": "Mochiy Pop One", + "fontFamily": "Mochiy Pop One, sans-serif", + "slug": "mochiy-pop-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mochiypopone/v7/QdVPSTA9Jh-gg-5XZP2UmU4O9kwwD3s6ZKAi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mochiy Pop One" + } + ] + }, + { + "name": "Mochiy Pop P One", + "fontFamily": "Mochiy Pop P One, sans-serif", + "slug": "mochiy-pop-p-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mochiypoppone/v7/Ktk2AKuPeY_td1-h9LayHYWCjAqyN4O3WYZB_sU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mochiy Pop P One" + } + ] + }, + { + "name": "Modak", + "fontFamily": "Modak, system-ui", + "slug": "modak", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/modak/v18/EJRYQgs1XtIEsnMH8BVZ76KU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Modak" + } + ] + }, + { + "name": "Modern Antiqua", + "fontFamily": "Modern Antiqua, system-ui", + "slug": "modern-antiqua", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/modernantiqua/v22/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Modern Antiqua" + } + ] + }, + { + "name": "Mogra", + "fontFamily": "Mogra, system-ui", + "slug": "mogra", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mogra/v19/f0X40eSs8c95TBo4DvLmxtnG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mogra" + } + ] + }, + { + "name": "Mohave", + "fontFamily": "Mohave, sans-serif", + "slug": "mohave", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdif_HvCQopLSvBk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_HvCQopLSvBk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdkv_HvCQopLSvBk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdqf4HvCQopLSvBk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdp74HvCQopLSvBk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8qLOaprDXrBlSVw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G89rOaprDXrBlSVw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8xLOaprDXrBlSVw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8KLSaprDXrBlSVw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8EbSaprDXrBlSVw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Mohave" + } + ] + }, + { + "name": "Molengo", + "fontFamily": "Molengo, sans-serif", + "slug": "molengo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Molengo" + } + ] + }, + { + "name": "Molle", + "fontFamily": "Molle, cursive", + "slug": "molle", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/molle/v21/E21n_dL5hOXFhWEsbzksUw.ttf" - }, - { - "family": "Monda", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/monda/v16/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf", - "regular": "http://fonts.gstatic.com/s/monda/v16/TK3tWkYFABsmjvpmNBsLvPdG.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/monda/v16/TK3tWkYFABsmjspnPh8.ttf" - }, - { - "family": "Monofett", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/monofett/v22/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/monofett/v22/mFTyWbofw6zc9NtnW73Tsxg.ttf" - }, - { - "family": "Monoton", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/monoton/v15/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/monoton/v15/5h1aiZUrOngCibe4TkfLRw.ttf" - }, - { - "family": "Monsieur La Doulaise", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/monsieurladoulaise/v15/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/molle/v21/E21n_dL5hOXFhWEsXzgmVydREus.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Molle" + } + ] + }, + { + "name": "Monda", + "fontFamily": "Monda, sans-serif", + "slug": "monda", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/monda/v16/TK3tWkYFABsmjvpmNBsLvPdG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Monda" + }, + { + "src": "http://fonts.gstatic.com/s/monda/v16/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Monda" + } + ] + }, + { + "name": "Monofett", + "fontFamily": "Monofett, system-ui", + "slug": "monofett", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/monofett/v22/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Monofett" + } + ] + }, + { + "name": "Monoton", + "fontFamily": "Monoton, system-ui", + "slug": "monoton", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/monoton/v15/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Monoton" + } + ] + }, + { + "name": "Monsieur La Doulaise", + "fontFamily": "Monsieur La Doulaise, cursive", + "slug": "monsieur-la-doulaise", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/monsieurladoulaise/v15/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZm5fyEU.ttf" - }, - { - "family": "Montaga", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_4gca6A.ttf" - }, - { - "family": "Montagu Slab", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v6", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbE3P9Fs7bOSO7.ttf", - "200": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkBbEnP9Fs7bOSO7.ttf", - "300": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkCFEnP9Fs7bOSO7.ttf", - "500": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDpEnP9Fs7bOSO7.ttf", - "600": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkAFFXP9Fs7bOSO7.ttf", - "700": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkA8FXP9Fs7bOSO7.ttf", - "regular": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEnP9Fs7bOSO7.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEkP8HMo.ttf" - }, - { - "family": "MonteCarlo", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v8", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/montecarlo/v8/buEzpo6-f9X01GadLA0G0CoV_NxLeiw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/monsieurladoulaise/v15/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Monsieur La Doulaise" + } + ] + }, + { + "name": "Montaga", + "fontFamily": "Montaga, serif", + "slug": "montaga", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montaga" + } + ] + }, + { + "name": "Montagu Slab", + "fontFamily": "Montagu Slab, serif", + "slug": "montagu-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbE3P9Fs7bOSO7.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkBbEnP9Fs7bOSO7.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkCFEnP9Fs7bOSO7.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEnP9Fs7bOSO7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDpEnP9Fs7bOSO7.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkAFFXP9Fs7bOSO7.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkA8FXP9Fs7bOSO7.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + } + ] + }, + { + "name": "MonteCarlo", + "fontFamily": "MonteCarlo, cursive", + "slug": "montecarlo", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/montecarlo/v8/buEzpo6-f9X01GadLA0G4Csf-A.ttf" - }, - { - "family": "Montez", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/montez/v18/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montecarlo/v8/buEzpo6-f9X01GadLA0G0CoV_NxLeiw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "MonteCarlo" + } + ] + }, + { + "name": "Montez", + "fontFamily": "Montez, cursive", + "slug": "montez", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/montez/v18/845ZNMk5GoGIX8lW1bra.ttf" - }, - { - "family": "Montserrat", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v25", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf", - "200": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-Y3tcoqK5.ttf", - "300": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-Y3tcoqK5.ttf", - "500": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-Y3tcoqK5.ttf", - "600": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-Y3tcoqK5.ttf", - "700": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-Y3tcoqK5.ttf", - "800": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-Y3tcoqK5.ttf", - "900": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w-Y3tcoqK5.ttf", - "regular": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-Y3tcoqK5.ttf", - "100italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aX9-p7K5ILg.ttf", - "200italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aX9-p7K5ILg.ttf", - "300italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aX9-p7K5ILg.ttf", - "italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aX9-p7K5ILg.ttf", - "500italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aX9-p7K5ILg.ttf", - "600italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aX9-p7K5ILg.ttf", - "700italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aX9-p7K5ILg.ttf", - "800italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aX9-p7K5ILg.ttf", - "900italic": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aX9-p7K5ILg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw_aX8.ttf" - }, - { - "family": "Montserrat Alternates", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf", - "200": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf", - "300": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf", - "500": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf", - "600": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf", - "700": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf", - "800": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf", - "900": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf", - "100italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf", - "200italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf", - "300italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf", - "regular": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf", - "italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf", - "500italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf", - "600italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf", - "700italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf", - "800italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf", - "900italic": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU057afV.ttf" - }, - { - "family": "Montserrat Subrayada", - "variants": [ "regular", "700" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf", - "regular": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQH8KaOM.ttf" - }, - { - "family": "Moo Lah Lah", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/moolahlah/v3/dg4h_p_opKZOA0w1AYcm55wtYQYugjW4.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/moolahlah/v3/dg4h_p_opKZOA0w1AYcm56wsawI.ttf" - }, - { - "family": "Moon Dance", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/moondance/v3/WBLgrEbUbFlYW9ekmGawe2XiKMiokE4.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montez/v18/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montez" + } + ] + }, + { + "name": "Montserrat", + "fontFamily": "Montserrat, sans-serif", + "slug": "montserrat", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-Y3tcoqK5.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-Y3tcoqK5.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-Y3tcoqK5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-Y3tcoqK5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-Y3tcoqK5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-Y3tcoqK5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-Y3tcoqK5.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w-Y3tcoqK5.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aX9-p7K5ILg.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aX9-p7K5ILg.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aX9-p7K5ILg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aX9-p7K5ILg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aX9-p7K5ILg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aX9-p7K5ILg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aX9-p7K5ILg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aX9-p7K5ILg.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aX9-p7K5ILg.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Montserrat" + } + ] + }, + { + "name": "Montserrat Alternates", + "fontFamily": "Montserrat Alternates, sans-serif", + "slug": "montserrat-alternates", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + } + ] + }, + { + "name": "Montserrat Subrayada", + "fontFamily": "Montserrat Subrayada, sans-serif", + "slug": "montserrat-subrayada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montserrat Subrayada" + }, + { + "src": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Montserrat Subrayada" + } + ] + }, + { + "name": "Moo Lah Lah", + "fontFamily": "Moo Lah Lah, system-ui", + "slug": "moo-lah-lah", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/moolahlah/v3/dg4h_p_opKZOA0w1AYcm55wtYQYugjW4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Moo Lah Lah" + } + ] + }, + { + "name": "Moon Dance", + "fontFamily": "Moon Dance, cursive", + "slug": "moon-dance", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/moondance/v3/WBLgrEbUbFlYW9ekmGawS2ToLA.ttf" - }, - { - "family": "Moul", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin" ], - "version": "v25", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/moul/v25/nuF2D__FSo_3E-RYiJCy-00.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/moul/v25/nuF2D__FSo_3I-VSjA.ttf" - }, - { - "family": "Moulpali", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin" ], - "version": "v28", - "lastModified": "2022-04-26", - "files": { - "regular": "http://fonts.gstatic.com/s/moulpali/v28/H4ckBXKMl9HagUWymyY6wr-wg763.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/moulpali/v28/H4ckBXKMl9HagUWymxY7yLs.ttf" - }, - { - "family": "Mountains of Christmas", - "variants": [ "regular", "700" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf", - "regular": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eDNesNA.ttf" - }, - { - "family": "Mouse Memoirs", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/mousememoirs/v14/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mousememoirs/v14/t5tmIRoSNJ-PH0WNNgDYxdSb3TjPqg.ttf" - }, - { - "family": "Mr Bedfort", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/mrbedfort/v22/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/moondance/v3/WBLgrEbUbFlYW9ekmGawe2XiKMiokE4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Moon Dance" + } + ] + }, + { + "name": "Moul", + "fontFamily": "Moul, system-ui", + "slug": "moul", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/moul/v25/nuF2D__FSo_3E-RYiJCy-00.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Moul" + } + ] + }, + { + "name": "Moulpali", + "fontFamily": "Moulpali, system-ui", + "slug": "moulpali", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/moulpali/v28/H4ckBXKMl9HagUWymyY6wr-wg763.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Moulpali" + } + ] + }, + { + "name": "Mountains of Christmas", + "fontFamily": "Mountains of Christmas, system-ui", + "slug": "mountains-of-christmas", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mountains of Christmas" + }, + { + "src": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mountains of Christmas" + } + ] + }, + { + "name": "Mouse Memoirs", + "fontFamily": "Mouse Memoirs, sans-serif", + "slug": "mouse-memoirs", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mousememoirs/v14/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mouse Memoirs" + } + ] + }, + { + "name": "Mr Bedfort", + "fontFamily": "Mr Bedfort, cursive", + "slug": "mr-bedfort", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mrbedfort/v22/MQpR-WCtNZSWAdTMwBicpiu-WQ.ttf" - }, - { - "family": "Mr Dafoe", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrbedfort/v22/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mr Bedfort" + } + ] + }, + { + "name": "Mr Dafoe", + "fontFamily": "Mr Dafoe, cursive", + "slug": "mr-dafoe", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrFiribc.ttf" - }, - { - "family": "Mr De Haviland", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mr Dafoe" + } + ] + }, + { + "name": "Mr De Haviland", + "fontFamily": "Mr De Haviland, cursive", + "slug": "mr-de-haviland", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOg3D60Y.ttf" - }, - { - "family": "Mrs Saint Delafield", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mr De Haviland" + } + ] + }, + { + "name": "Mrs Saint Delafield", + "fontFamily": "Mrs Saint Delafield, cursive", + "slug": "mrs-saint-delafield", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62QK8nKg.ttf" - }, - { - "family": "Mrs Sheppards", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/mrssheppards/v21/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mrs Saint Delafield" + } + ] + }, + { + "name": "Mrs Sheppards", + "fontFamily": "Mrs Sheppards, cursive", + "slug": "mrs-sheppards", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mrssheppards/v21/PN_2Rfm9snC0XUGoEZhb91ig7vn7zg.ttf" - }, - { - "family": "Ms Madi", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1N-DPiI7QAYo.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrssheppards/v21/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mrs Sheppards" + } + ] + }, + { + "name": "Ms Madi", + "fontFamily": "Ms Madi, cursive", + "slug": "ms-madi", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1B-HFjA.ttf" - }, - { - "family": "Mukta", - "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "200": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf", - "300": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf", - "500": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf", - "600": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf", - "700": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf", - "800": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf", - "regular": "http://fonts.gstatic.com/s/mukta/v14/iJWKBXyXfDDVXYnGp32S0H3f.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mukta/v14/iJWKBXyXfDDVXbnHrXk.ttf" - }, - { - "family": "Mukta Mahee", - "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], - "subsets": [ "gurmukhi", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2023-05-02", - "files": { - "200": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf", - "300": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf", - "500": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf", - "600": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf", - "700": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf", - "800": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf", - "regular": "http://fonts.gstatic.com/s/muktamahee/v16/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/muktamahee/v16/XRXQ3IOIi0hcP8iVU67hA9vMUTo.ttf" - }, - { - "family": "Mukta Malar", - "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], - "subsets": [ "latin", "latin-ext", "tamil" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf", - "300": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf", - "500": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf", - "600": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf", - "700": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf", - "800": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf", - "regular": "http://fonts.gstatic.com/s/muktamalar/v12/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/muktamalar/v12/MCoXzAXyz8LOE2FpJMxZqIv5J_A.ttf" - }, - { - "family": "Mukta Vaani", - "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], - "subsets": [ "gujarati", "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf", - "300": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf", - "500": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf", - "600": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf", - "700": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf", - "800": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf", - "regular": "http://fonts.gstatic.com/s/muktavaani/v13/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/muktavaani/v13/3Jn5SD_-ynaxmxnEfVHPIG0EduA.ttf" - }, - { - "family": "Mulish", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNRwaClGrw-PTY.ttf", - "300": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaClGrw-PTY.ttf", - "500": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaClGrw-PTY.ttf", - "600": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaClGrw-PTY.ttf", - "700": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaClGrw-PTY.ttf", - "800": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaClGrw-PTY.ttf", - "900": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexTpWwaClGrw-PTY.ttf", - "regular": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaClGrw-PTY.ttf", - "200italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeOvHp47LTZFwA.ttf", - "300italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSd-OvHp47LTZFwA.ttf", - "italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvHp47LTZFwA.ttf", - "500italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSG-OvHp47LTZFwA.ttf", - "600italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsS9-SvHp47LTZFwA.ttf", - "700italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSzuSvHp47LTZFwA.ttf", - "800italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeSvHp47LTZFwA.ttf", - "900italic": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSgOSvHp47LTZFwA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNR8aGvHg.ttf" - }, - { - "family": "Murecho", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "japanese", - "latin", - "latin-ext" - ], - "version": "v10", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", - "200": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", - "300": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", - "500": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", - "600": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", - "700": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", - "800": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf", - "900": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrC4nWZLCpUOaM6.ttf", - "regular": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5UWYJi4.ttf" - }, - { - "family": "MuseoModerno", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuewajeKlCdo.ttf", - "200": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuewajeKlCdo.ttf", - "300": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuewajeKlCdo.ttf", - "500": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuewajeKlCdo.ttf", - "600": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuewajeKlCdo.ttf", - "700": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuewajeKlCdo.ttf", - "800": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuewajeKlCdo.ttf", - "900": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuewajeKlCdo.ttf", - "regular": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuewajeKlCdo.ttf", - "100italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa4QicCgGdrS3g.ttf", - "200italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0a8QicCgGdrS3g.ttf", - "300italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HD68QicCgGdrS3g.ttf", - "italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa8QicCgGdrS3g.ttf", - "500italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HY68QicCgGdrS3g.ttf", - "600italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54Hj6gQicCgGdrS3g.ttf", - "700italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HtqgQicCgGdrS3g.ttf", - "800italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0agQicCgGdrS3g.ttf", - "900italic": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H-KgQicCgGdrS3g.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEie0QiQ.ttf" - }, - { - "family": "My Soul", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/mysoul/v2/3XFqErcuy945_u6KF_Ulk2nnXf0.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1N-DPiI7QAYo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ms Madi" + } + ] + }, + { + "name": "Mukta", + "fontFamily": "Mukta, sans-serif", + "slug": "mukta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWKBXyXfDDVXYnGp32S0H3f.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mukta" + } + ] + }, + { + "name": "Mukta Mahee", + "fontFamily": "Mukta Mahee, sans-serif", + "slug": "mukta-mahee", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + } + ] + }, + { + "name": "Mukta Malar", + "fontFamily": "Mukta Malar, sans-serif", + "slug": "mukta-malar", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + } + ] + }, + { + "name": "Mukta Vaani", + "fontFamily": "Mukta Vaani, sans-serif", + "slug": "mukta-vaani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + } + ] + }, + { + "name": "Mulish", + "fontFamily": "Mulish, sans-serif", + "slug": "mulish", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNRwaClGrw-PTY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaClGrw-PTY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaClGrw-PTY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaClGrw-PTY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaClGrw-PTY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaClGrw-PTY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaClGrw-PTY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexTpWwaClGrw-PTY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeOvHp47LTZFwA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSd-OvHp47LTZFwA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvHp47LTZFwA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSG-OvHp47LTZFwA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsS9-SvHp47LTZFwA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSzuSvHp47LTZFwA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeSvHp47LTZFwA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSgOSvHp47LTZFwA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Mulish" + } + ] + }, + { + "name": "Murecho", + "fontFamily": "Murecho, sans-serif", + "slug": "murecho", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrC4nWZLCpUOaM6.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Murecho" + } + ] + }, + { + "name": "MuseoModerno", + "fontFamily": "MuseoModerno, system-ui", + "slug": "museomoderno", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuewajeKlCdo.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuewajeKlCdo.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuewajeKlCdo.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuewajeKlCdo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuewajeKlCdo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuewajeKlCdo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuewajeKlCdo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuewajeKlCdo.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuewajeKlCdo.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa4QicCgGdrS3g.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0a8QicCgGdrS3g.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HD68QicCgGdrS3g.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa8QicCgGdrS3g.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HY68QicCgGdrS3g.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54Hj6gQicCgGdrS3g.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HtqgQicCgGdrS3g.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0agQicCgGdrS3g.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H-KgQicCgGdrS3g.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + } + ] + }, + { + "name": "My Soul", + "fontFamily": "My Soul, cursive", + "slug": "my-soul", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mysoul/v2/3XFqErcuy945_u6KJ_Qvlw.ttf" - }, - { - "family": "Mynerve", - "variants": [ "regular" ], - "subsets": [ "greek", "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/mynerve/v2/P5sCzZKPdNjb4jt7xCRuiZ-uydg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mysoul/v2/3XFqErcuy945_u6KF_Ulk2nnXf0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "My Soul" + } + ] + }, + { + "name": "Mynerve", + "fontFamily": "Mynerve, cursive", + "slug": "mynerve", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mynerve/v2/P5sCzZKPdNjb4jt79CVkjQ.ttf" - }, - { - "family": "Mystery Quest", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRLwAvCw.ttf" - }, - { - "family": "NTR", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ntr/v15/RLpzK5Xy0ZjiGGhs5TA4bg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ntr/v15/RLpzK5Xy0ZjSGWJo.ttf" - }, - { - "family": "Nabla", - "variants": [ "regular" ], - "subsets": [ - "cyrillic-ext", - "latin", - "latin-ext", - "math", - "vietnamese" - ], - "version": "v9", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/nabla/v9/j8_D6-LI0Lvpe7Makz5UhJt9C3uqg_X_75gyGS4jAxsNIjrRNRBUFFR_198.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nabla/v9/j8_D6-LI0Lvpe7Makz5UhJt9C3uqg_X_75gyGS4jAxsNIjrRBRFeEA.ttf" - }, - { - "family": "Nanum Brush Script", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v22", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/nanumbrushscript/v22/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mynerve/v2/P5sCzZKPdNjb4jt7xCRuiZ-uydg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mynerve" + } + ] + }, + { + "name": "Mystery Quest", + "fontFamily": "Mystery Quest, system-ui", + "slug": "mystery-quest", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mystery Quest" + } + ] + }, + { + "name": "NTR", + "fontFamily": "NTR, sans-serif", + "slug": "ntr", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ntr/v15/RLpzK5Xy0ZjiGGhs5TA4bg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "NTR" + } + ] + }, + { + "name": "Nabla", + "fontFamily": "Nabla, system-ui", + "slug": "nabla", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nabla/v9/j8_D6-LI0Lvpe7Makz5UhJt9C3uqg_X_75gyGS4jAxsNIjrRNRBUFFR_198.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nabla" + } + ] + }, + { + "name": "Nanum Brush Script", + "fontFamily": "Nanum Brush Script, cursive", + "slug": "nanum-brush-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nanumbrushscript/v22/wXK2E2wfpokopxzthSqPbcR5_gVaxazCj6pv.ttf" - }, - { - "family": "Nanum Gothic", - "variants": [ "regular", "700", "800" ], - "subsets": [ "korean", "latin" ], - "version": "v21", - "lastModified": "2022-09-27", - "files": { - "700": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf", - "800": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf", - "regular": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_3Rfi-oW3hYwmKDpxS7F_D_9jb.ttf" - }, - { - "family": "Nanum Gothic Coding", - "variants": [ "regular", "700" ], - "subsets": [ "korean", "latin" ], - "version": "v19", - "lastModified": "2022-09-27", - "files": { - "700": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf", - "regular": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanumbrushscript/v22/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Brush Script" + } + ] + }, + { + "name": "Nanum Gothic", + "fontFamily": "Nanum Gothic, sans-serif", + "slug": "nanum-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic" + } + ] + }, + { + "name": "Nanum Gothic Coding", + "fontFamily": "Nanum Gothic Coding, monospace", + "slug": "nanum-gothic-coding", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIVdjzHisX_8vv59_xMxtPFW4IXROws-6U7Ug.ttf" - }, - { - "family": "Nanum Myeongjo", - "variants": [ "regular", "700", "800" ], - "subsets": [ "korean", "latin" ], - "version": "v20", - "lastModified": "2022-09-27", - "files": { - "700": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf", - "800": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf", - "regular": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Btx3DZF0dXLMZlywRbVRNhxy2LqcnA.ttf" - }, - { - "family": "Nanum Pen Script", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v19", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/nanumpenscript/v19/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic Coding" + }, + { + "src": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic Coding" + } + ] + }, + { + "name": "Nanum Myeongjo", + "fontFamily": "Nanum Myeongjo, serif", + "slug": "nanum-myeongjo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Myeongjo" + }, + { + "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nanum Myeongjo" + }, + { + "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Nanum Myeongjo" + } + ] + }, + { + "name": "Nanum Pen Script", + "fontFamily": "Nanum Pen Script, cursive", + "slug": "nanum-pen-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nanumpenscript/v19/daaDSSYiLGqEal3MvdA_FOL_3FkN6z_0bA.ttf" - }, - { - "family": "Neonderthaw", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/neonderthaw/v3/Iure6Yx5-oWVZI0r-17AeZZJprVA4XQ0.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanumpenscript/v19/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Pen Script" + } + ] + }, + { + "name": "Neonderthaw", + "fontFamily": "Neonderthaw, cursive", + "slug": "neonderthaw", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/neonderthaw/v3/Iure6Yx5-oWVZI0r-17AeaZIrLE.ttf" - }, - { - "family": "Nerko One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/nerkoone/v16/m8JQjfZSc7OXlB3ZMOjzcJ5BZmqa3A.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/neonderthaw/v3/Iure6Yx5-oWVZI0r-17AeZZJprVA4XQ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Neonderthaw" + } + ] + }, + { + "name": "Nerko One", + "fontFamily": "Nerko One, cursive", + "slug": "nerko-one", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nerkoone/v16/m8JQjfZSc7OXlB3ZMOjDcZRF.ttf" - }, - { - "family": "Neucha", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bvugNsCxVEgA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nerkoone/v16/m8JQjfZSc7OXlB3ZMOjzcJ5BZmqa3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nerko One" + } + ] + }, + { + "name": "Neucha", + "fontFamily": "Neucha, cursive", + "slug": "neucha", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bfuwlo.ttf" - }, - { - "family": "Neuton", - "variants": [ "200", "300", "regular", "italic", "700", "800" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2023-05-02", - "files": { - "200": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf", - "300": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf", - "700": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf", - "800": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf", - "regular": "http://fonts.gstatic.com/s/neuton/v19/UMBTrPtMoH62xUZyyII7civlBw.ttf", - "italic": "http://fonts.gstatic.com/s/neuton/v19/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/neuton/v19/UMBTrPtMoH62xUZCyYg_.ttf" - }, - { - "family": "New Rocker", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJoGIfjQ.ttf" - }, - { - "family": "New Tegomin", - "variants": [ "regular" ], - "subsets": [ "japanese", "latin", "latin-ext" ], - "version": "v10", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/newtegomin/v10/SLXMc1fV7Gd9USdBAfPlqfN0Q3ptkDMN.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/newtegomin/v10/SLXMc1fV7Gd9USdBAfPlqcN1SX4.ttf" - }, - { - "family": "News Cycle", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/newscycle/v23/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf", - "regular": "http://fonts.gstatic.com/s/newscycle/v23/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/newscycle/v23/CSR64z1Qlv-GDxkbKVQ_fOYKSA.ttf" - }, - { - "family": "Newsreader", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-I_ADOxEPjCggA.ttf", - "300": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wJo_ADOxEPjCggA.ttf", - "500": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wSo_ADOxEPjCggA.ttf", - "600": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wpojADOxEPjCggA.ttf", - "700": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wn4jADOxEPjCggA.ttf", - "800": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-IjADOxEPjCggA.ttf", - "regular": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ADOxEPjCggA.ttf", - "200italic": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoT-ZAHDWwgECi.ttf", - "300italic": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMx2T-ZAHDWwgECi.ttf", - "italic": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZAHDWwgECi.ttf", - "500italic": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwaT-ZAHDWwgECi.ttf", - "600italic": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMz2SOZAHDWwgECi.ttf", - "700italic": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMzPSOZAHDWwgECi.ttf", - "800italic": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoSOZAHDWwgECi.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_wDeZA.ttf" - }, - { - "family": "Niconne", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bvugNsCxVEgA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Neucha" + } + ] + }, + { + "name": "Neuton", + "fontFamily": "Neuton, serif", + "slug": "neuton", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBTrPtMoH62xUZyyII7civlBw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Neuton" + } + ] + }, + { + "name": "New Rocker", + "fontFamily": "New Rocker, system-ui", + "slug": "new-rocker", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "New Rocker" + } + ] + }, + { + "name": "New Tegomin", + "fontFamily": "New Tegomin, serif", + "slug": "new-tegomin", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/newtegomin/v10/SLXMc1fV7Gd9USdBAfPlqfN0Q3ptkDMN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "New Tegomin" + } + ] + }, + { + "name": "News Cycle", + "fontFamily": "News Cycle, sans-serif", + "slug": "news-cycle", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/newscycle/v23/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "News Cycle" + }, + { + "src": "http://fonts.gstatic.com/s/newscycle/v23/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "News Cycle" + } + ] + }, + { + "name": "Newsreader", + "fontFamily": "Newsreader, serif", + "slug": "newsreader", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-I_ADOxEPjCggA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wJo_ADOxEPjCggA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ADOxEPjCggA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wSo_ADOxEPjCggA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wpojADOxEPjCggA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wn4jADOxEPjCggA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-IjADOxEPjCggA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoT-ZAHDWwgECi.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMx2T-ZAHDWwgECi.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZAHDWwgECi.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwaT-ZAHDWwgECi.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMz2SOZAHDWwgECi.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMzPSOZAHDWwgECi.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoSOZAHDWwgECi.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Newsreader" + } + ] + }, + { + "name": "Niconne", + "fontFamily": "Niconne, cursive", + "slug": "niconne", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfnQqn3A.ttf" - }, - { - "family": "Niramit", - "variants": [ - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf", - "300": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf", - "500": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf", - "600": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf", - "700": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf", - "200italic": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf", - "300italic": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf", - "regular": "http://fonts.gstatic.com/s/niramit/v10/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf", - "italic": "http://fonts.gstatic.com/s/niramit/v10/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf", - "500italic": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf", - "600italic": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf", - "700italic": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/niramit/v10/I_uuMpWdvgLdNxVLXbValg.ttf" - }, - { - "family": "Nixie One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUYUet3.ttf" - }, - { - "family": "Nobile", - "variants": [ - "regular", - "italic", - "500", - "500italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf", - "700": "http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf", - "regular": "http://fonts.gstatic.com/s/nobile/v17/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf", - "italic": "http://fonts.gstatic.com/s/nobile/v17/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf", - "500italic": "http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf", - "700italic": "http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nobile/v17/m8JTjflSeaOVl1iGX63T.ttf" - }, - { - "family": "Nokora", - "variants": [ "100", "300", "regular", "700", "900" ], - "subsets": [ "khmer", "latin" ], - "version": "v30", - "lastModified": "2022-05-10", - "files": { - "100": "http://fonts.gstatic.com/s/nokora/v30/~CgoKBk5va29yYRhkIAAqBAgBGAE=.ttf", - "300": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRisAiAAKgQIARgB.ttf", - "700": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRi8BSAAKgQIARgB.ttf", - "900": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRiEByAAKgQIARgB.ttf", - "regular": "http://fonts.gstatic.com/s/nokora/v30/~CggKBk5va29yYSAAKgQIARgB.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nokora/v30/~CggKBk5va29yYRABIAA=.ttf" - }, - { - "family": "Norican", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/norican/v14/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Niconne" + } + ] + }, + { + "name": "Niramit", + "fontFamily": "Niramit, sans-serif", + "slug": "niramit", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Niramit" + } + ] + }, + { + "name": "Nixie One", + "fontFamily": "Nixie One, system-ui", + "slug": "nixie-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nixie One" + } + ] + }, + { + "name": "Nobile", + "fontFamily": "Nobile, sans-serif", + "slug": "nobile", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Nobile" + } + ] + }, + { + "name": "Nokora", + "fontFamily": "Nokora, sans-serif", + "slug": "nokora", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CgoKBk5va29yYRhkIAAqBAgBGAE=.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Nokora" + }, + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRisAiAAKgQIARgB.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Nokora" + }, + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CggKBk5va29yYSAAKgQIARgB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nokora" + }, + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRi8BSAAKgQIARgB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nokora" + }, + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRiEByAAKgQIARgB.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Nokora" + } + ] + }, + { + "name": "Norican", + "fontFamily": "Norican, cursive", + "slug": "norican", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/norican/v14/MwQ2bhXp1eSBqjkPKJNbsA.ttf" - }, - { - "family": "Nosifer", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/nosifer/v20/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nosifer/v20/ZGjXol5JTp0g5bxZWCxbUA.ttf" - }, - { - "family": "Notable", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/notable/v14/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notable/v14/gNMEW3N_SIqx-WX9yHIiEA.ttf" - }, - { - "family": "Nothing You Could Do", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/nothingyoucoulddo/v15/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/norican/v14/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Norican" + } + ] + }, + { + "name": "Nosifer", + "fontFamily": "Nosifer, system-ui", + "slug": "nosifer", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nosifer/v20/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nosifer" + } + ] + }, + { + "name": "Notable", + "fontFamily": "Notable, sans-serif", + "slug": "notable", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notable/v14/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Notable" + } + ] + }, + { + "name": "Nothing You Could Do", + "fontFamily": "Nothing You Could Do, cursive", + "slug": "nothing-you-could-do", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nothingyoucoulddo/v15/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb3OInV4.ttf" - }, - { - "family": "Noticia Text", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/noticiatext/v15/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf", - "regular": "http://fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf", - "italic": "http://fonts.gstatic.com/s/noticiatext/v15/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf", - "700italic": "http://fonts.gstatic.com/s/noticiatext/v15/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP12YDtd.ttf" - }, - { - "family": "Noto Color Emoji", - "variants": [ "regular" ], - "subsets": [ "emoji" ], - "version": "v24", - "lastModified": "2022-09-26", - "files": { - "regular": "http://fonts.gstatic.com/s/notocoloremoji/v24/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFab5s79iz64w.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notocoloremoji/v24/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFWb9m6w.ttf" - }, - { - "family": "Noto Emoji", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "emoji" ], - "version": "v39", - "lastModified": "2023-03-21", - "files": { - "300": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob_10jwvS-FGJCMY.ttf", - "500": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-Z0jwvS-FGJCMY.ttf", - "600": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob911TwvS-FGJCMY.ttf", - "700": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob9M1TwvS-FGJCMY.ttf", - "regular": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwvS-FGJCMY.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0gwuQeU.ttf" - }, - { - "family": "Noto Kufi Arabic", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "arabic" ], - "version": "v16", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v3obPnLSmf5yD.ttf", - "200": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v34bPnLSmf5yD.ttf", - "300": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh4x34bPnLSmf5yD.ttf", - "500": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5d34bPnLSmf5yD.ttf", - "600": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6x2IbPnLSmf5yD.ttf", - "700": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6I2IbPnLSmf5yD.ttf", - "800": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v2IbPnLSmf5yD.ttf", - "900": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7G2IbPnLSmf5yD.ttf", - "regular": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v34bPnLSmf5yD.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v37bOlrA.ttf" - }, - { - "family": "Noto Music", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "music" ], - "version": "v17", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notomusic/v17/pe0rMIiSN5pO63htf1sxIteQB9Zra1U.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notomusic/v17/pe0rMIiSN5pO63htf1sxEtaaAw.ttf" - }, - { - "family": "Noto Naskh Arabic", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v33", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwj85krK0z9_Mnuw.ttf", - "600": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwY8lkrK0z9_Mnuw.ttf", - "700": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwWslkrK0z9_Mnuw.ttf", - "regular": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5krK0z9_Mnuw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5Urac3.ttf" - }, - { - "family": "Noto Nastaliq Urdu", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2023-03-21", - "files": { - "500": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qu3-DK2f2-_8mEw.ttf", - "600": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3QgH5DK2f2-_8mEw.ttf", - "700": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qjj5DK2f2-_8mEw.ttf", - "regular": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qt_-DK2f2-_8mEw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qt_-PKyV3w.ttf" - }, - { - "family": "Noto Rashi Hebrew", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "hebrew", "latin", "latin-ext" ], - "version": "v25", - "lastModified": "2023-03-09", - "files": { - "100": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-DkRyq6Nf2pfA.ttf", - "200": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-HkRyq6Nf2pfA.ttf", - "300": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZWeHkRyq6Nf2pfA.ttf", - "500": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZNeHkRyq6Nf2pfA.ttf", - "600": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ2ebkRyq6Nf2pfA.ttf", - "700": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ4ObkRyq6Nf2pfA.ttf", - "800": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-bkRyq6Nf2pfA.ttf", - "900": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZrubkRyq6Nf2pfA.ttf", - "regular": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HkRyq6Nf2pfA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HURiC-.ttf" - }, - { - "family": "Noto Sans", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "devanagari", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v28", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNjhjRFSfiM7HBj.ttf", - "200": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjKhVlY9aA5Wl6PQ.ttf", - "300": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZlY9aA5Wl6PQ.ttf", - "500": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjFhdlY9aA5Wl6PQ.ttf", - "600": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBlY9aA5Wl6PQ.ttf", - "700": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf", - "800": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjQhJlY9aA5Wl6PQ.ttf", - "900": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjZhNlY9aA5Wl6PQ.ttf", - "100italic": "http://fonts.gstatic.com/s/notosans/v28/o-0MIpQlx3QUlC5A4PNr4AwhQ_yu6WBjJLE.ttf", - "200italic": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AyNYtyEx2xqPaif.ttf", - "300italic": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzpYdyEx2xqPaif.ttf", - "regular": "http://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf", - "italic": "http://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf", - "500italic": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AyxYNyEx2xqPaif.ttf", - "600italic": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AydZ9yEx2xqPaif.ttf", - "700italic": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf", - "800italic": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzlZdyEx2xqPaif.ttf", - "900italic": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzBZNyEx2xqPaif.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNr4zRF.ttf" - }, - { - "family": "Noto Sans Adlam", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "adlam", "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufkn0TGnBZLwhuvk.ttf", - "600": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufqXzTGnBZLwhuvk.ttf", - "700": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufpzzTGnBZLwhuvk.ttf", - "regular": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0fGjLYA.ttf" - }, - { - "family": "Noto Sans Adlam Unjoined", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "adlam", "latin", "latin-ext" ], - "version": "v25", - "lastModified": "2023-03-09", - "files": { - "500": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Yd_5PMEe-E3slUg.ttf", - "600": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YTP-PMEe-E3slUg.ttf", - "700": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YQr-PMEe-E3slUg.ttf", - "regular": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35PMEe-E3slUg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35DMAU_A.ttf" - }, - { - "family": "Noto Sans Anatolian Hieroglyphs", - "variants": [ "regular" ], - "subsets": [ "anatolian-hieroglyphs" ], - "version": "v14", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v14/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v14/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWbyfCzg.ttf" - }, - { - "family": "Noto Sans Arabic", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "arabic" ], - "version": "v18", - "lastModified": "2022-06-01", - "files": { - "100": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyG2vu3CBFQLaig.ttf", - "200": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGyvu3CBFQLaig.ttf", - "300": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCflmyvu3CBFQLaig.ttf", - "500": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCf-myvu3CBFQLaig.ttf", - "600": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfFmuvu3CBFQLaig.ttf", - "700": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfL2uvu3CBFQLaig.ttf", - "800": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGuvu3CBFQLaig.ttf", - "900": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfYWuvu3CBFQLaig.ttf", - "regular": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyfunqF.ttf" - }, - { - "family": "Noto Sans Armenian", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "armenian", "latin", "latin-ext" ], - "version": "v42", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxbq0iYy6zF3Eg.ttf", - "200": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxb60iYy6zF3Eg.ttf", - "300": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoqvb60iYy6zF3Eg.ttf", - "500": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorDb60iYy6zF3Eg.ttf", - "600": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoovaK0iYy6zF3Eg.ttf", - "700": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLooWaK0iYy6zF3Eg.ttf", - "800": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxaK0iYy6zF3Eg.ttf", - "900": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopYaK0iYy6zF3Eg.ttf", - "regular": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb50jaSo.ttf" - }, - { - "family": "Noto Sans Avestan", - "variants": [ "regular" ], - "subsets": [ "avestan", "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2023-03-21", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansavestan/v20/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansavestan/v20/bWti7ejKfBziStx7lIzKOLQZKhIJkxu8QgA.ttf" - }, - { - "family": "Noto Sans Balinese", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "balinese", "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov4XdhE5Vd222PPY.ttf", - "600": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov2nahE5Vd222PPY.ttf", - "700": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov1DahE5Vd222PPY.ttf", - "regular": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdtE9fcw.ttf" - }, - { - "family": "Noto Sans Bamum", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "bamum", "latin", "latin-ext" ], - "version": "v26", - "lastModified": "2022-11-09", - "files": { - "500": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEeVO-_gLykxEkxA.ttf", - "600": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEQlJ-_gLykxEkxA.ttf", - "700": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPETBJ-_gLykxEkxA.ttf", - "regular": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddOy_kBzg.ttf" - }, - { - "family": "Noto Sans Bassa Vah", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "bassa-vah", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-11-09", - "files": { - "500": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MoAc6p34gH-GD7.ttf", - "600": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4PEBs6p34gH-GD7.ttf", - "700": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4P9Bs6p34gH-GD7.ttf", - "regular": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAc6p34gH-GD7.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAf6o1Yw.ttf" - }, - { - "family": "Noto Sans Batak", - "variants": [ "regular" ], - "subsets": [ "batak", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-ZdQooXL.ttf" - }, - { - "family": "Noto Sans Bengali", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "bengali", "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolKudCk8izI0lc.ttf", - "200": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglLudCk8izI0lc.ttf", - "300": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmstdLudCk8izI0lc.ttf", - "500": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsrtLudCk8izI0lc.ttf", - "600": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsldMudCk8izI0lc.ttf", - "700": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6Kmsm5MudCk8izI0lc.ttf", - "800": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglMudCk8izI0lc.ttf", - "900": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsiBMudCk8izI0lc.ttf", - "regular": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLidGu9g.ttf" - }, - { - "family": "Noto Sans Bhaiksuki", - "variants": [ "regular" ], - "subsets": [ "bhaiksuki" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhjwrPecQ.ttf" - }, - { - "family": "Noto Sans Brahmi", - "variants": [ "regular" ], - "subsets": [ "brahmi" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansbrahmi/v15/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansbrahmi/v15/vEFK2-VODB8RrNDvZSUmQQIIByV1wtO_Xw.ttf" - }, - { - "family": "Noto Sans Buginese", - "variants": [ "regular" ], - "subsets": [ "buginese", "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansbuginese/v18/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansbuginese/v18/esDM30ldNv-KYGGJpKGk18phe_7Da6_QtPGA.ttf" - }, - { - "family": "Noto Sans Buhid", - "variants": [ "regular" ], - "subsets": [ "buhid", "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansbuhid/v18/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansbuhid/v18/Dxxy8jiXMW75w3OmoDXVWJD7YwzweqFk.ttf" - }, - { - "family": "Noto Sans Canadian Aboriginal", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "canadian-aboriginal", "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-28", - "files": { - "100": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLj_yAsg0q0uhQ.ttf", - "200": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2Ln_yAsg0q0uhQ.ttf", - "300": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigBrn_yAsg0q0uhQ.ttf", - "500": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigarn_yAsg0q0uhQ.ttf", - "600": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzighr7_yAsg0q0uhQ.ttf", - "700": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigv77_yAsg0q0uhQ.ttf", - "800": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2L7_yAsg0q0uhQ.ttf", - "900": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig8b7_yAsg0q0uhQ.ttf", - "regular": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLnPyQEk.ttf" - }, - { - "family": "Noto Sans Carian", - "variants": [ "regular" ], - "subsets": [ "carian" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanscarian/v15/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanscarian/v15/LDIpaoiONgYwA9Yc6f0gUILeMIOgg7sR8w.ttf" - }, - { - "family": "Noto Sans Caucasian Albanian", - "variants": [ "regular" ], - "subsets": [ "caucasian-albanian" ], - "version": "v16", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXnYHspQ.ttf" - }, - { - "family": "Noto Sans Chakma", - "variants": [ "regular" ], - "subsets": [ "chakma", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi0JnZRg.ttf" - }, - { - "family": "Noto Sans Cham", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "cham", "latin", "latin-ext" ], - "version": "v27", - "lastModified": "2023-03-09", - "files": { - "100": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcER0cv7GykboaLg.ttf", - "200": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRwcv7GykboaLg.ttf", - "300": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcTxwcv7GykboaLg.ttf", - "500": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcIxwcv7GykboaLg.ttf", - "600": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfczxscv7GykboaLg.ttf", - "700": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfc9hscv7GykboaLg.ttf", - "800": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRscv7GykboaLg.ttf", - "900": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcuBscv7GykboaLg.ttf", - "regular": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwsvru2.ttf" - }, - { - "family": "Noto Sans Cherokee", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "cherokee", "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-28", - "files": { - "100": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5ODkm5rAffjl0.ttf", - "200": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5PDkm5rAffjl0.ttf", - "300": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWnBPDkm5rAffjl0.ttf", - "500": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWhxPDkm5rAffjl0.ttf", - "600": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWvBIDkm5rAffjl0.ttf", - "700": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWslIDkm5rAffjl0.ttf", - "800": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5IDkm5rAffjl0.ttf", - "900": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWodIDkm5rAffjl0.ttf", - "regular": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PPkizqA.ttf" - }, - { - "family": "Noto Sans Coptic", - "variants": [ "regular" ], - "subsets": [ "coptic", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-28", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd38q1UA.ttf" - }, - { - "family": "Noto Sans Cuneiform", - "variants": [ "regular" ], - "subsets": [ "cuneiform" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanscuneiform/v15/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanscuneiform/v15/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWsb5DkQ.ttf" - }, - { - "family": "Noto Sans Cypriot", - "variants": [ "regular" ], - "subsets": [ "cypriot" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cyItIZc.ttf" - }, - { - "family": "Noto Sans Deseret", - "variants": [ "regular" ], - "subsets": [ "deseret" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansdeseret/v15/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansdeseret/v15/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Wq8bHY.ttf" - }, - { - "family": "Noto Sans Devanagari", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v25", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQky-AzoFoW4Ow.ttf", - "200": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQly-AzoFoW4Ow.ttf", - "300": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlSoly-AzoFoW4Ow.ttf", - "500": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlUYly-AzoFoW4Ow.ttf", - "600": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Alaoiy-AzoFoW4Ow.ttf", - "700": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlZMiy-AzoFoW4Ow.ttf", - "800": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQiy-AzoFoW4Ow.ttf", - "900": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Ald0iy-AzoFoW4Ow.ttf", - "regular": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-AzoFoW4Ow.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQl--E5pA.ttf" - }, - { - "family": "Noto Sans Display", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cLVTGQ2iHrvWM.ttf", - "200": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cKVTGQ2iHrvWM.ttf", - "300": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_ykKVTGQ2iHrvWM.ttf", - "500": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_0UKVTGQ2iHrvWM.ttf", - "600": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_6kNVTGQ2iHrvWM.ttf", - "700": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_5ANVTGQ2iHrvWM.ttf", - "800": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cNVTGQ2iHrvWM.ttf", - "900": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_94NVTGQ2iHrvWM.ttf", - "regular": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKVTGQ2iHrvWM.ttf", - "100italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXOa3gPurWM9uQ.ttf", - "200italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXKa3gPurWM9uQ.ttf", - "300italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9J43Ka3gPurWM9uQ.ttf", - "italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXKa3gPurWM9uQ.ttf", - "500italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9Jj3Ka3gPurWM9uQ.ttf", - "600italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JY3Wa3gPurWM9uQ.ttf", - "700italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JWnWa3gPurWM9uQ.ttf", - "800italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXWa3gPurWM9uQ.ttf", - "900italic": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JFHWa3gPurWM9uQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKZTCa3g.ttf" - }, - { - "family": "Noto Sans Duployan", - "variants": [ "regular" ], - "subsets": [ "duployan" ], - "version": "v16", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansduployan/v16/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansduployan/v16/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvbF8gj.ttf" - }, - { - "family": "Noto Sans Egyptian Hieroglyphs", - "variants": [ "regular" ], - "subsets": [ "egyptian-hieroglyphs" ], - "version": "v26", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v26/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v26/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYintSFi4.ttf" - }, - { - "family": "Noto Sans Elbasan", - "variants": [ "regular" ], - "subsets": [ "elbasan" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanselbasan/v15/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanselbasan/v15/-F6rfiZqLzI2JPCgQBnw400qp1trvEdkp-o.ttf" - }, - { - "family": "Noto Sans Elymaic", - "variants": [ "regular" ], - "subsets": [ "elymaic" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD7AiUuA.ttf" - }, - { - "family": "Noto Sans Ethiopic", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "ethiopic", "latin", "latin-ext" ], - "version": "v46", - "lastModified": "2023-03-09", - "files": { - "100": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OKqDjwmfeaY9u.ttf", - "200": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OK6DjwmfeaY9u.ttf", - "300": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T34QK6DjwmfeaY9u.ttf", - "500": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T358K6DjwmfeaY9u.ttf", - "600": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36QLKDjwmfeaY9u.ttf", - "700": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36pLKDjwmfeaY9u.ttf", - "800": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OLKDjwmfeaY9u.ttf", - "900": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37nLKDjwmfeaY9u.ttf", - "regular": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OK6DjwmfeaY9u.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OK5DiyGM.ttf" - }, - { - "family": "Noto Sans Georgian", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "georgian", "latin", "latin-ext" ], - "version": "v42", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzVj-f5WK0OQV.ttf", - "200": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptnzFj-f5WK0OQV.ttf", - "300": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpu5zFj-f5WK0OQV.ttf", - "500": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvVzFj-f5WK0OQV.ttf", - "600": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdps5y1j-f5WK0OQV.ttf", - "700": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpsAy1j-f5WK0OQV.ttf", - "800": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptny1j-f5WK0OQV.ttf", - "900": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptOy1j-f5WK0OQV.ttf", - "regular": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzGj_dZE.ttf" - }, - { - "family": "Noto Sans Glagolitic", - "variants": [ "regular" ], - "subsets": [ "glagolitic" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansglagolitic/v15/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansglagolitic/v15/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4HRL6g0.ttf" - }, - { - "family": "Noto Sans Gothic", - "variants": [ "regular" ], - "subsets": [ "gothic" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansgothic/v15/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansgothic/v15/TuGKUUVzXI5FBtUq5a8bj6wRbzxTJMTy1g.ttf" - }, - { - "family": "Noto Sans Grantha", - "variants": [ "regular" ], - "subsets": [ "grantha", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-28", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-o8dH-8.ttf" - }, - { - "family": "Noto Sans Gujarati", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "gujarati", "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFgPM_OdiEH0s.ttf", - "200": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpFwPM_OdiEH0s.ttf", - "300": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_z3FwPM_OdiEH0s.ttf", - "500": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ybFwPM_OdiEH0s.ttf", - "600": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_x3EAPM_OdiEH0s.ttf", - "700": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_xOEAPM_OdiEH0s.ttf", - "800": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpEAPM_OdiEH0s.ttf", - "900": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wAEAPM_OdiEH0s.ttf", - "regular": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPM_OdiEH0s.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFzPN9uM.ttf" - }, - { - "family": "Noto Sans Gunjala Gondi", - "variants": [ "regular" ], - "subsets": [ "gunjala-gondi" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansgunjalagondi/v15/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansgunjalagondi/v15/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5icUV4c.ttf" - }, - { - "family": "Noto Sans Gurmukhi", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "gurmukhi", "latin", "latin-ext" ], - "version": "v26", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oe3bxZ_trdp7h.ttf", - "200": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OenbxZ_trdp7h.ttf", - "300": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG0QenbxZ_trdp7h.ttf", - "500": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG18enbxZ_trdp7h.ttf", - "600": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2QfXbxZ_trdp7h.ttf", - "700": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2pfXbxZ_trdp7h.ttf", - "800": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OfXbxZ_trdp7h.ttf", - "900": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3nfXbxZ_trdp7h.ttf", - "regular": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oekbwbf8.ttf" - }, - { - "family": "Noto Sans HK", - "variants": [ "100", "300", "regular", "500", "700", "900" ], - "subsets": [ "chinese-hongkong", "latin" ], - "version": "v21", - "lastModified": "2022-09-27", - "files": { - "100": "http://fonts.gstatic.com/s/notosanshk/v21/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf", - "300": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf", - "500": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf", - "700": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf", - "900": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf", - "regular": "http://fonts.gstatic.com/s/notosanshk/v21/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanshk/v21/nKKQ-GM_FYFRJvXzVXaAPe9RNXp1.otf" - }, - { - "family": "Noto Sans Hanifi Rohingya", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "hanifi-rohingya", "latin", "latin-ext" ], - "version": "v26", - "lastModified": "2023-03-01", - "files": { - "500": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYq4j6vvcudK8rN.ttf", - "600": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIbG5T6vvcudK8rN.ttf", - "700": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIb_5T6vvcudK8rN.ttf", - "regular": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4j6vvcudK8rN.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4g6ut88.ttf" - }, - { - "family": "Noto Sans Hanunoo", - "variants": [ "regular" ], - "subsets": [ "hanunoo", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanshanunoo/v17/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanshanunoo/v17/f0Xs0fCv8dxkDWlZSoXOj6CphMloFvEtGJw.ttf" - }, - { - "family": "Noto Sans Hatran", - "variants": [ "regular" ], - "subsets": [ "hatran" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanshatran/v15/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanshatran/v15/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_qM49qw.ttf" - }, - { - "family": "Noto Sans Hebrew", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "hebrew", "latin", "latin-ext" ], - "version": "v43", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4utoiJltutR2g.ttf", - "200": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX94qtoiJltutR2g.ttf", - "300": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXKYqtoiJltutR2g.ttf", - "500": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXRYqtoiJltutR2g.ttf", - "600": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXqY2toiJltutR2g.ttf", - "700": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXkI2toiJltutR2g.ttf", - "800": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX942toiJltutR2g.ttf", - "900": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX3o2toiJltutR2g.ttf", - "regular": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qdoyhh.ttf" - }, - { - "family": "Noto Sans Imperial Aramaic", - "variants": [ "regular" ], - "subsets": [ "imperial-aramaic" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansimperialaramaic/v15/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansimperialaramaic/v15/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrudnnXI.ttf" - }, - { - "family": "Noto Sans Indic Siyaq Numbers", - "variants": [ "regular" ], - "subsets": [ "indic-siyaq-numbers" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v15/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v15/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKy2XNu4.ttf" - }, - { - "family": "Noto Sans Inscriptional Pahlavi", - "variants": [ "regular" ], - "subsets": [ "inscriptional-pahlavi" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v15/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v15/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCZtufPA.ttf" - }, - { - "family": "Noto Sans Inscriptional Parthian", - "variants": [ "regular" ], - "subsets": [ "inscriptional-parthian" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansinscriptionalparthian/v15/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansinscriptionalparthian/v15/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2ykmBI0Dc.ttf" - }, - { - "family": "Noto Sans JP", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ - "cyrillic", - "japanese", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v52", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEi75vY0rw-oME.ttf", - "200": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEj75vY0rw-oME.ttf", - "300": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFE8j75vY0rw-oME.ttf", - "500": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj75vY0rw-oME.ttf", - "600": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFM8k75vY0rw-oME.ttf", - "700": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk75vY0rw-oME.ttf", - "800": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEk75vY0rw-oME.ttf", - "900": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFLgk75vY0rw-oME.ttf", - "regular": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj75vY0rw-oME.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj35rS1g.ttf" - }, - { - "family": "Noto Sans Javanese", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "javanese", "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2023-03-09", - "files": { - "500": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxKvkFFliZYWj4O8.ttf", - "600": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxEfjFFliZYWj4O8.ttf", - "700": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxH7jFFliZYWj4O8.ttf", - "regular": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFliZYWj4O8.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkJFhoYQ.ttf" - }, - { - "family": "Noto Sans KR", - "variants": [ "100", "300", "regular", "500", "700", "900" ], - "subsets": [ "korean", "latin" ], - "version": "v27", - "lastModified": "2022-09-27", - "files": { - "100": "http://fonts.gstatic.com/s/notosanskr/v27/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf", - "300": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf", - "500": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf", - "700": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf", - "900": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf", - "regular": "http://fonts.gstatic.com/s/notosanskr/v27/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanskr/v27/PbykFmXiEBPT4ITbgNA5CgmG137u.otf" - }, - { - "family": "Noto Sans Kaithi", - "variants": [ "regular" ], - "subsets": [ "kaithi" ], - "version": "v16", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanskaithi/v16/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanskaithi/v16/buEtppS9f8_vkXadMBJJu0tWjLwjciwAcg.ttf" - }, - { - "family": "Noto Sans Kannada", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "kannada", "latin", "latin-ext" ], - "version": "v26", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvMzSIMLsPKrkY.ttf", - "200": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvNzSIMLsPKrkY.ttf", - "300": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrGXNzSIMLsPKrkY.ttf", - "500": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrAnNzSIMLsPKrkY.ttf", - "600": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrOXKzSIMLsPKrkY.ttf", - "700": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrNzKzSIMLsPKrkY.ttf", - "800": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvKzSIMLsPKrkY.ttf", - "900": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrJLKzSIMLsPKrkY.ttf", - "regular": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvN_SMGKg.ttf" - }, - { - "family": "Noto Sans Kayah Li", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "kayah-li", "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-11-09", - "files": { - "500": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WBU3CZH4EXLuKVM.ttf", - "600": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WPkwCZH4EXLuKVM.ttf", - "700": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WMAwCZH4EXLuKVM.ttf", - "regular": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3OZDyFQ.ttf" - }, - { - "family": "Noto Sans Kharoshthi", - "variants": [ "regular" ], - "subsets": [ "kharoshthi", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanskharoshthi/v16/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanskharoshthi/v16/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE6z5plg.ttf" - }, - { - "family": "Noto Sans Khmer", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "khmer", "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAZz4kAbrddiA.ttf", - "200": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNAJz4kAbrddiA.ttf", - "300": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYvTAJz4kAbrddiA.ttf", - "500": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYu_AJz4kAbrddiA.ttf", - "600": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtTB5z4kAbrddiA.ttf", - "700": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtqB5z4kAbrddiA.ttf", - "800": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNB5z4kAbrddiA.ttf", - "900": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYskB5z4kAbrddiA.ttf", - "regular": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAKz5mgI.ttf" - }, - { - "family": "Noto Sans Khojki", - "variants": [ "regular" ], - "subsets": [ "khojki", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanskhojki/v16/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanskhojki/v16/-nFnOHM29Oofr2wohFbTuPPKVWpmG_Zx1w.ttf" - }, - { - "family": "Noto Sans Khudawadi", - "variants": [ "regular" ], - "subsets": [ "khudawadi" ], - "version": "v16", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanskhudawadi/v16/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanskhudawadi/v16/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHEjVtUQ.ttf" - }, - { - "family": "Noto Sans Lao", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "lao", "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccfdf5MK3riB2w.ttf", - "200": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cbdf5MK3riB2w.ttf", - "300": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4L8bdf5MK3riB2w.ttf", - "500": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4Q8bdf5MK3riB2w.ttf", - "600": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4r8Hdf5MK3riB2w.ttf", - "700": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4lsHdf5MK3riB2w.ttf", - "800": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cHdf5MK3riB2w.ttf", - "900": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt42MHdf5MK3riB2w.ttf", - "regular": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbtfpkO.ttf" - }, - { - "family": "Noto Sans Lao Looped", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "lao", "latin", "latin-ext" ], - "version": "v5", - "lastModified": "2023-03-09", - "files": { - "100": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr2M-Zw5V_T71k.ttf", - "200": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHr3M-Zw5V_T71k.ttf", - "300": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomKT3M-Zw5V_T71k.ttf", - "500": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomMj3M-Zw5V_T71k.ttf", - "600": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomCTwM-Zw5V_T71k.ttf", - "700": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomB3wM-Zw5V_T71k.ttf", - "800": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHrwM-Zw5V_T71k.ttf", - "900": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomFPwM-Zw5V_T71k.ttf", - "regular": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr3M-Zw5V_T71k.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr3A-d64Q.ttf" - }, - { - "family": "Noto Sans Lepcha", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "lepcha" ], - "version": "v16", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanslepcha/v16/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanslepcha/v16/0QI7MWlB_JWgA166SKhu05TekNS36ANmsg.ttf" - }, - { - "family": "Noto Sans Limbu", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "limbu" ], - "version": "v22", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVT0ctz.ttf" - }, - { - "family": "Noto Sans Linear A", - "variants": [ "regular" ], - "subsets": [ "linear-a" ], - "version": "v16", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanslineara/v16/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanslineara/v16/oPWS_l16kP4jCuhpgEGmwJOiA18FZj2Gz2vU.ttf" - }, - { - "family": "Noto Sans Linear B", - "variants": [ "regular" ], - "subsets": [ "linear-b" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanslinearb/v15/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanslinearb/v15/HhyJU4wt9vSgfHoORYOiXOckKNB737Il3RMB.ttf" - }, - { - "family": "Noto Sans Lisu", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "lisu" ], - "version": "v25", - "lastModified": "2023-03-09", - "files": { - "500": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP61wt29IlxkVdig.ttf", - "600": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPB1st29IlxkVdig.ttf", - "700": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPPlst29IlxkVdig.ttf", - "regular": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwd2tgh.ttf" - }, - { - "family": "Noto Sans Lycian", - "variants": [ "regular" ], - "subsets": [ "lycian" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA1_jQDA.ttf" - }, - { - "family": "Noto Sans Lydian", - "variants": [ "regular" ], - "subsets": [ "lydian" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanslydian/v15/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanslydian/v15/c4m71mVzGN7s8FmIukZJ1v4ZlcPRSULdNg.ttf" - }, - { - "family": "Noto Sans Mahajani", - "variants": [ "regular" ], - "subsets": [ "mahajani" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansmahajani/v15/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmahajani/v15/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD51hsoV.ttf" - }, - { - "family": "Noto Sans Malayalam", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "malayalam" ], - "version": "v26", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuH9BFzEr6HxEA.ttf", - "200": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuD9BFzEr6HxEA.ttf", - "300": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_GOD9BFzEr6HxEA.ttf", - "500": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_dOD9BFzEr6HxEA.ttf", - "600": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_mOf9BFzEr6HxEA.ttf", - "700": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_oef9BFzEr6HxEA.ttf", - "800": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuf9BFzEr6HxEA.ttf", - "900": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_7-f9BFzEr6HxEA.ttf", - "regular": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuDNBVbA.ttf" - }, - { - "family": "Noto Sans Mandaic", - "variants": [ "regular" ], - "subsets": [ "mandaic" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansmandaic/v15/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmandaic/v15/cIfnMbdWt1w_HgCcilqhKQBo_OsMI6_B9Ac.ttf" - }, - { - "family": "Noto Sans Manichaean", - "variants": [ "regular" ], - "subsets": [ "manichaean" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansmanichaean/v15/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmanichaean/v15/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfenqDPz8.ttf" - }, - { - "family": "Noto Sans Marchen", - "variants": [ "regular" ], - "subsets": [ "marchen" ], - "version": "v17", - "lastModified": "2022-11-02", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansmarchen/v17/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmarchen/v17/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMEhOmao.ttf" - }, - { - "family": "Noto Sans Masaram Gondi", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "masaram-gondi" ], - "version": "v17", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPntGf5xY.ttf" - }, - { - "family": "Noto Sans Math", - "variants": [ "regular" ], - "subsets": [ "math" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UEkH81k.ttf" - }, - { - "family": "Noto Sans Mayan Numerals", - "variants": [ "regular" ], - "subsets": [ "mayan-numerals" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansmayannumerals/v15/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmayannumerals/v15/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIi06sAs.ttf" - }, - { - "family": "Noto Sans Medefaidrin", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "medefaidrin" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmHjWlT318e5A3rw.ttf", - "600": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmJTRlT318e5A3rw.ttf", - "700": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmK3RlT318e5A3rw.ttf", - "regular": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWpTz_9Q.ttf" - }, - { - "family": "Noto Sans Meetei Mayek", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "meetei-mayek" ], - "version": "v14", - "lastModified": "2022-09-28", - "files": { - "100": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ__TW5PgeFYVa.ttf", - "200": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ_vTW5PgeFYVa.ttf", - "300": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1SX_vTW5PgeFYVa.ttf", - "500": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1T7_vTW5PgeFYVa.ttf", - "600": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1QX-fTW5PgeFYVa.ttf", - "700": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Qu-fTW5PgeFYVa.ttf", - "800": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ-fTW5PgeFYVa.ttf", - "900": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Rg-fTW5PgeFYVa.ttf", - "regular": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_sTX7vw.ttf" - }, - { - "family": "Noto Sans Mende Kikakui", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "mende-kikakui" ], - "version": "v28", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansmendekikakui/v28/11hRGoLHz17aKjQCWj-JHcLvu2Q5zZrnkbNCLUx_aDJLAHer.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmendekikakui/v28/11hRGoLHz17aKjQCWj-JHcLvu2Q5zZrnkbNCLXx-YjY.ttf" - }, - { - "family": "Noto Sans Meroitic", - "variants": [ "regular" ], - "subsets": [ "meroitic" ], - "version": "v16", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansmeroitic/v16/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmeroitic/v16/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UzgTJX.ttf" - }, - { - "family": "Noto Sans Miao", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "miao" ], - "version": "v17", - "lastModified": "2022-09-28", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZXjhW4E.ttf" - }, - { - "family": "Noto Sans Modi", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "modi" ], - "version": "v20", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansmodi/v20/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmodi/v20/pe03MIySN5pO62Z5YkFyT7jeas5rU1Q.ttf" - }, - { - "family": "Noto Sans Mongolian", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "mongolian" ], - "version": "v17", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrTo9Loq7w.ttf" - }, - { - "family": "Noto Sans Mono", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v26", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNI49rXVEQQL8Y.ttf", - "200": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNJ49rXVEQQL8Y.ttf", - "300": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_A1J49rXVEQQL8Y.ttf", - "500": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_GFJ49rXVEQQL8Y.ttf", - "600": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_I1O49rXVEQQL8Y.ttf", - "700": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_LRO49rXVEQQL8Y.ttf", - "800": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNO49rXVEQQL8Y.ttf", - "900": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_PpO49rXVEQQL8Y.ttf", - "regular": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49rXVEQQL8Y.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nothingyoucoulddo/v15/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nothing You Could Do" + } + ] + }, + { + "name": "Noticia Text", + "fontFamily": "Noticia Text, serif", + "slug": "noticia-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noticia Text" + }, + { + "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noticia Text" + }, + { + "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noticia Text" + }, + { + "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noticia Text" + } + ] + }, + { + "name": "Noto Color Emoji", + "fontFamily": "Noto Color Emoji, sans-serif", + "slug": "noto-color-emoji", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notocoloremoji/v24/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFab5s79iz64w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Color Emoji" + } + ] + }, + { + "name": "Noto Emoji", + "fontFamily": "Noto Emoji, sans-serif", + "slug": "noto-emoji", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob_10jwvS-FGJCMY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + }, + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwvS-FGJCMY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + }, + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-Z0jwvS-FGJCMY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + }, + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob911TwvS-FGJCMY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + }, + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob9M1TwvS-FGJCMY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + } + ] + }, + { + "name": "Noto Kufi Arabic", + "fontFamily": "Noto Kufi Arabic, sans-serif", + "slug": "noto-kufi-arabic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v3obPnLSmf5yD.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v34bPnLSmf5yD.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh4x34bPnLSmf5yD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v34bPnLSmf5yD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5d34bPnLSmf5yD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6x2IbPnLSmf5yD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6I2IbPnLSmf5yD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v2IbPnLSmf5yD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7G2IbPnLSmf5yD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + } + ] + }, + { + "name": "Noto Music", + "fontFamily": "Noto Music, sans-serif", + "slug": "noto-music", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notomusic/v17/pe0rMIiSN5pO63htf1sxIteQB9Zra1U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Music" + } + ] + }, + { + "name": "Noto Naskh Arabic", + "fontFamily": "Noto Naskh Arabic, serif", + "slug": "noto-naskh-arabic", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5krK0z9_Mnuw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Naskh Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwj85krK0z9_Mnuw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Naskh Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwY8lkrK0z9_Mnuw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Naskh Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwWslkrK0z9_Mnuw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Naskh Arabic" + } + ] + }, + { + "name": "Noto Nastaliq Urdu", + "fontFamily": "Noto Nastaliq Urdu, serif", + "slug": "noto-nastaliq-urdu", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qt_-DK2f2-_8mEw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Nastaliq Urdu" + }, + { + "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qu3-DK2f2-_8mEw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Nastaliq Urdu" + }, + { + "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3QgH5DK2f2-_8mEw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Nastaliq Urdu" + }, + { + "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qjj5DK2f2-_8mEw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Nastaliq Urdu" + } + ] + }, + { + "name": "Noto Rashi Hebrew", + "fontFamily": "Noto Rashi Hebrew, serif", + "slug": "noto-rashi-hebrew", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-DkRyq6Nf2pfA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-HkRyq6Nf2pfA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZWeHkRyq6Nf2pfA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HkRyq6Nf2pfA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZNeHkRyq6Nf2pfA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ2ebkRyq6Nf2pfA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ4ObkRyq6Nf2pfA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-bkRyq6Nf2pfA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZrubkRyq6Nf2pfA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + } + ] + }, + { + "name": "Noto Sans", + "fontFamily": "Noto Sans, sans-serif", + "slug": "noto-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNjhjRFSfiM7HBj.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0MIpQlx3QUlC5A4PNr4AwhQ_yu6WBjJLE.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjKhVlY9aA5Wl6PQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AyNYtyEx2xqPaif.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZlY9aA5Wl6PQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzpYdyEx2xqPaif.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjFhdlY9aA5Wl6PQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AyxYNyEx2xqPaif.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBlY9aA5Wl6PQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AydZ9yEx2xqPaif.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjQhJlY9aA5Wl6PQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzlZdyEx2xqPaif.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjZhNlY9aA5Wl6PQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzBZNyEx2xqPaif.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + } + ] + }, + { + "name": "Noto Sans Adlam", + "fontFamily": "Noto Sans Adlam, sans-serif", + "slug": "noto-sans-adlam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufkn0TGnBZLwhuvk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufqXzTGnBZLwhuvk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufpzzTGnBZLwhuvk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam" + } + ] + }, + { + "name": "Noto Sans Adlam Unjoined", + "fontFamily": "Noto Sans Adlam Unjoined, sans-serif", + "slug": "noto-sans-adlam-unjoined", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35PMEe-E3slUg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam Unjoined" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Yd_5PMEe-E3slUg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam Unjoined" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YTP-PMEe-E3slUg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam Unjoined" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YQr-PMEe-E3slUg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam Unjoined" + } + ] + }, + { + "name": "Noto Sans Anatolian Hieroglyphs", + "fontFamily": "Noto Sans Anatolian Hieroglyphs, sans-serif", + "slug": "noto-sans-anatolian-hieroglyphs", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v14/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Anatolian Hieroglyphs" + } + ] + }, + { + "name": "Noto Sans Arabic", + "fontFamily": "Noto Sans Arabic, sans-serif", + "slug": "noto-sans-arabic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyG2vu3CBFQLaig.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGyvu3CBFQLaig.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCflmyvu3CBFQLaig.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCf-myvu3CBFQLaig.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfFmuvu3CBFQLaig.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfL2uvu3CBFQLaig.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGuvu3CBFQLaig.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfYWuvu3CBFQLaig.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + } + ] + }, + { + "name": "Noto Sans Armenian", + "fontFamily": "Noto Sans Armenian, sans-serif", + "slug": "noto-sans-armenian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxbq0iYy6zF3Eg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxb60iYy6zF3Eg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoqvb60iYy6zF3Eg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorDb60iYy6zF3Eg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoovaK0iYy6zF3Eg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLooWaK0iYy6zF3Eg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxaK0iYy6zF3Eg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopYaK0iYy6zF3Eg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + } + ] + }, + { + "name": "Noto Sans Avestan", + "fontFamily": "Noto Sans Avestan, sans-serif", + "slug": "noto-sans-avestan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansavestan/v20/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Avestan" + } + ] + }, + { + "name": "Noto Sans Balinese", + "fontFamily": "Noto Sans Balinese, sans-serif", + "slug": "noto-sans-balinese", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Balinese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov4XdhE5Vd222PPY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Balinese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov2nahE5Vd222PPY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Balinese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov1DahE5Vd222PPY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Balinese" + } + ] + }, + { + "name": "Noto Sans Bamum", + "fontFamily": "Noto Sans Bamum, sans-serif", + "slug": "noto-sans-bamum", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bamum" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEeVO-_gLykxEkxA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bamum" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEQlJ-_gLykxEkxA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bamum" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPETBJ-_gLykxEkxA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bamum" + } + ] + }, + { + "name": "Noto Sans Bassa Vah", + "fontFamily": "Noto Sans Bassa Vah, sans-serif", + "slug": "noto-sans-bassa-vah", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAc6p34gH-GD7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bassa Vah" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MoAc6p34gH-GD7.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bassa Vah" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4PEBs6p34gH-GD7.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bassa Vah" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4P9Bs6p34gH-GD7.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bassa Vah" + } + ] + }, + { + "name": "Noto Sans Batak", + "fontFamily": "Noto Sans Batak, sans-serif", + "slug": "noto-sans-batak", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Batak" + } + ] + }, + { + "name": "Noto Sans Bengali", + "fontFamily": "Noto Sans Bengali, sans-serif", + "slug": "noto-sans-bengali", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolKudCk8izI0lc.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglLudCk8izI0lc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmstdLudCk8izI0lc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsrtLudCk8izI0lc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsldMudCk8izI0lc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6Kmsm5MudCk8izI0lc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglMudCk8izI0lc.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsiBMudCk8izI0lc.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + } + ] + }, + { + "name": "Noto Sans Bhaiksuki", + "fontFamily": "Noto Sans Bhaiksuki, sans-serif", + "slug": "noto-sans-bhaiksuki", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bhaiksuki" + } + ] + }, + { + "name": "Noto Sans Brahmi", + "fontFamily": "Noto Sans Brahmi, sans-serif", + "slug": "noto-sans-brahmi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbrahmi/v15/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Brahmi" + } + ] + }, + { + "name": "Noto Sans Buginese", + "fontFamily": "Noto Sans Buginese, sans-serif", + "slug": "noto-sans-buginese", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbuginese/v18/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Buginese" + } + ] + }, + { + "name": "Noto Sans Buhid", + "fontFamily": "Noto Sans Buhid, sans-serif", + "slug": "noto-sans-buhid", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbuhid/v18/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Buhid" + } + ] + }, + { + "name": "Noto Sans Canadian Aboriginal", + "fontFamily": "Noto Sans Canadian Aboriginal, sans-serif", + "slug": "noto-sans-canadian-aboriginal", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLj_yAsg0q0uhQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2Ln_yAsg0q0uhQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigBrn_yAsg0q0uhQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigarn_yAsg0q0uhQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzighr7_yAsg0q0uhQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigv77_yAsg0q0uhQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2L7_yAsg0q0uhQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig8b7_yAsg0q0uhQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + } + ] + }, + { + "name": "Noto Sans Carian", + "fontFamily": "Noto Sans Carian, sans-serif", + "slug": "noto-sans-carian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscarian/v15/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Carian" + } + ] + }, + { + "name": "Noto Sans Caucasian Albanian", + "fontFamily": "Noto Sans Caucasian Albanian, sans-serif", + "slug": "noto-sans-caucasian-albanian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Caucasian Albanian" + } + ] + }, + { + "name": "Noto Sans Chakma", + "fontFamily": "Noto Sans Chakma, sans-serif", + "slug": "noto-sans-chakma", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Chakma" + } + ] + }, + { + "name": "Noto Sans Cham", + "fontFamily": "Noto Sans Cham, sans-serif", + "slug": "noto-sans-cham", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcER0cv7GykboaLg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRwcv7GykboaLg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcTxwcv7GykboaLg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcIxwcv7GykboaLg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfczxscv7GykboaLg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfc9hscv7GykboaLg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRscv7GykboaLg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcuBscv7GykboaLg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + } + ] + }, + { + "name": "Noto Sans Cherokee", + "fontFamily": "Noto Sans Cherokee, sans-serif", + "slug": "noto-sans-cherokee", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5ODkm5rAffjl0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5PDkm5rAffjl0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWnBPDkm5rAffjl0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWhxPDkm5rAffjl0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWvBIDkm5rAffjl0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWslIDkm5rAffjl0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5IDkm5rAffjl0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWodIDkm5rAffjl0.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + } + ] + }, + { + "name": "Noto Sans Coptic", + "fontFamily": "Noto Sans Coptic, sans-serif", + "slug": "noto-sans-coptic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Coptic" + } + ] + }, + { + "name": "Noto Sans Cuneiform", + "fontFamily": "Noto Sans Cuneiform, sans-serif", + "slug": "noto-sans-cuneiform", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscuneiform/v15/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cuneiform" + } + ] + }, + { + "name": "Noto Sans Cypriot", + "fontFamily": "Noto Sans Cypriot, sans-serif", + "slug": "noto-sans-cypriot", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cypriot" + } + ] + }, + { + "name": "Noto Sans Deseret", + "fontFamily": "Noto Sans Deseret, sans-serif", + "slug": "noto-sans-deseret", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansdeseret/v15/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Deseret" + } + ] + }, + { + "name": "Noto Sans Devanagari", + "fontFamily": "Noto Sans Devanagari, sans-serif", + "slug": "noto-sans-devanagari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQky-AzoFoW4Ow.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQly-AzoFoW4Ow.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlSoly-AzoFoW4Ow.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-AzoFoW4Ow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlUYly-AzoFoW4Ow.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Alaoiy-AzoFoW4Ow.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlZMiy-AzoFoW4Ow.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQiy-AzoFoW4Ow.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Ald0iy-AzoFoW4Ow.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + } + ] + }, + { + "name": "Noto Sans Display", + "fontFamily": "Noto Sans Display, sans-serif", + "slug": "noto-sans-display", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cLVTGQ2iHrvWM.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cKVTGQ2iHrvWM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_ykKVTGQ2iHrvWM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKVTGQ2iHrvWM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_0UKVTGQ2iHrvWM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_6kNVTGQ2iHrvWM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_5ANVTGQ2iHrvWM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cNVTGQ2iHrvWM.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_94NVTGQ2iHrvWM.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXOa3gPurWM9uQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXKa3gPurWM9uQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9J43Ka3gPurWM9uQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXKa3gPurWM9uQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9Jj3Ka3gPurWM9uQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JY3Wa3gPurWM9uQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JWnWa3gPurWM9uQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXWa3gPurWM9uQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JFHWa3gPurWM9uQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + } + ] + }, + { + "name": "Noto Sans Duployan", + "fontFamily": "Noto Sans Duployan, sans-serif", + "slug": "noto-sans-duployan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansduployan/v16/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Duployan" + } + ] + }, + { + "name": "Noto Sans Egyptian Hieroglyphs", + "fontFamily": "Noto Sans Egyptian Hieroglyphs, sans-serif", + "slug": "noto-sans-egyptian-hieroglyphs", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v26/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Egyptian Hieroglyphs" + } + ] + }, + { + "name": "Noto Sans Elbasan", + "fontFamily": "Noto Sans Elbasan, sans-serif", + "slug": "noto-sans-elbasan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanselbasan/v15/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Elbasan" + } + ] + }, + { + "name": "Noto Sans Elymaic", + "fontFamily": "Noto Sans Elymaic, sans-serif", + "slug": "noto-sans-elymaic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Elymaic" + } + ] + }, + { + "name": "Noto Sans Ethiopic", + "fontFamily": "Noto Sans Ethiopic, sans-serif", + "slug": "noto-sans-ethiopic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OKqDjwmfeaY9u.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OK6DjwmfeaY9u.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T34QK6DjwmfeaY9u.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OK6DjwmfeaY9u.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T358K6DjwmfeaY9u.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36QLKDjwmfeaY9u.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36pLKDjwmfeaY9u.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OLKDjwmfeaY9u.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37nLKDjwmfeaY9u.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + } + ] + }, + { + "name": "Noto Sans Georgian", + "fontFamily": "Noto Sans Georgian, sans-serif", + "slug": "noto-sans-georgian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzVj-f5WK0OQV.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptnzFj-f5WK0OQV.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpu5zFj-f5WK0OQV.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvVzFj-f5WK0OQV.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdps5y1j-f5WK0OQV.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpsAy1j-f5WK0OQV.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptny1j-f5WK0OQV.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptOy1j-f5WK0OQV.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + } + ] + }, + { + "name": "Noto Sans Glagolitic", + "fontFamily": "Noto Sans Glagolitic, sans-serif", + "slug": "noto-sans-glagolitic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansglagolitic/v15/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Glagolitic" + } + ] + }, + { + "name": "Noto Sans Gothic", + "fontFamily": "Noto Sans Gothic, sans-serif", + "slug": "noto-sans-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgothic/v15/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gothic" + } + ] + }, + { + "name": "Noto Sans Grantha", + "fontFamily": "Noto Sans Grantha, sans-serif", + "slug": "noto-sans-grantha", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Grantha" + } + ] + }, + { + "name": "Noto Sans Gujarati", + "fontFamily": "Noto Sans Gujarati, sans-serif", + "slug": "noto-sans-gujarati", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFgPM_OdiEH0s.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpFwPM_OdiEH0s.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_z3FwPM_OdiEH0s.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPM_OdiEH0s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ybFwPM_OdiEH0s.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_x3EAPM_OdiEH0s.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_xOEAPM_OdiEH0s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpEAPM_OdiEH0s.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wAEAPM_OdiEH0s.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + } + ] + }, + { + "name": "Noto Sans Gunjala Gondi", + "fontFamily": "Noto Sans Gunjala Gondi, sans-serif", + "slug": "noto-sans-gunjala-gondi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgunjalagondi/v15/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gunjala Gondi" + } + ] + }, + { + "name": "Noto Sans Gurmukhi", + "fontFamily": "Noto Sans Gurmukhi, sans-serif", + "slug": "noto-sans-gurmukhi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oe3bxZ_trdp7h.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OenbxZ_trdp7h.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG0QenbxZ_trdp7h.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG18enbxZ_trdp7h.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2QfXbxZ_trdp7h.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2pfXbxZ_trdp7h.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OfXbxZ_trdp7h.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3nfXbxZ_trdp7h.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + } + ] + }, + { + "name": "Noto Sans HK", + "fontFamily": "Noto Sans HK, sans-serif", + "slug": "noto-sans-hk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + } + ] + }, + { + "name": "Noto Sans Hanifi Rohingya", + "fontFamily": "Noto Sans Hanifi Rohingya, sans-serif", + "slug": "noto-sans-hanifi-rohingya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4j6vvcudK8rN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanifi Rohingya" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYq4j6vvcudK8rN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanifi Rohingya" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIbG5T6vvcudK8rN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanifi Rohingya" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIb_5T6vvcudK8rN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanifi Rohingya" + } + ] + }, + { + "name": "Noto Sans Hanunoo", + "fontFamily": "Noto Sans Hanunoo, sans-serif", + "slug": "noto-sans-hanunoo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshanunoo/v17/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanunoo" + } + ] + }, + { + "name": "Noto Sans Hatran", + "fontFamily": "Noto Sans Hatran, sans-serif", + "slug": "noto-sans-hatran", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshatran/v15/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hatran" + } + ] + }, + { + "name": "Noto Sans Hebrew", + "fontFamily": "Noto Sans Hebrew, sans-serif", + "slug": "noto-sans-hebrew", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4utoiJltutR2g.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX94qtoiJltutR2g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXKYqtoiJltutR2g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXRYqtoiJltutR2g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXqY2toiJltutR2g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXkI2toiJltutR2g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX942toiJltutR2g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX3o2toiJltutR2g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + } + ] + }, + { + "name": "Noto Sans Imperial Aramaic", + "fontFamily": "Noto Sans Imperial Aramaic, sans-serif", + "slug": "noto-sans-imperial-aramaic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansimperialaramaic/v15/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Imperial Aramaic" + } + ] + }, + { + "name": "Noto Sans Indic Siyaq Numbers", + "fontFamily": "Noto Sans Indic Siyaq Numbers, sans-serif", + "slug": "noto-sans-indic-siyaq-numbers", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v15/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Indic Siyaq Numbers" + } + ] + }, + { + "name": "Noto Sans Inscriptional Pahlavi", + "fontFamily": "Noto Sans Inscriptional Pahlavi, sans-serif", + "slug": "noto-sans-inscriptional-pahlavi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v15/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Inscriptional Pahlavi" + } + ] + }, + { + "name": "Noto Sans Inscriptional Parthian", + "fontFamily": "Noto Sans Inscriptional Parthian, sans-serif", + "slug": "noto-sans-inscriptional-parthian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansinscriptionalparthian/v15/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Inscriptional Parthian" + } + ] + }, + { + "name": "Noto Sans JP", + "fontFamily": "Noto Sans JP, sans-serif", + "slug": "noto-sans-jp", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEi75vY0rw-oME.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEj75vY0rw-oME.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFE8j75vY0rw-oME.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj75vY0rw-oME.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj75vY0rw-oME.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFM8k75vY0rw-oME.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk75vY0rw-oME.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEk75vY0rw-oME.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFLgk75vY0rw-oME.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + } + ] + }, + { + "name": "Noto Sans Javanese", + "fontFamily": "Noto Sans Javanese, sans-serif", + "slug": "noto-sans-javanese", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFliZYWj4O8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Javanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxKvkFFliZYWj4O8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Javanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxEfjFFliZYWj4O8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Javanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxH7jFFliZYWj4O8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Javanese" + } + ] + }, + { + "name": "Noto Sans KR", + "fontFamily": "Noto Sans KR, sans-serif", + "slug": "noto-sans-kr", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + } + ] + }, + { + "name": "Noto Sans Kaithi", + "fontFamily": "Noto Sans Kaithi, sans-serif", + "slug": "noto-sans-kaithi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskaithi/v16/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kaithi" + } + ] + }, + { + "name": "Noto Sans Kannada", + "fontFamily": "Noto Sans Kannada, sans-serif", + "slug": "noto-sans-kannada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvMzSIMLsPKrkY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvNzSIMLsPKrkY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrGXNzSIMLsPKrkY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrAnNzSIMLsPKrkY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrOXKzSIMLsPKrkY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrNzKzSIMLsPKrkY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvKzSIMLsPKrkY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrJLKzSIMLsPKrkY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + } + ] + }, + { + "name": "Noto Sans Kayah Li", + "fontFamily": "Noto Sans Kayah Li, sans-serif", + "slug": "noto-sans-kayah-li", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kayah Li" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WBU3CZH4EXLuKVM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kayah Li" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WPkwCZH4EXLuKVM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kayah Li" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WMAwCZH4EXLuKVM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kayah Li" + } + ] + }, + { + "name": "Noto Sans Kharoshthi", + "fontFamily": "Noto Sans Kharoshthi, sans-serif", + "slug": "noto-sans-kharoshthi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskharoshthi/v16/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kharoshthi" + } + ] + }, + { + "name": "Noto Sans Khmer", + "fontFamily": "Noto Sans Khmer, sans-serif", + "slug": "noto-sans-khmer", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAZz4kAbrddiA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNAJz4kAbrddiA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYvTAJz4kAbrddiA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYu_AJz4kAbrddiA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtTB5z4kAbrddiA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtqB5z4kAbrddiA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNB5z4kAbrddiA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYskB5z4kAbrddiA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + } + ] + }, + { + "name": "Noto Sans Khojki", + "fontFamily": "Noto Sans Khojki, sans-serif", + "slug": "noto-sans-khojki", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskhojki/v16/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khojki" + } + ] + }, + { + "name": "Noto Sans Khudawadi", + "fontFamily": "Noto Sans Khudawadi, sans-serif", + "slug": "noto-sans-khudawadi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskhudawadi/v16/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khudawadi" + } + ] + }, + { + "name": "Noto Sans Lao", + "fontFamily": "Noto Sans Lao, sans-serif", + "slug": "noto-sans-lao", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccfdf5MK3riB2w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cbdf5MK3riB2w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4L8bdf5MK3riB2w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4Q8bdf5MK3riB2w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4r8Hdf5MK3riB2w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4lsHdf5MK3riB2w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cHdf5MK3riB2w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt42MHdf5MK3riB2w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + } + ] + }, + { + "name": "Noto Sans Lao Looped", + "fontFamily": "Noto Sans Lao Looped, sans-serif", + "slug": "noto-sans-lao-looped", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr2M-Zw5V_T71k.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHr3M-Zw5V_T71k.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomKT3M-Zw5V_T71k.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr3M-Zw5V_T71k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomMj3M-Zw5V_T71k.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomCTwM-Zw5V_T71k.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomB3wM-Zw5V_T71k.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHrwM-Zw5V_T71k.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomFPwM-Zw5V_T71k.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + } + ] + }, + { + "name": "Noto Sans Lepcha", + "fontFamily": "Noto Sans Lepcha, sans-serif", + "slug": "noto-sans-lepcha", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslepcha/v16/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lepcha" + } + ] + }, + { + "name": "Noto Sans Limbu", + "fontFamily": "Noto Sans Limbu, sans-serif", + "slug": "noto-sans-limbu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Limbu" + } + ] + }, + { + "name": "Noto Sans Linear A", + "fontFamily": "Noto Sans Linear A, sans-serif", + "slug": "noto-sans-linear-a", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslineara/v16/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Linear A" + } + ] + }, + { + "name": "Noto Sans Linear B", + "fontFamily": "Noto Sans Linear B, sans-serif", + "slug": "noto-sans-linear-b", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslinearb/v15/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Linear B" + } + ] + }, + { + "name": "Noto Sans Lisu", + "fontFamily": "Noto Sans Lisu, sans-serif", + "slug": "noto-sans-lisu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lisu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP61wt29IlxkVdig.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lisu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPB1st29IlxkVdig.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lisu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPPlst29IlxkVdig.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lisu" + } + ] + }, + { + "name": "Noto Sans Lycian", + "fontFamily": "Noto Sans Lycian, sans-serif", + "slug": "noto-sans-lycian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lycian" + } + ] + }, + { + "name": "Noto Sans Lydian", + "fontFamily": "Noto Sans Lydian, sans-serif", + "slug": "noto-sans-lydian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslydian/v15/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lydian" + } + ] + }, + { + "name": "Noto Sans Mahajani", + "fontFamily": "Noto Sans Mahajani, sans-serif", + "slug": "noto-sans-mahajani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmahajani/v15/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mahajani" + } + ] + }, + { + "name": "Noto Sans Malayalam", + "fontFamily": "Noto Sans Malayalam, sans-serif", + "slug": "noto-sans-malayalam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuH9BFzEr6HxEA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuD9BFzEr6HxEA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_GOD9BFzEr6HxEA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_dOD9BFzEr6HxEA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_mOf9BFzEr6HxEA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_oef9BFzEr6HxEA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuf9BFzEr6HxEA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_7-f9BFzEr6HxEA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + } + ] + }, + { + "name": "Noto Sans Mandaic", + "fontFamily": "Noto Sans Mandaic, sans-serif", + "slug": "noto-sans-mandaic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmandaic/v15/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mandaic" + } + ] + }, + { + "name": "Noto Sans Manichaean", + "fontFamily": "Noto Sans Manichaean, sans-serif", + "slug": "noto-sans-manichaean", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmanichaean/v15/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Manichaean" + } + ] + }, + { + "name": "Noto Sans Marchen", + "fontFamily": "Noto Sans Marchen, sans-serif", + "slug": "noto-sans-marchen", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmarchen/v17/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Marchen" + } + ] + }, + { + "name": "Noto Sans Masaram Gondi", + "fontFamily": "Noto Sans Masaram Gondi, sans-serif", + "slug": "noto-sans-masaram-gondi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Masaram Gondi" + } + ] + }, + { + "name": "Noto Sans Math", + "fontFamily": "Noto Sans Math, sans-serif", + "slug": "noto-sans-math", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Math" + } + ] + }, + { + "name": "Noto Sans Mayan Numerals", + "fontFamily": "Noto Sans Mayan Numerals, sans-serif", + "slug": "noto-sans-mayan-numerals", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmayannumerals/v15/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mayan Numerals" + } + ] + }, + { + "name": "Noto Sans Medefaidrin", + "fontFamily": "Noto Sans Medefaidrin, sans-serif", + "slug": "noto-sans-medefaidrin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Medefaidrin" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmHjWlT318e5A3rw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Medefaidrin" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmJTRlT318e5A3rw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Medefaidrin" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmK3RlT318e5A3rw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Medefaidrin" + } + ] + }, + { + "name": "Noto Sans Meetei Mayek", + "fontFamily": "Noto Sans Meetei Mayek, sans-serif", + "slug": "noto-sans-meetei-mayek", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ__TW5PgeFYVa.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ_vTW5PgeFYVa.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1SX_vTW5PgeFYVa.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1T7_vTW5PgeFYVa.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1QX-fTW5PgeFYVa.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Qu-fTW5PgeFYVa.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ-fTW5PgeFYVa.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Rg-fTW5PgeFYVa.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + } + ] + }, + { + "name": "Noto Sans Mende Kikakui", + "fontFamily": "Noto Sans Mende Kikakui, sans-serif", + "slug": "noto-sans-mende-kikakui", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmendekikakui/v28/11hRGoLHz17aKjQCWj-JHcLvu2Q5zZrnkbNCLUx_aDJLAHer.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mende Kikakui" + } + ] + }, + { + "name": "Noto Sans Meroitic", + "fontFamily": "Noto Sans Meroitic, sans-serif", + "slug": "noto-sans-meroitic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmeroitic/v16/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meroitic" + } + ] + }, + { + "name": "Noto Sans Miao", + "fontFamily": "Noto Sans Miao, sans-serif", + "slug": "noto-sans-miao", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Miao" + } + ] + }, + { + "name": "Noto Sans Modi", + "fontFamily": "Noto Sans Modi, sans-serif", + "slug": "noto-sans-modi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmodi/v20/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Modi" + } + ] + }, + { + "name": "Noto Sans Mongolian", + "fontFamily": "Noto Sans Mongolian, sans-serif", + "slug": "noto-sans-mongolian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mongolian" + } + ] + }, + { + "name": "Noto Sans Mono", + "fontFamily": "Noto Sans Mono, monospace", + "slug": "noto-sans-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ09vdUA.ttf" - }, - { - "family": "Noto Sans Mro", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "mro" ], - "version": "v18", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39aD3bsg.ttf" - }, - { - "family": "Noto Sans Multani", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "multani" ], - "version": "v20", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO2A1r_Q.ttf" - }, - { - "family": "Noto Sans Myanmar", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "myanmar" ], - "version": "v20", - "lastModified": "2022-09-28", - "files": { - "100": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZs_y1ZtY3ymOryg38hOCSdOnFq0HGS1uEapkAC3AY.ttf", - "200": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HE-98EwiEwLxR-r.ttf", - "300": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFa9MEwiEwLxR-r.ttf", - "500": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEC9cEwiEwLxR-r.ttf", - "600": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEu8sEwiEwLxR-r.ttf", - "700": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFK88EwiEwLxR-r.ttf", - "800": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFW8MEwiEwLxR-r.ttf", - "900": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFy8cEwiEwLxR-r.ttf", - "regular": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0Hn31uE.ttf" - }, - { - "family": "Noto Sans NKo", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "nko" ], - "version": "v2", - "lastModified": "2023-01-25", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansnko/v2/esDX31ZdNv-KYGGJpKGk2_RpMpCMHMLBrdA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansnko/v2/esDX31ZdNv-KYGGJpKGk2_RpApGGGA.ttf" - }, - { - "family": "Noto Sans Nabataean", - "variants": [ "regular" ], - "subsets": [ "nabataean" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansnabataean/v15/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansnabataean/v15/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNkBN3gA.ttf" - }, - { - "family": "Noto Sans New Tai Lue", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "new-tai-lue" ], - "version": "v20", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pddfAYUbghFPKzeY.ttf", - "600": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdTvHYUbghFPKzeY.ttf", - "700": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdQLHYUbghFPKzeY.ttf", - "regular": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAYUbghFPKzeY.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAUUfqgA.ttf" - }, - { - "family": "Noto Sans Newa", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "newa" ], - "version": "v16", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg_n-oto.ttf" - }, - { - "family": "Noto Sans Nushu", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "nushu" ], - "version": "v19", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansnushu/v19/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansnushu/v19/rnCw-xRQ3B7652emAbAe_Ai1IYa1WVoI.ttf" - }, - { - "family": "Noto Sans Ogham", - "variants": [ "regular" ], - "subsets": [ "ogham" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansogham/v15/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansogham/v15/kmKlZqk1GBDGN0mY6k5lmEmww4hbtpNe.ttf" - }, - { - "family": "Noto Sans Ol Chiki", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "ol-chiki" ], - "version": "v21", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALVs267I6gVrz5gQ.ttf", - "600": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALbcx67I6gVrz5gQ.ttf", - "700": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALY4x67I6gVrz5gQ.ttf", - "regular": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk227MwhQ.ttf" - }, - { - "family": "Noto Sans Old Hungarian", - "variants": [ "regular" ], - "subsets": [ "old-hungarian" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansoldhungarian/v15/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansoldhungarian/v15/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgSfiZAo.ttf" - }, - { - "family": "Noto Sans Old Italic", - "variants": [ "regular" ], - "subsets": [ "old-italic" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansolditalic/v15/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansolditalic/v15/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tVlQfxw.ttf" - }, - { - "family": "Noto Sans Old North Arabian", - "variants": [ "regular" ], - "subsets": [ "old-north-arabian" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansoldnortharabian/v15/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansoldnortharabian/v15/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBgmEA7.ttf" - }, - { - "family": "Noto Sans Old Permic", - "variants": [ "regular" ], - "subsets": [ "old-permic" ], - "version": "v16", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansoldpermic/v16/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansoldpermic/v16/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKIdWiPs.ttf" - }, - { - "family": "Noto Sans Old Persian", - "variants": [ "regular" ], - "subsets": [ "old-persian" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansoldpersian/v15/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansoldpersian/v15/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_dqeNU.ttf" - }, - { - "family": "Noto Sans Old Sogdian", - "variants": [ "regular" ], - "subsets": [ "old-sogdian" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansoldsogdian/v15/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansoldsogdian/v15/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURtLnOgu.ttf" - }, - { - "family": "Noto Sans Old South Arabian", - "variants": [ "regular" ], - "subsets": [ "old-south-arabian" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansoldsoutharabian/v15/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansoldsoutharabian/v15/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKB1eFH.ttf" - }, - { - "family": "Noto Sans Old Turkic", - "variants": [ "regular" ], - "subsets": [ "old-turkic" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansoldturkic/v15/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansoldturkic/v15/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsH2Qhkg.ttf" - }, - { - "family": "Noto Sans Oriya", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "oriya" ], - "version": "v27", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0fq_c6LhHBRe-.ttf", - "200": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0f6_c6LhHBRe-.ttf", - "300": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Iviqf6_c6LhHBRe-.ttf", - "500": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvjGf6_c6LhHBRe-.ttf", - "600": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgqeK_c6LhHBRe-.ttf", - "700": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgTeK_c6LhHBRe-.ttf", - "800": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0eK_c6LhHBRe-.ttf", - "900": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvhdeK_c6LhHBRe-.ttf", - "regular": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_c6LhHBRe-.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f5_d4rw.ttf" - }, - { - "family": "Noto Sans Osage", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "osage" ], - "version": "v18", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtnR1yW.ttf" - }, - { - "family": "Noto Sans Osmanya", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "osmanya" ], - "version": "v18", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmw6lTYo.ttf" - }, - { - "family": "Noto Sans Pahawh Hmong", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "pahawh-hmong" ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanspahawhhmong/v18/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanspahawhhmong/v18/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7knzY1dw.ttf" - }, - { - "family": "Noto Sans Palmyrene", - "variants": [ "regular" ], - "subsets": [ "palmyrene" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanspalmyrene/v15/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanspalmyrene/v15/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCDnOzYg.ttf" - }, - { - "family": "Noto Sans Pau Cin Hau", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "pau-cin-hau" ], - "version": "v20", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanspaucinhau/v20/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanspaucinhau/v20/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehItjU-u.ttf" - }, - { - "family": "Noto Sans Phags Pa", - "variants": [ "regular" ], - "subsets": [ "phags-pa" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChUq06o.ttf" - }, - { - "family": "Noto Sans Phoenician", - "variants": [ "regular" ], - "subsets": [ "phoenician" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansphoenician/v15/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansphoenician/v15/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5U7IqNs.ttf" - }, - { - "family": "Noto Sans Psalter Pahlavi", - "variants": [ "regular" ], - "subsets": [ "psalter-pahlavi" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanspsalterpahlavi/v15/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanspsalterpahlavi/v15/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w5GzAtQ.ttf" - }, - { - "family": "Noto Sans Rejang", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "rejang" ], - "version": "v18", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansrejang/v18/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansrejang/v18/Ktk2AKuMeZjqPnXgyqrib7DIogqwB4K9XQ.ttf" - }, - { - "family": "Noto Sans Runic", - "variants": [ "regular" ], - "subsets": [ "runic" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansrunic/v15/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansrunic/v15/H4c_BXWPl9DZ0Xe_nHUaus7W68WmahBr.ttf" - }, - { - "family": "Noto Sans SC", - "variants": [ "100", "300", "regular", "500", "700", "900" ], - "subsets": [ "chinese-simplified", "latin" ], - "version": "v26", - "lastModified": "2022-09-27", - "files": { - "100": "http://fonts.gstatic.com/s/notosanssc/v26/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf", - "300": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf", - "500": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf", - "700": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf", - "900": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf", - "regular": "http://fonts.gstatic.com/s/notosanssc/v26/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssc/v26/k3kXo84MPvpLmixcA63oeALRKIKL.otf" - }, - { - "family": "Noto Sans Samaritan", - "variants": [ "regular" ], - "subsets": [ "samaritan" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanssamaritan/v15/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUo5jNlOVMzQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssamaritan/v15/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOYo9pMg.ttf" - }, - { - "family": "Noto Sans Saurashtra", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "saurashtra" ], - "version": "v19", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanssaurashtra/v19/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssaurashtra/v19/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef-nchBc.ttf" - }, - { - "family": "Noto Sans Sharada", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "sharada" ], - "version": "v16", - "lastModified": "2022-11-18", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwrXKNug.ttf" - }, - { - "family": "Noto Sans Shavian", - "variants": [ "regular" ], - "subsets": [ "shavian" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansshavian/v15/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansshavian/v15/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4HFRQJ0.ttf" - }, - { - "family": "Noto Sans Siddham", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "siddham" ], - "version": "v17", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanssiddham/v17/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssiddham/v17/OZpZg-FwqiNLe9PELUikxTWDoCCeGpncmXY.ttf" - }, - { - "family": "Noto Sans SignWriting", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "signwriting" ], - "version": "v1", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanssignwriting/v1/Noas6VX_wIWFbTTCrYmvy9A2UnkL-2SZAWiUEVCARYQemg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssignwriting/v1/Noas6VX_wIWFbTTCrYmvy9A2UnkL-2SZAWikEFqE.ttf" - }, - { - "family": "Noto Sans Sinhala", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "sinhala" ], - "version": "v26", - "lastModified": "2022-09-28", - "files": { - "100": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2b5lgLpJwbQRM.ttf", - "200": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2a5lgLpJwbQRM.ttf", - "300": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwlOa5lgLpJwbQRM.ttf", - "500": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwj-a5lgLpJwbQRM.ttf", - "600": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwtOd5lgLpJwbQRM.ttf", - "700": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwuqd5lgLpJwbQRM.ttf", - "800": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2d5lgLpJwbQRM.ttf", - "900": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwqSd5lgLpJwbQRM.ttf", - "regular": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a1lkBoA.ttf" - }, - { - "family": "Noto Sans Sogdian", - "variants": [ "regular" ], - "subsets": [ "sogdian" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanssogdian/v15/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssogdian/v15/taiQGn5iC4--qtsfi4Jp6eHPnfxQBr-_NGo.ttf" - }, - { - "family": "Noto Sans Sora Sompeng", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "sora-sompeng" ], - "version": "v24", - "lastModified": "2023-03-09", - "files": { - "500": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHRO18DpZXJQd4Mu.ttf", - "600": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSi0MDpZXJQd4Mu.ttf", - "700": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSb0MDpZXJQd4Mu.ttf", - "regular": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR81_Dob3Y.ttf" - }, - { - "family": "Noto Sans Soyombo", - "variants": [ "regular" ], - "subsets": [ "soyombo" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanssoyombo/v15/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssoyombo/v15/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY3FqKlc.ttf" - }, - { - "family": "Noto Sans Sundanese", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "sundanese" ], - "version": "v24", - "lastModified": "2023-03-01", - "files": { - "500": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxbNNHCizv7fQES.ttf", - "600": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6cty3M9HCizv7fQES.ttf", - "700": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctyOM9HCizv7fQES.ttf", - "regular": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNOHDgT8.ttf" - }, - { - "family": "Noto Sans Syloti Nagri", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "syloti-nagri" ], - "version": "v20", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGJVb7Mw.ttf" - }, - { - "family": "Noto Sans Symbols", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "symbols" ], - "version": "v40", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ4gavVFRkzrbQ.ttf", - "200": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_Q8gavVFRkzrbQ.ttf", - "300": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gIw8gavVFRkzrbQ.ttf", - "500": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gTw8gavVFRkzrbQ.ttf", - "600": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gowggavVFRkzrbQ.ttf", - "700": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gmgggavVFRkzrbQ.ttf", - "800": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_QggavVFRkzrbQ.ttf", - "900": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g1AggavVFRkzrbQ.ttf", - "regular": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8Qa_9B.ttf" - }, - { - "family": "Noto Sans Symbols 2", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "symbols" ], - "version": "v17", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanssymbols2/v17/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssymbols2/v17/I_uyMoGduATTei9eI8daxVHDyfisHr71-pLgeQ.ttf" - }, - { - "family": "Noto Sans Syriac", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "syriac" ], - "version": "v16", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9caJyZfUL_FC.ttf", - "200": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD9MaJyZfUL_FC.ttf", - "300": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Ud9MaJyZfUL_FC.ttf", - "500": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Vx9MaJyZfUL_FC.ttf", - "600": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wd88aJyZfUL_FC.ttf", - "700": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wk88aJyZfUL_FC.ttf", - "800": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD88aJyZfUL_FC.ttf", - "900": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Xq88aJyZfUL_FC.ttf", - "regular": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9MaJyZfUL_FC.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9PaIw5M.ttf" - }, - { - "family": "Noto Sans TC", - "variants": [ "100", "300", "regular", "500", "700", "900" ], - "subsets": [ "chinese-traditional", "latin" ], - "version": "v26", - "lastModified": "2022-09-27", - "files": { - "100": "http://fonts.gstatic.com/s/notosanstc/v26/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf", - "300": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf", - "500": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf", - "700": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf", - "900": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf", - "regular": "http://fonts.gstatic.com/s/notosanstc/v26/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanstc/v26/-nF7OG829Oofr2wohFbTp9i1PiEJ.otf" - }, - { - "family": "Noto Sans Tagalog", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "tagalog" ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanstagalog/v18/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanstagalog/v18/J7aFnoNzCnFcV9ZI-sUYuvote1R0wzEBCcw.ttf" - }, - { - "family": "Noto Sans Tagbanwa", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "tagbanwa" ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanstagbanwa/v18/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanstagbanwa/v18/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_npRz4A.ttf" - }, - { - "family": "Noto Sans Tai Le", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "tai-le" ], - "version": "v17", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR5wtO_Xw.ttf" - }, - { - "family": "Noto Sans Tai Tham", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "tai-tham" ], - "version": "v19", - "lastModified": "2022-11-09", - "files": { - "500": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBBcbPgquyaRGKMw.ttf", - "600": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBPscPgquyaRGKMw.ttf", - "700": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBMIcPgquyaRGKMw.ttf", - "regular": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbDgukzQ.ttf" - }, - { - "family": "Noto Sans Tai Viet", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "tai-viet" ], - "version": "v16", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanstaiviet/v16/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanstaiviet/v16/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZb6oQb.ttf" - }, - { - "family": "Noto Sans Takri", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "takri" ], - "version": "v21", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanstakri/v21/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanstakri/v21/TuGJUVpzXI5FBtUq5a8bnKIOdTwgNeXS.ttf" - }, - { - "family": "Noto Sans Tamil", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "tamil" ], - "version": "v27", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGor0RqKDt_EvT.ttf", - "200": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGo70RqKDt_EvT.ttf", - "300": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7uYo70RqKDt_EvT.ttf", - "500": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7v0o70RqKDt_EvT.ttf", - "600": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7sYpL0RqKDt_EvT.ttf", - "700": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7shpL0RqKDt_EvT.ttf", - "800": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGpL0RqKDt_EvT.ttf", - "900": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tvpL0RqKDt_EvT.ttf", - "regular": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo40QoqQ.ttf" - }, - { - "family": "Noto Sans Tamil Supplement", - "variants": [ "regular" ], - "subsets": [ "tamil-supplement" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanstamilsupplement/v19/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanstamilsupplement/v19/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax8vtC-c.ttf" - }, - { - "family": "Noto Sans Tangsa", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "tangsa" ], - "version": "v3", - "lastModified": "2023-03-09", - "files": { - "500": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1qkyoRYdplyJDA.ttf", - "600": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2GlCoRYdplyJDA.ttf", - "700": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2_lCoRYdplyJDA.ttf", - "regular": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1YkyoRYdplyJDA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1YkxoQa94.ttf" - }, - { - "family": "Noto Sans Telugu", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "telugu" ], - "version": "v25", - "lastModified": "2023-04-04", - "files": { - "100": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezfqQUbf-3v37w.ttf", - "200": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zbqQUbf-3v37w.ttf", - "300": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntJTbqQUbf-3v37w.ttf", - "500": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntSTbqQUbf-3v37w.ttf", - "600": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntpTHqQUbf-3v37w.ttf", - "700": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntnDHqQUbf-3v37w.ttf", - "800": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zHqQUbf-3v37w.ttf", - "900": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt0jHqQUbf-3v37w.ttf", - "regular": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbaQEzb.ttf" - }, - { - "family": "Noto Sans Thaana", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "thaana" ], - "version": "v23", - "lastModified": "2023-03-09", - "files": { - "100": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbxLhnu4-tbNu.ttf", - "200": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VrbhLhnu4-tbNu.ttf", - "300": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4W1bhLhnu4-tbNu.ttf", - "500": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XZbhLhnu4-tbNu.ttf", - "600": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4U1aRLhnu4-tbNu.ttf", - "700": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4UMaRLhnu4-tbNu.ttf", - "800": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VraRLhnu4-tbNu.ttf", - "900": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VCaRLhnu4-tbNu.ttf", - "regular": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbiLglOo.ttf" - }, - { - "family": "Noto Sans Thai", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "thai" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RspzF-QRvzzXg.ttf", - "200": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRtpzF-QRvzzXg.ttf", - "300": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU8ptpzF-QRvzzXg.ttf", - "500": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU6ZtpzF-QRvzzXg.ttf", - "600": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU0pqpzF-QRvzzXg.ttf", - "700": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU3NqpzF-QRvzzXg.ttf", - "800": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRqpzF-QRvzzXg.ttf", - "900": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUz1qpzF-QRvzzXg.ttf", - "regular": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtlzB0RQ.ttf" - }, - { - "family": "Noto Sans Thai Looped", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "thai" ], - "version": "v14", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50fF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3YX6AYeCT_Wfd1.ttf", - "200": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y84E4UgrzUO5sKA.ttf", - "300": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yl4I4UgrzUO5sKA.ttf", - "500": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yz4M4UgrzUO5sKA.ttf", - "600": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y44Q4UgrzUO5sKA.ttf", - "700": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yh4U4UgrzUO5sKA.ttf", - "800": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Ym4Y4UgrzUO5sKA.ttf", - "900": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yv4c4UgrzUO5sKA.ttf", - "regular": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gO6ocWiHvWQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3QOqAY.ttf" - }, - { - "family": "Noto Sans Tifinagh", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "tifinagh" ], - "version": "v17", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanstifinagh/v17/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanstifinagh/v17/I_uzMoCduATTei9eI8dawkHIwvmhCvbX67PA.ttf" - }, - { - "family": "Noto Sans Tirhuta", - "variants": [ "regular" ], - "subsets": [ "tirhuta" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanstirhuta/v15/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanstirhuta/v15/t5t6IQYRNJ6TWjahPR6X-M-apUyby4uHWh8.ttf" - }, - { - "family": "Noto Sans Ugaritic", - "variants": [ "regular" ], - "subsets": [ "ugaritic" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansugaritic/v15/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansugaritic/v15/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXUMxAM.ttf" - }, - { - "family": "Noto Sans Vai", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vai" ], - "version": "v17", - "lastModified": "2022-09-28", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrUdMXmCA.ttf" - }, - { - "family": "Noto Sans Wancho", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "wancho" ], - "version": "v17", - "lastModified": "2022-09-28", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBmALiog.ttf" - }, - { - "family": "Noto Sans Warang Citi", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "warang-citi" ], - "version": "v17", - "lastModified": "2022-09-28", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKhpO9G.ttf" - }, - { - "family": "Noto Sans Yi", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "yi" ], - "version": "v19", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/notosansyi/v19/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosansyi/v19/sJoD3LFXjsSdcnzn071rO3aZxFrN.ttf" - }, - { - "family": "Noto Sans Zanabazar Square", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "zanabazar-square" ], - "version": "v16", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notosanszanabazarsquare/v16/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notosanszanabazarsquare/v16/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQuJwMiU.ttf" - }, - { - "family": "Noto Serif", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/notoserif/v21/ga6Law1J5X9T9RW6j9bNdOwzTRCUcM1IKoY.ttf", - "regular": "http://fonts.gstatic.com/s/notoserif/v21/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf", - "italic": "http://fonts.gstatic.com/s/notoserif/v21/ga6Kaw1J5X9T9RW6j9bNfFIWbTq6fMRRMw.ttf", - "700italic": "http://fonts.gstatic.com/s/notoserif/v21/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedO9NOoYIDg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserif/v21/ga6Iaw1J5X9T9RW6j9bNfFEWbQ.ttf" - }, - { - "family": "Noto Serif Ahom", - "variants": [ "regular" ], - "subsets": [ "ahom", "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/notoserifahom/v19/FeVIS0hfp6cprmEUffAW_fUL_AN-wuYrPFiwaw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifahom/v19/FeVIS0hfp6cprmEUffAW_fUL_ANOw-wv.ttf" - }, - { - "family": "Noto Serif Armenian", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "armenian", "latin", "latin-ext" ], - "version": "v25", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8ObxvXagGdkbg.ttf", - "200": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8KbxvXagGdkbg.ttf", - "300": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZ1cKbxvXagGdkbg.ttf", - "500": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZucKbxvXagGdkbg.ttf", - "600": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZVcWbxvXagGdkbg.ttf", - "700": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZbMWbxvXagGdkbg.ttf", - "800": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8WbxvXagGdkbg.ttf", - "900": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZIsWbxvXagGdkbg.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8KbxvXagGdkbg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8Krx__e.ttf" - }, - { - "family": "Noto Serif Balinese", - "variants": [ "regular" ], - "subsets": [ "balinese", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/notoserifbalinese/v16/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRbgJdhapcUU.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifbalinese/v16/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXdbkDcg.ttf" - }, - { - "family": "Noto Serif Bengali", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "bengali", "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAH3qn4LjQH8yD.ttf", - "200": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAHnqn4LjQH8yD.ttf", - "300": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfdeHnqn4LjQH8yD.ttf", - "500": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcyHnqn4LjQH8yD.ttf", - "600": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffeGXqn4LjQH8yD.ttf", - "700": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffnGXqn4LjQH8yD.ttf", - "800": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAGXqn4LjQH8yD.ttf", - "900": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfepGXqn4LjQH8yD.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHnqn4LjQH8yD.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHkqm6rw.ttf" - }, - { - "family": "Noto Serif Devanagari", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v28", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-og-HMUe1u_dv.ttf", - "200": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-ow-HMUe1u_dv.ttf", - "300": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTBgow-HMUe1u_dv.ttf", - "500": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTAMow-HMUe1u_dv.ttf", - "600": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDgpA-HMUe1u_dv.ttf", - "700": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDZpA-HMUe1u_dv.ttf", - "800": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-pA-HMUe1u_dv.ttf", - "900": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTCXpA-HMUe1u_dv.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-ow-HMUe1u_dv.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-oz-GO0M.ttf" - }, - { - "family": "Noto Serif Display", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd49gKaDU9hvzC.ttf", - "200": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd4tgKaDU9hvzC.ttf", - "300": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVoD4tgKaDU9hvzC.ttf", - "500": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpv4tgKaDU9hvzC.ttf", - "600": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVqD5dgKaDU9hvzC.ttf", - "700": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVq65dgKaDU9hvzC.ttf", - "800": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd5dgKaDU9hvzC.ttf", - "900": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVr05dgKaDU9hvzC.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4tgKaDU9hvzC.ttf", - "100italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBIYjEfg-zCmf4.ttf", - "200italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBJYjEfg-zCmf4.ttf", - "300italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoW5JYjEfg-zCmf4.ttf", - "italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBJYjEfg-zCmf4.ttf", - "500italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoQJJYjEfg-zCmf4.ttf", - "600italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-Voe5OYjEfg-zCmf4.ttf", - "700italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoddOYjEfg-zCmf4.ttf", - "800italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBOYjEfg-zCmf4.ttf", - "900italic": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoZlOYjEfg-zCmf4.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4ugLYjE.ttf" - }, - { - "family": "Noto Serif Dogra", - "variants": [ "regular" ], - "subsets": [ "dogra" ], - "version": "v16", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/notoserifdogra/v16/MQpP-XquKMC7ROPP3QOOlm7xPu3fGy63IbPzkns.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifdogra/v16/MQpP-XquKMC7ROPP3QOOlm7xPu3fKy-9JQ.ttf" - }, - { - "family": "Noto Serif Ethiopic", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "ethiopic", "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSQjkaO9UVLyiw.ttf", - "200": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSUjkaO9UVLyiw.ttf", - "300": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCkyUjkaO9UVLyiw.ttf", - "500": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxC_yUjkaO9UVLyiw.ttf", - "600": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCEyIjkaO9UVLyiw.ttf", - "700": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCKiIjkaO9UVLyiw.ttf", - "800": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSIjkaO9UVLyiw.ttf", - "900": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCZCIjkaO9UVLyiw.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUjkaO9UVLyiw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUTkKm5.ttf" - }, - { - "family": "Noto Serif Georgian", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "georgian", "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvsfdzTw-FgZxQ.ttf", - "200": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzvofdzTw-FgZxQ.ttf", - "300": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSEPofdzTw-FgZxQ.ttf", - "500": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSfPofdzTw-FgZxQ.ttf", - "600": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSkP0fdzTw-FgZxQ.ttf", - "700": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSqf0fdzTw-FgZxQ.ttf", - "800": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzv0fdzTw-FgZxQ.ttf", - "900": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aS5_0fdzTw-FgZxQ.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvofdzTw-FgZxQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvovdj70.ttf" - }, - { - "family": "Noto Serif Grantha", - "variants": [ "regular" ], - "subsets": [ "grantha", "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-28", - "files": { - "regular": "http://fonts.gstatic.com/s/notoserifgrantha/v19/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqFENLR7fHGw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifgrantha/v19/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiaFUlP.ttf" - }, - { - "family": "Noto Serif Gujarati", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "gujarati", "latin", "latin-ext" ], - "version": "v26", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycYzuM1Kf-OJu.ttf", - "200": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuaycIzuM1Kf-OJu.ttf", - "300": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuZscIzuM1Kf-OJu.ttf", - "500": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYAcIzuM1Kf-OJu.ttf", - "600": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Hubsd4zuM1Kf-OJu.ttf", - "700": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HubVd4zuM1Kf-OJu.ttf", - "800": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huayd4zuM1Kf-OJu.ttf", - "900": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huabd4zuM1Kf-OJu.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycIzuM1Kf-OJu.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycLzvOVY.ttf" - }, - { - "family": "Noto Serif Gurmukhi", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "gurmukhi", "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eBTNmqVU7y6l.ttf", - "200": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-eRTNmqVU7y6l.ttf", - "300": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr7geRTNmqVU7y6l.ttf", - "500": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6MeRTNmqVU7y6l.ttf", - "600": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5gfhTNmqVU7y6l.ttf", - "700": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5ZfhTNmqVU7y6l.ttf", - "800": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-fhTNmqVU7y6l.ttf", - "900": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4XfhTNmqVU7y6l.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eRTNmqVU7y6l.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eSTMkKE.ttf" - }, - { - "family": "Noto Serif HK", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ - "chinese-hongkong", - "cyrillic", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v2", - "lastModified": "2022-09-27", - "files": { - "200": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-K2RmV9Su1M6i.ttf", - "300": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMcgK2RmV9Su1M6i.ttf", - "500": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMdMK2RmV9Su1M6i.ttf", - "600": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMegLGRmV9Su1M6i.ttf", - "700": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMeZLGRmV9Su1M6i.ttf", - "800": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-LGRmV9Su1M6i.ttf", - "900": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMfXLGRmV9Su1M6i.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMd-K2RmV9Su1M6i.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMd-K1RnXdA.ttf" - }, - { - "family": "Noto Serif Hebrew", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "hebrew", "latin", "latin-ext" ], - "version": "v25", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwTAG8_vlQxz24.ttf", - "200": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwSAG8_vlQxz24.ttf", - "300": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVFISAG8_vlQxz24.ttf", - "500": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVD4SAG8_vlQxz24.ttf", - "600": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVNIVAG8_vlQxz24.ttf", - "700": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVOsVAG8_vlQxz24.ttf", - "800": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwVAG8_vlQxz24.ttf", - "900": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVKUVAG8_vlQxz24.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSAG8_vlQxz24.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSMG41ug.ttf" - }, - { - "family": "Noto Serif JP", - "variants": [ "200", "300", "regular", "500", "600", "700", "900" ], - "subsets": [ "japanese", "latin" ], - "version": "v21", - "lastModified": "2022-09-27", - "files": { - "200": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf", - "300": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf", - "500": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf", - "600": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf", - "700": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf", - "900": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf", - "regular": "http://fonts.gstatic.com/s/notoserifjp/v21/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifjp/v21/xn7mYHs72GKoTvER4Gn3b5eMbN-uYA.otf" - }, - { - "family": "Noto Serif KR", - "variants": [ "200", "300", "regular", "500", "600", "700", "900" ], - "subsets": [ "korean", "latin" ], - "version": "v20", - "lastModified": "2022-09-27", - "files": { - "200": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf", - "300": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf", - "500": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf", - "600": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf", - "700": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf", - "900": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf", - "regular": "http://fonts.gstatic.com/s/notoserifkr/v20/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifkr/v20/3Jn7SDn90Gmq2mr3blnHaTZXRuFj1g.otf" - }, - { - "family": "Noto Serif Kannada", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "kannada", "latin", "latin-ext" ], - "version": "v26", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYCceRJ71svgcI.ttf", - "200": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYDceRJ71svgcI.ttf", - "300": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgZgDceRJ71svgcI.ttf", - "500": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgfQDceRJ71svgcI.ttf", - "600": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgRgEceRJ71svgcI.ttf", - "700": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgSEEceRJ71svgcI.ttf", - "800": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYEceRJ71svgcI.ttf", - "900": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgW8EceRJ71svgcI.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDceRJ71svgcI.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDQeVD6w.ttf" - }, - { - "family": "Noto Serif Khmer", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "khmer", "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B4wXEZK9Xo4xg.ttf", - "200": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaB8wXEZK9Xo4xg.ttf", - "300": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNth8wXEZK9Xo4xg.ttf", - "500": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN2h8wXEZK9Xo4xg.ttf", - "600": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNNhgwXEZK9Xo4xg.ttf", - "700": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNDxgwXEZK9Xo4xg.ttf", - "800": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaBgwXEZK9Xo4xg.ttf", - "900": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNQRgwXEZK9Xo4xg.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8wXEZK9Xo4xg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8AXUxO.ttf" - }, - { - "family": "Noto Serif Khojki", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "khojki", "latin", "latin-ext" ], - "version": "v8", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY4AhvyZ0Qtc5HAQ.ttf", - "600": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYDA9vyZ0Qtc5HAQ.ttf", - "700": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYNQ9vyZ0Qtc5HAQ.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY0ghvyZ0Qtc5HAQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY0ghfyJcU.ttf" - }, - { - "family": "Noto Serif Lao", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "lao", "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMLrvOjlmyhHHQ.ttf", - "200": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMKrvOjlmyhHHQ.ttf", - "300": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8Vb0KrvOjlmyhHHQ.ttf", - "500": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VdEKrvOjlmyhHHQ.ttf", - "600": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VT0NrvOjlmyhHHQ.ttf", - "700": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VQQNrvOjlmyhHHQ.ttf", - "800": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMNrvOjlmyhHHQ.ttf", - "900": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VUoNrvOjlmyhHHQ.ttf", - "regular": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKrvOjlmyhHHQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKnvKpkg.ttf" - }, - { - "family": "Noto Serif Malayalam", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "malayalam" ], - "version": "v28", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-1fnVwHpQVySg.ttf", - "200": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-xfnVwHpQVySg.ttf", - "300": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL16exfnVwHpQVySg.ttf", - "500": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1hexfnVwHpQVySg.ttf", - "600": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1aetfnVwHpQVySg.ttf", - "700": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1UOtfnVwHpQVySg.ttf", - "800": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-tfnVwHpQVySg.ttf", - "900": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1HutfnVwHpQVySg.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xfnVwHpQVySg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xvnFYD.ttf" - }, - { - "family": "Noto Serif Myanmar", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "myanmar" ], - "version": "v13", - "lastModified": "2022-09-28", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJudM7F2Yv76aBKKs-bHMQfAHUw3jnNwBDsU9X6RPzQ.ttf", - "200": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNbDHMefv2TeXJng.ttf", - "300": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNCDLMefv2TeXJng.ttf", - "500": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNUDPMefv2TeXJng.ttf", - "600": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNfDTMefv2TeXJng.ttf", - "700": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNGDXMefv2TeXJng.ttf", - "800": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNBDbMefv2TeXJng.ttf", - "900": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNIDfMefv2TeXJng.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1pBrocdDqRA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jnFpRDs.ttf" - }, - { - "family": "Noto Serif NP Hmong", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "nyiakeng-puachue-hmong" ], - "version": "v1", - "lastModified": "2022-12-08", - "files": { - "500": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbj9hFLp3u0rVO-d.ttf", - "600": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgRg1Lp3u0rVO-d.ttf", - "700": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgog1Lp3u0rVO-d.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbjPhFLp3u0rVO-d.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbjPhGLo1Ok.ttf" - }, - { - "family": "Noto Serif Oriya", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "oriya" ], - "version": "v4", - "lastModified": "2023-03-09", - "files": { - "500": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxru_Hy-v039MF1j.ttf", - "600": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxoC-3y-v039MF1j.ttf", - "700": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxo7-3y-v039MF1j.ttf", - "regular": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxrc_Hy-v039MF1j.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxrc_Ey_tUk.ttf" - }, - { - "family": "Noto Serif SC", - "variants": [ "200", "300", "regular", "500", "600", "700", "900" ], - "subsets": [ "chinese-simplified", "latin" ], - "version": "v22", - "lastModified": "2022-09-27", - "files": { - "200": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf", - "300": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf", - "500": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf", - "600": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf", - "700": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf", - "900": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf", - "regular": "http://fonts.gstatic.com/s/notoserifsc/v22/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifsc/v22/H4chBXePl9DZ0Xe7gG9cyOj7kqeWbQ.otf" - }, - { - "family": "Noto Serif Sinhala", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "sinhala" ], - "version": "v26", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxRlMsxaLRn3W-.ttf", - "200": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExR1MsxaLRn3W-.ttf", - "300": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pHvR1MsxaLRn3W-.ttf", - "500": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGDR1MsxaLRn3W-.ttf", - "600": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFvQFMsxaLRn3W-.ttf", - "700": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFWQFMsxaLRn3W-.ttf", - "800": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExQFMsxaLRn3W-.ttf", - "900": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pEYQFMsxaLRn3W-.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR1MsxaLRn3W-.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR2Mtz6Y.ttf" - }, - { - "family": "Noto Serif TC", - "variants": [ "200", "300", "regular", "500", "600", "700", "900" ], - "subsets": [ "chinese-traditional", "latin" ], - "version": "v23", - "lastModified": "2022-09-27", - "files": { - "200": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf", - "300": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf", - "500": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf", - "600": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf", - "700": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf", - "900": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf", - "regular": "http://fonts.gstatic.com/s/notoseriftc/v23/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoseriftc/v23/XLYgIZb5bJNDGYxLBibeHZ0BtnYOSw.otf" - }, - { - "family": "Noto Serif Tamil", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "tamil" ], - "version": "v28", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN6R8Pz3v8Etew.ttf", - "200": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNN-R8Pz3v8Etew.ttf", - "300": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecat6t-R8Pz3v8Etew.ttf", - "500": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatht-R8Pz3v8Etew.ttf", - "600": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatatiR8Pz3v8Etew.ttf", - "700": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatU9iR8Pz3v8Etew.ttf", - "800": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNNiR8Pz3v8Etew.ttf", - "900": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatHdiR8Pz3v8Etew.ttf", - "regular": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-R8Pz3v8Etew.ttf", - "100italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5svbzncQ9e3wx.ttf", - "200italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5s_bzncQ9e3wx.ttf", - "300italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJwns_bzncQ9e3wx.ttf", - "italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5s_bzncQ9e3wx.ttf", - "500italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJxLs_bzncQ9e3wx.ttf", - "600italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyntPbzncQ9e3wx.ttf", - "700italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyetPbzncQ9e3wx.ttf", - "800italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5tPbzncQ9e3wx.ttf", - "900italic": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJzQtPbzncQ9e3wx.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-h8fbz.ttf" - }, - { - "family": "Noto Serif Tangut", - "variants": [ "regular" ], - "subsets": [ "tangut" ], - "version": "v15", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/notoseriftangut/v15/xn76YGc72GKoTvER4Gn3b4m9Ern7Em41fcvN2KT4.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoseriftangut/v15/xn76YGc72GKoTvER4Gn3b4m9Ern7El40d88.ttf" - }, - { - "family": "Noto Serif Telugu", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "telugu" ], - "version": "v25", - "lastModified": "2023-04-04", - "files": { - "100": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TGwuY2fjgrZYA.ttf", - "200": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTCwuY2fjgrZYA.ttf", - "300": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DqzCwuY2fjgrZYA.ttf", - "500": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DxzCwuY2fjgrZYA.ttf", - "600": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DKzewuY2fjgrZYA.ttf", - "700": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DEjewuY2fjgrZYA.ttf", - "800": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTewuY2fjgrZYA.ttf", - "900": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DXDewuY2fjgrZYA.ttf", - "regular": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCwuY2fjgrZYA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCAuIeb.ttf" - }, - { - "family": "Noto Serif Thai", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "thai" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiFuRRCmsdu0Qx.ttf", - "200": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiF-RRCmsdu0Qx.ttf", - "300": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0p8F-RRCmsdu0Qx.ttf", - "500": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oQF-RRCmsdu0Qx.ttf", - "600": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0r8EORRCmsdu0Qx.ttf", - "700": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0rFEORRCmsdu0Qx.ttf", - "800": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiEORRCmsdu0Qx.ttf", - "900": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qLEORRCmsdu0Qx.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF-RRCmsdu0Qx.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF9RQAG8.ttf" - }, - { - "family": "Noto Serif Tibetan", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "tibetan" ], - "version": "v22", - "lastModified": "2023-03-09", - "files": { - "100": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYdPS7rdSy_32c.ttf", - "200": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYcPS7rdSy_32c.ttf", - "300": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIugcPS7rdSy_32c.ttf", - "500": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIoQcPS7rdSy_32c.ttf", - "600": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmImgbPS7rdSy_32c.ttf", - "700": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIlEbPS7rdSy_32c.ttf", - "800": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYbPS7rdSy_32c.ttf", - "900": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIh8bPS7rdSy_32c.ttf", - "regular": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcPS7rdSy_32c.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcDS_hcQ.ttf" - }, - { - "family": "Noto Serif Toto", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "toto" ], - "version": "v4", - "lastModified": "2023-03-09", - "files": { - "500": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCx_Il-aj55vdNug.ttf", - "600": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC_PPl-aj55vdNug.ttf", - "700": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC8rPl-aj55vdNug.ttf", - "regular": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCy3Il-aj55vdNug.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCy3Ip-ep4w.ttf" - }, - { - "family": "Noto Serif Yezidi", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "yezidi" ], - "version": "v16", - "lastModified": "2022-07-19", - "files": { - "500": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD6SEkrlGJgmVCqg.ttf", - "600": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDBSYkrlGJgmVCqg.ttf", - "700": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDPCYkrlGJgmVCqg.ttf", - "regular": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEkrlGJgmVCqg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEUr1uN.ttf" - }, - { - "family": "Noto Traditional Nushu", - "variants": [ "regular" ], - "subsets": [ "nushu" ], - "version": "v16", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/nototraditionalnushu/v16/SZco3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67J011GNh6SYA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nototraditionalnushu/v16/SZco3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67F0x_HA.ttf" - }, - { - "family": "Nova Cut", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/novacut/v24/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/novacut/v24/KFOkCnSYu8mL-39LkVxOIzc.ttf" - }, - { - "family": "Nova Flat", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/novaflat/v24/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/novaflat/v24/QdVUSTc-JgqpytEbVeb0uCFg.ttf" - }, - { - "family": "Nova Mono", - "variants": [ "regular" ], - "subsets": [ "greek", "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/novamono/v18/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNI49rXVEQQL8Y.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNJ49rXVEQQL8Y.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_A1J49rXVEQQL8Y.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49rXVEQQL8Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_GFJ49rXVEQQL8Y.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_I1O49rXVEQQL8Y.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_LRO49rXVEQQL8Y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNO49rXVEQQL8Y.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_PpO49rXVEQQL8Y.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + } + ] + }, + { + "name": "Noto Sans Mro", + "fontFamily": "Noto Sans Mro, sans-serif", + "slug": "noto-sans-mro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mro" + } + ] + }, + { + "name": "Noto Sans Multani", + "fontFamily": "Noto Sans Multani, sans-serif", + "slug": "noto-sans-multani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Multani" + } + ] + }, + { + "name": "Noto Sans Myanmar", + "fontFamily": "Noto Sans Myanmar, sans-serif", + "slug": "noto-sans-myanmar", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZs_y1ZtY3ymOryg38hOCSdOnFq0HGS1uEapkAC3AY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HE-98EwiEwLxR-r.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFa9MEwiEwLxR-r.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEC9cEwiEwLxR-r.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEu8sEwiEwLxR-r.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFK88EwiEwLxR-r.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFW8MEwiEwLxR-r.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFy8cEwiEwLxR-r.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + } + ] + }, + { + "name": "Noto Sans NKo", + "fontFamily": "Noto Sans NKo, sans-serif", + "slug": "noto-sans-nko", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnko/v2/esDX31ZdNv-KYGGJpKGk2_RpMpCMHMLBrdA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans NKo" + } + ] + }, + { + "name": "Noto Sans Nabataean", + "fontFamily": "Noto Sans Nabataean, sans-serif", + "slug": "noto-sans-nabataean", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnabataean/v15/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nabataean" + } + ] + }, + { + "name": "Noto Sans Nag Mundari", + "fontFamily": "Noto Sans Nag Mundari, sans-serif", + "slug": "noto-sans-nag-mundari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHRxirbUGA0whP19M.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nag Mundari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHRyqrbUGA0whP19M.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nag Mundari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHR8asbUGA0whP19M.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nag Mundari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHR_-sbUGA0whP19M.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nag Mundari" + } + ] + }, + { + "name": "Noto Sans Nandinagari", + "fontFamily": "Noto Sans Nandinagari, sans-serif", + "slug": "noto-sans-nandinagari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnandinagari/v3/or38Q7733eiDljA1IufXSNFT-1KI5y10H4jVa5RXzC1KOw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nandinagari" + } + ] + }, + { + "name": "Noto Sans New Tai Lue", + "fontFamily": "Noto Sans New Tai Lue, sans-serif", + "slug": "noto-sans-new-tai-lue", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAYUbghFPKzeY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans New Tai Lue" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pddfAYUbghFPKzeY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans New Tai Lue" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdTvHYUbghFPKzeY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans New Tai Lue" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdQLHYUbghFPKzeY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans New Tai Lue" + } + ] + }, + { + "name": "Noto Sans Newa", + "fontFamily": "Noto Sans Newa, sans-serif", + "slug": "noto-sans-newa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Newa" + } + ] + }, + { + "name": "Noto Sans Nushu", + "fontFamily": "Noto Sans Nushu, sans-serif", + "slug": "noto-sans-nushu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnushu/v19/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nushu" + } + ] + }, + { + "name": "Noto Sans Ogham", + "fontFamily": "Noto Sans Ogham, sans-serif", + "slug": "noto-sans-ogham", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansogham/v15/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ogham" + } + ] + }, + { + "name": "Noto Sans Ol Chiki", + "fontFamily": "Noto Sans Ol Chiki, sans-serif", + "slug": "noto-sans-ol-chiki", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ol Chiki" + }, + { + "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALVs267I6gVrz5gQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ol Chiki" + }, + { + "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALbcx67I6gVrz5gQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ol Chiki" + }, + { + "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALY4x67I6gVrz5gQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ol Chiki" + } + ] + }, + { + "name": "Noto Sans Old Hungarian", + "fontFamily": "Noto Sans Old Hungarian, sans-serif", + "slug": "noto-sans-old-hungarian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldhungarian/v15/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Hungarian" + } + ] + }, + { + "name": "Noto Sans Old Italic", + "fontFamily": "Noto Sans Old Italic, sans-serif", + "slug": "noto-sans-old-italic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansolditalic/v15/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Italic" + } + ] + }, + { + "name": "Noto Sans Old North Arabian", + "fontFamily": "Noto Sans Old North Arabian, sans-serif", + "slug": "noto-sans-old-north-arabian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldnortharabian/v15/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old North Arabian" + } + ] + }, + { + "name": "Noto Sans Old Permic", + "fontFamily": "Noto Sans Old Permic, sans-serif", + "slug": "noto-sans-old-permic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldpermic/v16/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Permic" + } + ] + }, + { + "name": "Noto Sans Old Persian", + "fontFamily": "Noto Sans Old Persian, sans-serif", + "slug": "noto-sans-old-persian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldpersian/v15/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Persian" + } + ] + }, + { + "name": "Noto Sans Old Sogdian", + "fontFamily": "Noto Sans Old Sogdian, sans-serif", + "slug": "noto-sans-old-sogdian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldsogdian/v15/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Sogdian" + } + ] + }, + { + "name": "Noto Sans Old South Arabian", + "fontFamily": "Noto Sans Old South Arabian, sans-serif", + "slug": "noto-sans-old-south-arabian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldsoutharabian/v15/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old South Arabian" + } + ] + }, + { + "name": "Noto Sans Old Turkic", + "fontFamily": "Noto Sans Old Turkic, sans-serif", + "slug": "noto-sans-old-turkic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldturkic/v15/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Turkic" + } + ] + }, + { + "name": "Noto Sans Oriya", + "fontFamily": "Noto Sans Oriya, sans-serif", + "slug": "noto-sans-oriya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0fq_c6LhHBRe-.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0f6_c6LhHBRe-.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Iviqf6_c6LhHBRe-.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_c6LhHBRe-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvjGf6_c6LhHBRe-.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgqeK_c6LhHBRe-.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgTeK_c6LhHBRe-.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0eK_c6LhHBRe-.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvhdeK_c6LhHBRe-.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + } + ] + }, + { + "name": "Noto Sans Osage", + "fontFamily": "Noto Sans Osage, sans-serif", + "slug": "noto-sans-osage", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Osage" + } + ] + }, + { + "name": "Noto Sans Osmanya", + "fontFamily": "Noto Sans Osmanya, sans-serif", + "slug": "noto-sans-osmanya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Osmanya" + } + ] + }, + { + "name": "Noto Sans Pahawh Hmong", + "fontFamily": "Noto Sans Pahawh Hmong, sans-serif", + "slug": "noto-sans-pahawh-hmong", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanspahawhhmong/v18/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Pahawh Hmong" + } + ] + }, + { + "name": "Noto Sans Palmyrene", + "fontFamily": "Noto Sans Palmyrene, sans-serif", + "slug": "noto-sans-palmyrene", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanspalmyrene/v15/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Palmyrene" + } + ] + }, + { + "name": "Noto Sans Pau Cin Hau", + "fontFamily": "Noto Sans Pau Cin Hau, sans-serif", + "slug": "noto-sans-pau-cin-hau", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanspaucinhau/v20/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Pau Cin Hau" + } + ] + }, + { + "name": "Noto Sans Phags Pa", + "fontFamily": "Noto Sans Phags Pa, sans-serif", + "slug": "noto-sans-phags-pa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Phags Pa" + } + ] + }, + { + "name": "Noto Sans Phoenician", + "fontFamily": "Noto Sans Phoenician, sans-serif", + "slug": "noto-sans-phoenician", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansphoenician/v15/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Phoenician" + } + ] + }, + { + "name": "Noto Sans Psalter Pahlavi", + "fontFamily": "Noto Sans Psalter Pahlavi, sans-serif", + "slug": "noto-sans-psalter-pahlavi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanspsalterpahlavi/v15/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Psalter Pahlavi" + } + ] + }, + { + "name": "Noto Sans Rejang", + "fontFamily": "Noto Sans Rejang, sans-serif", + "slug": "noto-sans-rejang", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansrejang/v18/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Rejang" + } + ] + }, + { + "name": "Noto Sans Runic", + "fontFamily": "Noto Sans Runic, sans-serif", + "slug": "noto-sans-runic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansrunic/v15/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Runic" + } + ] + }, + { + "name": "Noto Sans SC", + "fontFamily": "Noto Sans SC, sans-serif", + "slug": "noto-sans-sc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + } + ] + }, + { + "name": "Noto Sans Samaritan", + "fontFamily": "Noto Sans Samaritan, sans-serif", + "slug": "noto-sans-samaritan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssamaritan/v15/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUo5jNlOVMzQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Samaritan" + } + ] + }, + { + "name": "Noto Sans Saurashtra", + "fontFamily": "Noto Sans Saurashtra, sans-serif", + "slug": "noto-sans-saurashtra", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssaurashtra/v19/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Saurashtra" + } + ] + }, + { + "name": "Noto Sans Sharada", + "fontFamily": "Noto Sans Sharada, sans-serif", + "slug": "noto-sans-sharada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sharada" + } + ] + }, + { + "name": "Noto Sans Shavian", + "fontFamily": "Noto Sans Shavian, sans-serif", + "slug": "noto-sans-shavian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansshavian/v15/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Shavian" + } + ] + }, + { + "name": "Noto Sans Siddham", + "fontFamily": "Noto Sans Siddham, sans-serif", + "slug": "noto-sans-siddham", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssiddham/v17/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Siddham" + } + ] + }, + { + "name": "Noto Sans SignWriting", + "fontFamily": "Noto Sans SignWriting, sans-serif", + "slug": "noto-sans-signwriting", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssignwriting/v1/Noas6VX_wIWFbTTCrYmvy9A2UnkL-2SZAWiUEVCARYQemg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans SignWriting" + } + ] + }, + { + "name": "Noto Sans Sinhala", + "fontFamily": "Noto Sans Sinhala, sans-serif", + "slug": "noto-sans-sinhala", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2b5lgLpJwbQRM.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2a5lgLpJwbQRM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwlOa5lgLpJwbQRM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwj-a5lgLpJwbQRM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwtOd5lgLpJwbQRM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwuqd5lgLpJwbQRM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2d5lgLpJwbQRM.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwqSd5lgLpJwbQRM.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + } + ] + }, + { + "name": "Noto Sans Sogdian", + "fontFamily": "Noto Sans Sogdian, sans-serif", + "slug": "noto-sans-sogdian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssogdian/v15/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sogdian" + } + ] + }, + { + "name": "Noto Sans Sora Sompeng", + "fontFamily": "Noto Sans Sora Sompeng, sans-serif", + "slug": "noto-sans-sora-sompeng", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sora Sompeng" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHRO18DpZXJQd4Mu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sora Sompeng" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSi0MDpZXJQd4Mu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sora Sompeng" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSb0MDpZXJQd4Mu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sora Sompeng" + } + ] + }, + { + "name": "Noto Sans Soyombo", + "fontFamily": "Noto Sans Soyombo, sans-serif", + "slug": "noto-sans-soyombo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssoyombo/v15/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Soyombo" + } + ] + }, + { + "name": "Noto Sans Sundanese", + "fontFamily": "Noto Sans Sundanese, sans-serif", + "slug": "noto-sans-sundanese", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sundanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxbNNHCizv7fQES.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sundanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6cty3M9HCizv7fQES.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sundanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctyOM9HCizv7fQES.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sundanese" + } + ] + }, + { + "name": "Noto Sans Syloti Nagri", + "fontFamily": "Noto Sans Syloti Nagri, sans-serif", + "slug": "noto-sans-syloti-nagri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syloti Nagri" + } + ] + }, + { + "name": "Noto Sans Symbols", + "fontFamily": "Noto Sans Symbols, sans-serif", + "slug": "noto-sans-symbols", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ4gavVFRkzrbQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_Q8gavVFRkzrbQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gIw8gavVFRkzrbQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gTw8gavVFRkzrbQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gowggavVFRkzrbQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gmgggavVFRkzrbQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_QggavVFRkzrbQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g1AggavVFRkzrbQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + } + ] + }, + { + "name": "Noto Sans Symbols 2", + "fontFamily": "Noto Sans Symbols 2, sans-serif", + "slug": "noto-sans-symbols-2", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssymbols2/v19/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols 2" + } + ] + }, + { + "name": "Noto Sans Syriac", + "fontFamily": "Noto Sans Syriac, sans-serif", + "slug": "noto-sans-syriac", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9caJyZfUL_FC.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD9MaJyZfUL_FC.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Ud9MaJyZfUL_FC.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9MaJyZfUL_FC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Vx9MaJyZfUL_FC.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wd88aJyZfUL_FC.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wk88aJyZfUL_FC.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD88aJyZfUL_FC.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Xq88aJyZfUL_FC.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + } + ] + }, + { + "name": "Noto Sans TC", + "fontFamily": "Noto Sans TC, sans-serif", + "slug": "noto-sans-tc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + } + ] + }, + { + "name": "Noto Sans Tagalog", + "fontFamily": "Noto Sans Tagalog, sans-serif", + "slug": "noto-sans-tagalog", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstagalog/v18/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tagalog" + } + ] + }, + { + "name": "Noto Sans Tagbanwa", + "fontFamily": "Noto Sans Tagbanwa, sans-serif", + "slug": "noto-sans-tagbanwa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstagbanwa/v18/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tagbanwa" + } + ] + }, + { + "name": "Noto Sans Tai Le", + "fontFamily": "Noto Sans Tai Le, sans-serif", + "slug": "noto-sans-tai-le", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Le" + } + ] + }, + { + "name": "Noto Sans Tai Tham", + "fontFamily": "Noto Sans Tai Tham, sans-serif", + "slug": "noto-sans-tai-tham", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Tham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBBcbPgquyaRGKMw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Tham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBPscPgquyaRGKMw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Tham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBMIcPgquyaRGKMw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Tham" + } + ] + }, + { + "name": "Noto Sans Tai Viet", + "fontFamily": "Noto Sans Tai Viet, sans-serif", + "slug": "noto-sans-tai-viet", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstaiviet/v16/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Viet" + } + ] + }, + { + "name": "Noto Sans Takri", + "fontFamily": "Noto Sans Takri, sans-serif", + "slug": "noto-sans-takri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstakri/v21/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Takri" + } + ] + }, + { + "name": "Noto Sans Tamil", + "fontFamily": "Noto Sans Tamil, sans-serif", + "slug": "noto-sans-tamil", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGor0RqKDt_EvT.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGo70RqKDt_EvT.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7uYo70RqKDt_EvT.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7v0o70RqKDt_EvT.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7sYpL0RqKDt_EvT.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7shpL0RqKDt_EvT.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGpL0RqKDt_EvT.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tvpL0RqKDt_EvT.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + } + ] + }, + { + "name": "Noto Sans Tamil Supplement", + "fontFamily": "Noto Sans Tamil Supplement, sans-serif", + "slug": "noto-sans-tamil-supplement", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstamilsupplement/v19/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil Supplement" + } + ] + }, + { + "name": "Noto Sans Tangsa", + "fontFamily": "Noto Sans Tangsa, sans-serif", + "slug": "noto-sans-tangsa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1YkyoRYdplyJDA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tangsa" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1qkyoRYdplyJDA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tangsa" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2GlCoRYdplyJDA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tangsa" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2_lCoRYdplyJDA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tangsa" + } + ] + }, + { + "name": "Noto Sans Telugu", + "fontFamily": "Noto Sans Telugu, sans-serif", + "slug": "noto-sans-telugu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezfqQUbf-3v37w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zbqQUbf-3v37w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntJTbqQUbf-3v37w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntSTbqQUbf-3v37w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntpTHqQUbf-3v37w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntnDHqQUbf-3v37w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zHqQUbf-3v37w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt0jHqQUbf-3v37w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + } + ] + }, + { + "name": "Noto Sans Thaana", + "fontFamily": "Noto Sans Thaana, sans-serif", + "slug": "noto-sans-thaana", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbxLhnu4-tbNu.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VrbhLhnu4-tbNu.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4W1bhLhnu4-tbNu.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XZbhLhnu4-tbNu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4U1aRLhnu4-tbNu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4UMaRLhnu4-tbNu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VraRLhnu4-tbNu.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VCaRLhnu4-tbNu.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + } + ] + }, + { + "name": "Noto Sans Thai", + "fontFamily": "Noto Sans Thai, sans-serif", + "slug": "noto-sans-thai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RspzF-QRvzzXg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRtpzF-QRvzzXg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU8ptpzF-QRvzzXg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU6ZtpzF-QRvzzXg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU0pqpzF-QRvzzXg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU3NqpzF-QRvzzXg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRqpzF-QRvzzXg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUz1qpzF-QRvzzXg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + } + ] + }, + { + "name": "Noto Sans Thai Looped", + "fontFamily": "Noto Sans Thai Looped, sans-serif", + "slug": "noto-sans-thai-looped", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50fF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3YX6AYeCT_Wfd1.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y84E4UgrzUO5sKA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yl4I4UgrzUO5sKA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gO6ocWiHvWQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yz4M4UgrzUO5sKA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y44Q4UgrzUO5sKA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yh4U4UgrzUO5sKA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Ym4Y4UgrzUO5sKA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yv4c4UgrzUO5sKA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + } + ] + }, + { + "name": "Noto Sans Tifinagh", + "fontFamily": "Noto Sans Tifinagh, sans-serif", + "slug": "noto-sans-tifinagh", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstifinagh/v17/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tifinagh" + } + ] + }, + { + "name": "Noto Sans Tirhuta", + "fontFamily": "Noto Sans Tirhuta, sans-serif", + "slug": "noto-sans-tirhuta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstirhuta/v15/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tirhuta" + } + ] + }, + { + "name": "Noto Sans Ugaritic", + "fontFamily": "Noto Sans Ugaritic, sans-serif", + "slug": "noto-sans-ugaritic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansugaritic/v15/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ugaritic" + } + ] + }, + { + "name": "Noto Sans Vai", + "fontFamily": "Noto Sans Vai, sans-serif", + "slug": "noto-sans-vai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Vai" + } + ] + }, + { + "name": "Noto Sans Wancho", + "fontFamily": "Noto Sans Wancho, sans-serif", + "slug": "noto-sans-wancho", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Wancho" + } + ] + }, + { + "name": "Noto Sans Warang Citi", + "fontFamily": "Noto Sans Warang Citi, sans-serif", + "slug": "noto-sans-warang-citi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Warang Citi" + } + ] + }, + { + "name": "Noto Sans Yi", + "fontFamily": "Noto Sans Yi, sans-serif", + "slug": "noto-sans-yi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansyi/v19/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Yi" + } + ] + }, + { + "name": "Noto Sans Zanabazar Square", + "fontFamily": "Noto Sans Zanabazar Square, sans-serif", + "slug": "noto-sans-zanabazar-square", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanszanabazarsquare/v16/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Zanabazar Square" + } + ] + }, + { + "name": "Noto Serif", + "fontFamily": "Noto Serif, serif", + "slug": "noto-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserif/v21/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v21/ga6Kaw1J5X9T9RW6j9bNfFIWbTq6fMRRMw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v21/ga6Law1J5X9T9RW6j9bNdOwzTRCUcM1IKoY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v21/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedO9NOoYIDg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + } + ] + }, + { + "name": "Noto Serif Ahom", + "fontFamily": "Noto Serif Ahom, serif", + "slug": "noto-serif-ahom", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifahom/v19/FeVIS0hfp6cprmEUffAW_fUL_AN-wuYrPFiwaw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ahom" + } + ] + }, + { + "name": "Noto Serif Armenian", + "fontFamily": "Noto Serif Armenian, serif", + "slug": "noto-serif-armenian", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8ObxvXagGdkbg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8KbxvXagGdkbg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZ1cKbxvXagGdkbg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8KbxvXagGdkbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZucKbxvXagGdkbg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZVcWbxvXagGdkbg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZbMWbxvXagGdkbg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8WbxvXagGdkbg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZIsWbxvXagGdkbg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + } + ] + }, + { + "name": "Noto Serif Balinese", + "fontFamily": "Noto Serif Balinese, serif", + "slug": "noto-serif-balinese", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifbalinese/v18/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRbgJdhapcUU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Balinese" + } + ] + }, + { + "name": "Noto Serif Bengali", + "fontFamily": "Noto Serif Bengali, serif", + "slug": "noto-serif-bengali", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAH3qn4LjQH8yD.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAHnqn4LjQH8yD.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfdeHnqn4LjQH8yD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHnqn4LjQH8yD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcyHnqn4LjQH8yD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffeGXqn4LjQH8yD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffnGXqn4LjQH8yD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAGXqn4LjQH8yD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfepGXqn4LjQH8yD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + } + ] + }, + { + "name": "Noto Serif Devanagari", + "fontFamily": "Noto Serif Devanagari, serif", + "slug": "noto-serif-devanagari", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-og-HMUe1u_dv.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-ow-HMUe1u_dv.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTBgow-HMUe1u_dv.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-ow-HMUe1u_dv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTAMow-HMUe1u_dv.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDgpA-HMUe1u_dv.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDZpA-HMUe1u_dv.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-pA-HMUe1u_dv.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTCXpA-HMUe1u_dv.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + } + ] + }, + { + "name": "Noto Serif Display", + "fontFamily": "Noto Serif Display, serif", + "slug": "noto-serif-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd49gKaDU9hvzC.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd4tgKaDU9hvzC.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVoD4tgKaDU9hvzC.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4tgKaDU9hvzC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpv4tgKaDU9hvzC.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVqD5dgKaDU9hvzC.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVq65dgKaDU9hvzC.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd5dgKaDU9hvzC.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVr05dgKaDU9hvzC.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBIYjEfg-zCmf4.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBJYjEfg-zCmf4.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoW5JYjEfg-zCmf4.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBJYjEfg-zCmf4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoQJJYjEfg-zCmf4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-Voe5OYjEfg-zCmf4.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoddOYjEfg-zCmf4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBOYjEfg-zCmf4.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoZlOYjEfg-zCmf4.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + } + ] + }, + { + "name": "Noto Serif Dogra", + "fontFamily": "Noto Serif Dogra, serif", + "slug": "noto-serif-dogra", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifdogra/v16/MQpP-XquKMC7ROPP3QOOlm7xPu3fGy63IbPzkns.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Dogra" + } + ] + }, + { + "name": "Noto Serif Ethiopic", + "fontFamily": "Noto Serif Ethiopic, serif", + "slug": "noto-serif-ethiopic", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSQjkaO9UVLyiw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSUjkaO9UVLyiw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCkyUjkaO9UVLyiw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUjkaO9UVLyiw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxC_yUjkaO9UVLyiw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCEyIjkaO9UVLyiw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCKiIjkaO9UVLyiw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSIjkaO9UVLyiw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCZCIjkaO9UVLyiw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + } + ] + }, + { + "name": "Noto Serif Georgian", + "fontFamily": "Noto Serif Georgian, serif", + "slug": "noto-serif-georgian", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvsfdzTw-FgZxQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzvofdzTw-FgZxQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSEPofdzTw-FgZxQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvofdzTw-FgZxQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSfPofdzTw-FgZxQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSkP0fdzTw-FgZxQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSqf0fdzTw-FgZxQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzv0fdzTw-FgZxQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aS5_0fdzTw-FgZxQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + } + ] + }, + { + "name": "Noto Serif Grantha", + "fontFamily": "Noto Serif Grantha, serif", + "slug": "noto-serif-grantha", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifgrantha/v19/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqFENLR7fHGw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Grantha" + } + ] + }, + { + "name": "Noto Serif Gujarati", + "fontFamily": "Noto Serif Gujarati, serif", + "slug": "noto-serif-gujarati", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycYzuM1Kf-OJu.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuaycIzuM1Kf-OJu.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuZscIzuM1Kf-OJu.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycIzuM1Kf-OJu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYAcIzuM1Kf-OJu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Hubsd4zuM1Kf-OJu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HubVd4zuM1Kf-OJu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huayd4zuM1Kf-OJu.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huabd4zuM1Kf-OJu.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + } + ] + }, + { + "name": "Noto Serif Gurmukhi", + "fontFamily": "Noto Serif Gurmukhi, serif", + "slug": "noto-serif-gurmukhi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eBTNmqVU7y6l.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-eRTNmqVU7y6l.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr7geRTNmqVU7y6l.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eRTNmqVU7y6l.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6MeRTNmqVU7y6l.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5gfhTNmqVU7y6l.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5ZfhTNmqVU7y6l.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-fhTNmqVU7y6l.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4XfhTNmqVU7y6l.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + } + ] + }, + { + "name": "Noto Serif HK", + "fontFamily": "Noto Serif HK, serif", + "slug": "noto-serif-hk", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-K2RmV9Su1M6i.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMcgK2RmV9Su1M6i.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMd-K2RmV9Su1M6i.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMdMK2RmV9Su1M6i.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMegLGRmV9Su1M6i.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMeZLGRmV9Su1M6i.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-LGRmV9Su1M6i.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMfXLGRmV9Su1M6i.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + } + ] + }, + { + "name": "Noto Serif Hebrew", + "fontFamily": "Noto Serif Hebrew, serif", + "slug": "noto-serif-hebrew", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwTAG8_vlQxz24.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwSAG8_vlQxz24.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVFISAG8_vlQxz24.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSAG8_vlQxz24.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVD4SAG8_vlQxz24.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVNIVAG8_vlQxz24.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVOsVAG8_vlQxz24.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwVAG8_vlQxz24.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVKUVAG8_vlQxz24.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + } + ] + }, + { + "name": "Noto Serif JP", + "fontFamily": "Noto Serif JP, serif", + "slug": "noto-serif-jp", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + } + ] + }, + { + "name": "Noto Serif KR", + "fontFamily": "Noto Serif KR, serif", + "slug": "noto-serif-kr", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + } + ] + }, + { + "name": "Noto Serif Kannada", + "fontFamily": "Noto Serif Kannada, serif", + "slug": "noto-serif-kannada", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYCceRJ71svgcI.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYDceRJ71svgcI.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgZgDceRJ71svgcI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDceRJ71svgcI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgfQDceRJ71svgcI.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgRgEceRJ71svgcI.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgSEEceRJ71svgcI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYEceRJ71svgcI.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgW8EceRJ71svgcI.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + } + ] + }, + { + "name": "Noto Serif Khmer", + "fontFamily": "Noto Serif Khmer, serif", + "slug": "noto-serif-khmer", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B4wXEZK9Xo4xg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaB8wXEZK9Xo4xg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNth8wXEZK9Xo4xg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8wXEZK9Xo4xg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN2h8wXEZK9Xo4xg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNNhgwXEZK9Xo4xg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNDxgwXEZK9Xo4xg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaBgwXEZK9Xo4xg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNQRgwXEZK9Xo4xg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + } + ] + }, + { + "name": "Noto Serif Khojki", + "fontFamily": "Noto Serif Khojki, serif", + "slug": "noto-serif-khojki", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY0ghvyZ0Qtc5HAQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khojki" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY4AhvyZ0Qtc5HAQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khojki" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYDA9vyZ0Qtc5HAQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khojki" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYNQ9vyZ0Qtc5HAQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khojki" + } + ] + }, + { + "name": "Noto Serif Lao", + "fontFamily": "Noto Serif Lao, serif", + "slug": "noto-serif-lao", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMLrvOjlmyhHHQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMKrvOjlmyhHHQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8Vb0KrvOjlmyhHHQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKrvOjlmyhHHQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VdEKrvOjlmyhHHQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VT0NrvOjlmyhHHQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VQQNrvOjlmyhHHQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMNrvOjlmyhHHQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VUoNrvOjlmyhHHQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + } + ] + }, + { + "name": "Noto Serif Malayalam", + "fontFamily": "Noto Serif Malayalam, serif", + "slug": "noto-serif-malayalam", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-1fnVwHpQVySg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-xfnVwHpQVySg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL16exfnVwHpQVySg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xfnVwHpQVySg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1hexfnVwHpQVySg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1aetfnVwHpQVySg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1UOtfnVwHpQVySg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-tfnVwHpQVySg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1HutfnVwHpQVySg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + } + ] + }, + { + "name": "Noto Serif Myanmar", + "fontFamily": "Noto Serif Myanmar, serif", + "slug": "noto-serif-myanmar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJudM7F2Yv76aBKKs-bHMQfAHUw3jnNwBDsU9X6RPzQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNbDHMefv2TeXJng.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNCDLMefv2TeXJng.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1pBrocdDqRA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNUDPMefv2TeXJng.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNfDTMefv2TeXJng.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNGDXMefv2TeXJng.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNBDbMefv2TeXJng.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNIDfMefv2TeXJng.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + } + ] + }, + { + "name": "Noto Serif NP Hmong", + "fontFamily": "Noto Serif NP Hmong, serif", + "slug": "noto-serif-np-hmong", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbjPhFLp3u0rVO-d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif NP Hmong" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbj9hFLp3u0rVO-d.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif NP Hmong" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgRg1Lp3u0rVO-d.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif NP Hmong" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgog1Lp3u0rVO-d.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif NP Hmong" + } + ] + }, + { + "name": "Noto Serif Oriya", + "fontFamily": "Noto Serif Oriya, serif", + "slug": "noto-serif-oriya", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxrc_Hy-v039MF1j.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxru_Hy-v039MF1j.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxoC-3y-v039MF1j.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxo7-3y-v039MF1j.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Oriya" + } + ] + }, + { + "name": "Noto Serif SC", + "fontFamily": "Noto Serif SC, serif", + "slug": "noto-serif-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + } + ] + }, + { + "name": "Noto Serif Sinhala", + "fontFamily": "Noto Serif Sinhala, serif", + "slug": "noto-serif-sinhala", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxRlMsxaLRn3W-.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExR1MsxaLRn3W-.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pHvR1MsxaLRn3W-.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR1MsxaLRn3W-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGDR1MsxaLRn3W-.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFvQFMsxaLRn3W-.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFWQFMsxaLRn3W-.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExQFMsxaLRn3W-.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pEYQFMsxaLRn3W-.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + } + ] + }, + { + "name": "Noto Serif TC", + "fontFamily": "Noto Serif TC, serif", + "slug": "noto-serif-tc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + } + ] + }, + { + "name": "Noto Serif Tamil", + "fontFamily": "Noto Serif Tamil, serif", + "slug": "noto-serif-tamil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN6R8Pz3v8Etew.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNN-R8Pz3v8Etew.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecat6t-R8Pz3v8Etew.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-R8Pz3v8Etew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatht-R8Pz3v8Etew.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatatiR8Pz3v8Etew.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatU9iR8Pz3v8Etew.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNNiR8Pz3v8Etew.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatHdiR8Pz3v8Etew.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5svbzncQ9e3wx.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5s_bzncQ9e3wx.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJwns_bzncQ9e3wx.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5s_bzncQ9e3wx.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJxLs_bzncQ9e3wx.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyntPbzncQ9e3wx.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyetPbzncQ9e3wx.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5tPbzncQ9e3wx.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJzQtPbzncQ9e3wx.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + } + ] + }, + { + "name": "Noto Serif Tangut", + "fontFamily": "Noto Serif Tangut, serif", + "slug": "noto-serif-tangut", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftangut/v15/xn76YGc72GKoTvER4Gn3b4m9Ern7Em41fcvN2KT4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tangut" + } + ] + }, + { + "name": "Noto Serif Telugu", + "fontFamily": "Noto Serif Telugu, serif", + "slug": "noto-serif-telugu", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TGwuY2fjgrZYA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTCwuY2fjgrZYA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DqzCwuY2fjgrZYA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCwuY2fjgrZYA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DxzCwuY2fjgrZYA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DKzewuY2fjgrZYA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DEjewuY2fjgrZYA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTewuY2fjgrZYA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DXDewuY2fjgrZYA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + } + ] + }, + { + "name": "Noto Serif Thai", + "fontFamily": "Noto Serif Thai, serif", + "slug": "noto-serif-thai", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiFuRRCmsdu0Qx.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiF-RRCmsdu0Qx.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0p8F-RRCmsdu0Qx.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF-RRCmsdu0Qx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oQF-RRCmsdu0Qx.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0r8EORRCmsdu0Qx.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0rFEORRCmsdu0Qx.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiEORRCmsdu0Qx.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qLEORRCmsdu0Qx.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + } + ] + }, + { + "name": "Noto Serif Tibetan", + "fontFamily": "Noto Serif Tibetan, serif", + "slug": "noto-serif-tibetan", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYdPS7rdSy_32c.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYcPS7rdSy_32c.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIugcPS7rdSy_32c.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcPS7rdSy_32c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIoQcPS7rdSy_32c.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmImgbPS7rdSy_32c.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIlEbPS7rdSy_32c.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYbPS7rdSy_32c.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIh8bPS7rdSy_32c.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + } + ] + }, + { + "name": "Noto Serif Toto", + "fontFamily": "Noto Serif Toto, serif", + "slug": "noto-serif-toto", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCy3Il-aj55vdNug.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Toto" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCx_Il-aj55vdNug.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Toto" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC_PPl-aj55vdNug.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Toto" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC8rPl-aj55vdNug.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Toto" + } + ] + }, + { + "name": "Noto Serif Yezidi", + "fontFamily": "Noto Serif Yezidi, serif", + "slug": "noto-serif-yezidi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEkrlGJgmVCqg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Yezidi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD6SEkrlGJgmVCqg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Yezidi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDBSYkrlGJgmVCqg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Yezidi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDPCYkrlGJgmVCqg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Yezidi" + } + ] + }, + { + "name": "Noto Traditional Nushu", + "fontFamily": "Noto Traditional Nushu, sans-serif", + "slug": "noto-traditional-nushu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v16/SZco3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67J011GNh6SYA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Traditional Nushu" + } + ] + }, + { + "name": "Nova Cut", + "fontFamily": "Nova Cut, system-ui", + "slug": "nova-cut", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novacut/v24/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Cut" + } + ] + }, + { + "name": "Nova Flat", + "fontFamily": "Nova Flat, system-ui", + "slug": "nova-flat", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novaflat/v24/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Flat" + } + ] + }, + { + "name": "Nova Mono", + "fontFamily": "Nova Mono, monospace", + "slug": "nova-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/novamono/v18/Cn-0JtiGWQ5Ajb--MRKvYWZc.ttf" - }, - { - "family": "Nova Oval", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/novaoval/v24/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/novaoval/v24/jAnEgHdmANHvPenMaswyMIWl.ttf" - }, - { - "family": "Nova Round", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/novaround/v21/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/novaround/v21/flU9Rqquw5UhEnlwTJYTUYbUfQ.ttf" - }, - { - "family": "Nova Script", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v25", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/novascript/v25/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/novascript/v25/7Au7p_IpkSWSTWaFWkumvlQMGFk.ttf" - }, - { - "family": "Nova Slim", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/novaslim/v24/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/novaslim/v24/Z9XUDmZNQAuem8jyZcnOycmM.ttf" - }, - { - "family": "Nova Square", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/novasquare/v20/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/novasquare/v20/RrQUbo9-9DV7b06QHgSWsahBT4c.ttf" - }, - { - "family": "Numans", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH84YBIk.ttf" - }, - { - "family": "Nunito", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v25", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshRTM9jo7eTWk.ttf", - "300": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhRTM9jo7eTWk.ttf", - "500": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTM9jo7eTWk.ttf", - "600": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM9jo7eTWk.ttf", - "700": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM9jo7eTWk.ttf", - "800": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTM9jo7eTWk.ttf", - "900": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTM9jo7eTWk.ttf", - "regular": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM9jo7eTWk.ttf", - "200italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXA3iqzbXWnoeg.ttf", - "300italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83A3iqzbXWnoeg.ttf", - "italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3iqzbXWnoeg.ttf", - "500italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNin3A3iqzbXWnoeg.ttf", - "600italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3c3iqzbXWnoeg.ttf", - "700italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSnc3iqzbXWnoeg.ttf", - "800italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXc3iqzbXWnoeg.ttf", - "900italic": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3iqzbXWnoeg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTI3ig.ttf" - }, - { - "family": "Nunito Sans", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v15", - "lastModified": "2023-04-27", - "files": { - "200": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVilntF8kA_Ykqw.ttf", - "300": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GiClntF8kA_Ykqw.ttf", - "500": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G5ClntF8kA_Ykqw.ttf", - "600": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GCC5ntF8kA_Ykqw.ttf", - "700": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5ntF8kA_Ykqw.ttf", - "800": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVi5ntF8kA_Ykqw.ttf", - "900": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4Gfy5ntF8kA_Ykqw.ttf", - "regular": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilntF8kA_Ykqw.ttf", - "200italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP91UgIfM0qxVd.ttf", - "300italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmrR91UgIfM0qxVd.ttf", - "italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmqP91UgIfM0qxVd.ttf", - "500italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmq991UgIfM0qxVd.ttf", - "600italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpR8FUgIfM0qxVd.ttf", - "700italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpo8FUgIfM0qxVd.ttf", - "800italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP8FUgIfM0qxVd.ttf", - "900italic": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmom8FUgIfM0qxVd.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilXtVUg.ttf" - }, - { - "family": "Nuosu SIL", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "yi" ], - "version": "v5", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/nuosusil/v5/8vIK7wM3wmRn_kc4uAjeFGxbO_zo-w.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/nuosusil/v5/8vIK7wM3wmRn_kc4uAjuFWZf.ttf" - }, - { - "family": "Odibee Sans", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/odibeesans/v14/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/odibeesans/v14/neIPzCSooYAho6WvjeToRbkzcJU.ttf" - }, - { - "family": "Odor Mean Chey", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin" ], - "version": "v27", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/odormeanchey/v27/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/odormeanchey/v27/raxkHiKDttkTe1aOGcJMR1A_4lrZ0T4.ttf" - }, - { - "family": "Offside", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-03-21", - "files": { - "regular": "http://fonts.gstatic.com/s/offside/v22/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/offside/v22/HI_KiYMWKa9QrAykc5DoQg.ttf" - }, - { - "family": "Oi", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "tamil", - "vietnamese" - ], - "version": "v16", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/oi/v16/w8gXH2EuRqtaut6yjBOG.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/oi/v16/w8gXH2EuRptbsNo.ttf" - }, - { - "family": "Old Standard TT", - "variants": [ "regular", "italic", "700" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf", - "regular": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf", - "italic": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQubh3o1vLImiwAVvYawgcf2eVerFq9.ttf" - }, - { - "family": "Oldenburg", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/oldenburg/v20/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/oldenburg/v20/fC1jPY5JYWzbywv7c4VKUESs.ttf" - }, - { - "family": "Ole", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rd89fw69qJ_ew.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novamono/v18/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Mono" + } + ] + }, + { + "name": "Nova Oval", + "fontFamily": "Nova Oval, system-ui", + "slug": "nova-oval", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novaoval/v24/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Oval" + } + ] + }, + { + "name": "Nova Round", + "fontFamily": "Nova Round, system-ui", + "slug": "nova-round", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novaround/v21/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Round" + } + ] + }, + { + "name": "Nova Script", + "fontFamily": "Nova Script, system-ui", + "slug": "nova-script", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novascript/v25/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Script" + } + ] + }, + { + "name": "Nova Slim", + "fontFamily": "Nova Slim, system-ui", + "slug": "nova-slim", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novaslim/v24/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Slim" + } + ] + }, + { + "name": "Nova Square", + "fontFamily": "Nova Square, system-ui", + "slug": "nova-square", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novasquare/v20/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Square" + } + ] + }, + { + "name": "Numans", + "fontFamily": "Numans, sans-serif", + "slug": "numans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Numans" + } + ] + }, + { + "name": "Nunito", + "fontFamily": "Nunito, sans-serif", + "slug": "nunito", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshRTM9jo7eTWk.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhRTM9jo7eTWk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM9jo7eTWk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTM9jo7eTWk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM9jo7eTWk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM9jo7eTWk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTM9jo7eTWk.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTM9jo7eTWk.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXA3iqzbXWnoeg.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83A3iqzbXWnoeg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3iqzbXWnoeg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNin3A3iqzbXWnoeg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3c3iqzbXWnoeg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSnc3iqzbXWnoeg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXc3iqzbXWnoeg.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3iqzbXWnoeg.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Nunito" + } + ] + }, + { + "name": "Nunito Sans", + "fontFamily": "Nunito Sans, sans-serif", + "slug": "nunito-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVilntF8kA_Ykqw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GiClntF8kA_Ykqw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilntF8kA_Ykqw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G5ClntF8kA_Ykqw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GCC5ntF8kA_Ykqw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5ntF8kA_Ykqw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVi5ntF8kA_Ykqw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4Gfy5ntF8kA_Ykqw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP91UgIfM0qxVd.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmrR91UgIfM0qxVd.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmqP91UgIfM0qxVd.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmq991UgIfM0qxVd.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpR8FUgIfM0qxVd.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpo8FUgIfM0qxVd.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP8FUgIfM0qxVd.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmom8FUgIfM0qxVd.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + } + ] + }, + { + "name": "Nuosu SIL", + "fontFamily": "Nuosu SIL, serif", + "slug": "nuosu-sil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nuosusil/v5/8vIK7wM3wmRn_kc4uAjeFGxbO_zo-w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nuosu SIL" + } + ] + }, + { + "name": "Odibee Sans", + "fontFamily": "Odibee Sans, system-ui", + "slug": "odibee-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/odibeesans/v14/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Odibee Sans" + } + ] + }, + { + "name": "Odor Mean Chey", + "fontFamily": "Odor Mean Chey, serif", + "slug": "odor-mean-chey", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/odormeanchey/v27/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Odor Mean Chey" + } + ] + }, + { + "name": "Offside", + "fontFamily": "Offside, system-ui", + "slug": "offside", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/offside/v22/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Offside" + } + ] + }, + { + "name": "Oi", + "fontFamily": "Oi, system-ui", + "slug": "oi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oi/v16/w8gXH2EuRqtaut6yjBOG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oi" + } + ] + }, + { + "name": "Old Standard TT", + "fontFamily": "Old Standard TT, serif", + "slug": "old-standard-tt", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Old Standard TT" + }, + { + "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Old Standard TT" + }, + { + "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Old Standard TT" + } + ] + }, + { + "name": "Oldenburg", + "fontFamily": "Oldenburg, system-ui", + "slug": "oldenburg", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oldenburg/v20/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oldenburg" + } + ] + }, + { + "name": "Ole", + "fontFamily": "Ole, cursive", + "slug": "ole", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rdM9PY-.ttf" - }, - { - "family": "Oleo Script", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-05-10", - "files": { - "700": "http://fonts.gstatic.com/s/oleoscript/v14/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf", - "regular": "http://fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccChbu0o.ttf" - }, - { - "family": "Oleo Script Swash Caps", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-05-10", - "files": { - "700": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf", - "regular": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HAXukTQ.ttf" - }, - { - "family": "Oooh Baby", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v4", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/ooohbaby/v4/2sDcZGJWgJTT2Jf76xQDb2-4C7wFZQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rd89fw69qJ_ew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ole" + } + ] + }, + { + "name": "Oleo Script", + "fontFamily": "Oleo Script, system-ui", + "slug": "oleo-script", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oleo Script" + }, + { + "src": "http://fonts.gstatic.com/s/oleoscript/v14/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oleo Script" + } + ] + }, + { + "name": "Oleo Script Swash Caps", + "fontFamily": "Oleo Script Swash Caps, system-ui", + "slug": "oleo-script-swash-caps", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oleo Script Swash Caps" + }, + { + "src": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oleo Script Swash Caps" + } + ] + }, + { + "name": "Oooh Baby", + "fontFamily": "Oooh Baby, cursive", + "slug": "oooh-baby", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ooohbaby/v4/2sDcZGJWgJTT2Jf76xQzbmW8.ttf" - }, - { - "family": "Open Sans", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "800", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "hebrew", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v35", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4nY1M2xLER.ttf", - "500": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4nY1M2xLER.ttf", - "600": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4nY1M2xLER.ttf", - "700": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4nY1M2xLER.ttf", - "800": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4nY1M2xLER.ttf", - "regular": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4nY1M2xLER.ttf", - "300italic": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVcUwaERZjA.ttf", - "italic": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVcUwaERZjA.ttf", - "500italic": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVcUwaERZjA.ttf", - "600italic": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVcUwaERZjA.ttf", - "700italic": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVcUwaERZjA.ttf", - "800italic": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVcUwaERZjA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4maVc.ttf" - }, - { - "family": "Oranienbaum", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-0zm5Eg.ttf" - }, - { - "family": "Orbitron", - "variants": [ "regular", "500", "600", "700", "800", "900" ], - "subsets": [ "latin" ], - "version": "v29", - "lastModified": "2023-03-21", - "files": { - "500": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xpmIyXjU1pg.ttf", - "600": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxpmIyXjU1pg.ttf", - "700": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_CmxpmIyXjU1pg.ttf", - "800": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxpmIyXjU1pg.ttf", - "900": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxpmIyXjU1pg.ttf", - "regular": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6Bp2g2.ttf" - }, - { - "family": "Oregano", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/oregano/v13/If2IXTPxciS3H4S2kZffPznO3yM.ttf", - "italic": "http://fonts.gstatic.com/s/oregano/v13/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/oregano/v13/If2IXTPxciS3H4S2oZbVOw.ttf" - }, - { - "family": "Orelega One", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/orelegaone/v10/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/orelegaone/v10/3qTpojOggD2XtAdFb-QXZFt73kM.ttf" - }, - { - "family": "Orienta", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-03-21", - "files": { - "regular": "http://fonts.gstatic.com/s/orienta/v15/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/orienta/v15/PlI9FlK4Jrl5Y9zNSyai8A.ttf" - }, - { - "family": "Original Surfer", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/originalsurfer/v18/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/originalsurfer/v18/RWmQoKGZ9vIirYntXJ3_MbekzNMSDUFr.ttf" - }, - { - "family": "Oswald", - "variants": [ "200", "300", "regular", "500", "600", "700" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v49", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf", - "300": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf", - "500": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf", - "600": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf", - "700": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf", - "regular": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUBiYA.ttf" - }, - { - "family": "Outfit", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2023-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4G-EiAou6Y.ttf", - "200": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bC1C4G-EiAou6Y.ttf", - "300": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4G-EiAou6Y.ttf", - "500": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4G-EiAou6Y.ttf", - "600": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf", - "700": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4G-EiAou6Y.ttf", - "800": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bCyC4G-EiAou6Y.ttf", - "900": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4G-EiAou6Y.ttf", - "regular": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1O4C0Fg.ttf" - }, - { - "family": "Over the Rainbow", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/overtherainbow/v16/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ooohbaby/v4/2sDcZGJWgJTT2Jf76xQDb2-4C7wFZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oooh Baby" + } + ] + }, + { + "name": "Open Sans", + "fontFamily": "Open Sans, sans-serif", + "slug": "open-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4nY1M2xLER.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4nY1M2xLER.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4nY1M2xLER.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4nY1M2xLER.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4nY1M2xLER.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4nY1M2xLER.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVcUwaERZjA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVcUwaERZjA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVcUwaERZjA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVcUwaERZjA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVcUwaERZjA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVcUwaERZjA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Open Sans" + } + ] + }, + { + "name": "Oranienbaum", + "fontFamily": "Oranienbaum, serif", + "slug": "oranienbaum", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oranienbaum" + } + ] + }, + { + "name": "Orbitron", + "fontFamily": "Orbitron, sans-serif", + "slug": "orbitron", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xpmIyXjU1pg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxpmIyXjU1pg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_CmxpmIyXjU1pg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxpmIyXjU1pg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxpmIyXjU1pg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Orbitron" + } + ] + }, + { + "name": "Oregano", + "fontFamily": "Oregano, system-ui", + "slug": "oregano", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oregano/v13/If2IXTPxciS3H4S2kZffPznO3yM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oregano" + }, + { + "src": "http://fonts.gstatic.com/s/oregano/v13/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Oregano" + } + ] + }, + { + "name": "Orelega One", + "fontFamily": "Orelega One, system-ui", + "slug": "orelega-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/orelegaone/v10/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Orelega One" + } + ] + }, + { + "name": "Orienta", + "fontFamily": "Orienta, sans-serif", + "slug": "orienta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/orienta/v15/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Orienta" + } + ] + }, + { + "name": "Original Surfer", + "fontFamily": "Original Surfer, system-ui", + "slug": "original-surfer", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/originalsurfer/v18/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Original Surfer" + } + ] + }, + { + "name": "Oswald", + "fontFamily": "Oswald, sans-serif", + "slug": "oswald", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oswald" + } + ] + }, + { + "name": "Outfit", + "fontFamily": "Outfit, sans-serif", + "slug": "outfit", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4G-EiAou6Y.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bC1C4G-EiAou6Y.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4G-EiAou6Y.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4G-EiAou6Y.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4G-EiAou6Y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bCyC4G-EiAou6Y.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4G-EiAou6Y.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Outfit" + } + ] + }, + { + "name": "Over the Rainbow", + "fontFamily": "Over the Rainbow, cursive", + "slug": "over-the-rainbow", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/overtherainbow/v16/11haGoXG1k_HKhMLUWz7Mc7vvW5ulvKs8A.ttf" - }, - { - "family": "Overlock", - "variants": [ - "regular", - "italic", - "700", - "700italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf", - "900": "http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf", - "regular": "http://fonts.gstatic.com/s/overlock/v15/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf", - "italic": "http://fonts.gstatic.com/s/overlock/v15/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf", - "700italic": "http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf", - "900italic": "http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/overlock/v15/Z9XVDmdMWRiN1_T9Z7Tf6Ok.ttf" - }, - { - "family": "Overlock SC", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/overlocksc/v21/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/overlocksc/v21/1cX3aUHKGZrstGAY8nwVzEGBocA.ttf" - }, - { - "family": "Overpass", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PLrOZCLtce-og.ttf", - "200": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPPrOZCLtce-og.ttf", - "300": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrOZCLtce-og.ttf", - "500": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6zvPrOZCLtce-og.ttf", - "600": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6IvTrOZCLtce-og.ttf", - "700": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6G_TrOZCLtce-og.ttf", - "800": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPTrOZCLtce-og.ttf", - "900": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6VfTrOZCLtce-og.ttf", - "regular": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrOZCLtce-og.ttf", - "100italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADe5qPl8Kuosgz.ttf", - "200italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDepqPl8Kuosgz.ttf", - "300italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqPl8Kuosgz.ttf", - "italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqPl8Kuosgz.ttf", - "500italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLAxepqPl8Kuosgz.ttf", - "600italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDdfZqPl8Kuosgz.ttf", - "700italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDkfZqPl8Kuosgz.ttf", - "800italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDfZqPl8Kuosgz.ttf", - "900italic": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCqfZqPl8Kuosgz.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPbOJqP.ttf" - }, - { - "family": "Overpass Mono", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EWKokzzXur-SmIr.ttf", - "500": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXmokzzXur-SmIr.ttf", - "600": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUKpUzzXur-SmIr.ttf", - "700": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUzpUzzXur-SmIr.ttf", - "regular": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUokzzXur-SmIr.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overtherainbow/v16/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Over the Rainbow" + } + ] + }, + { + "name": "Overlock", + "fontFamily": "Overlock, system-ui", + "slug": "overlock", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Overlock" + } + ] + }, + { + "name": "Overlock SC", + "fontFamily": "Overlock SC, system-ui", + "slug": "overlock-sc", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overlocksc/v21/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Overlock SC" + } + ] + }, + { + "name": "Overpass", + "fontFamily": "Overpass, sans-serif", + "slug": "overpass", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PLrOZCLtce-og.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPPrOZCLtce-og.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrOZCLtce-og.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrOZCLtce-og.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6zvPrOZCLtce-og.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6IvTrOZCLtce-og.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6G_TrOZCLtce-og.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPTrOZCLtce-og.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6VfTrOZCLtce-og.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADe5qPl8Kuosgz.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDepqPl8Kuosgz.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqPl8Kuosgz.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqPl8Kuosgz.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLAxepqPl8Kuosgz.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDdfZqPl8Kuosgz.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDkfZqPl8Kuosgz.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDfZqPl8Kuosgz.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCqfZqPl8Kuosgz.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Overpass" + } + ] + }, + { + "name": "Overpass Mono", + "fontFamily": "Overpass Mono, monospace", + "slug": "overpass-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUonzyVO4.ttf" - }, - { - "family": "Ovo", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ovo/v17/yYLl0h7Wyfzjy4Q5_3WVxA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ovo/v17/yYLl0h7WyfzTyo49.ttf" - }, - { - "family": "Oxanium", - "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JfniMBXQ7d67x.ttf", - "300": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G80XfniMBXQ7d67x.ttf", - "500": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G817fniMBXQ7d67x.ttf", - "600": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82XeXiMBXQ7d67x.ttf", - "700": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82ueXiMBXQ7d67x.ttf", - "800": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JeXiMBXQ7d67x.ttf", - "regular": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfniMBXQ7d67x.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfkiND3A.ttf" - }, - { - "family": "Oxygen", - "variants": [ "300", "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf", - "700": "http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf", - "regular": "http://fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4LcnbuKiE0j.ttf" - }, - { - "family": "Oxygen Mono", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/oxygenmono/v14/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EWKokzzXur-SmIr.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + }, + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUokzzXur-SmIr.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + }, + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXmokzzXur-SmIr.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + }, + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUKpUzzXur-SmIr.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + }, + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUzpUzzXur-SmIr.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + } + ] + }, + { + "name": "Ovo", + "fontFamily": "Ovo, serif", + "slug": "ovo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ovo/v17/yYLl0h7Wyfzjy4Q5_3WVxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ovo" + } + ] + }, + { + "name": "Oxanium", + "fontFamily": "Oxanium, system-ui", + "slug": "oxanium", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JfniMBXQ7d67x.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G80XfniMBXQ7d67x.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfniMBXQ7d67x.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G817fniMBXQ7d67x.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82XeXiMBXQ7d67x.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82ueXiMBXQ7d67x.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JeXiMBXQ7d67x.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Oxanium" + } + ] + }, + { + "name": "Oxygen", + "fontFamily": "Oxygen, sans-serif", + "slug": "oxygen", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Oxygen" + }, + { + "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oxygen" + }, + { + "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oxygen" + } + ] + }, + { + "name": "Oxygen Mono", + "fontFamily": "Oxygen Mono, monospace", + "slug": "oxygen-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/oxygenmono/v14/h0GsssGg9FxgDgCjLeAd7hjex-s.ttf" - }, - { - "family": "PT Mono", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oxygenmono/v14/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oxygen Mono" + } + ] + }, + { + "name": "PT Mono", + "fontFamily": "PT Mono, monospace", + "slug": "pt-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9AnCkzNg.ttf" - }, - { - "family": "PT Sans", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf", - "regular": "http://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79P0WOxOGMMDQ.ttf", - "italic": "http://fonts.gstatic.com/s/ptsans/v17/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf", - "700italic": "http://fonts.gstatic.com/s/ptsans/v17/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0SEwA.ttf" - }, - { - "family": "PT Sans Caption", - "variants": [ "regular", "700" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf", - "regular": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlMVP6Hrxmt7-fsUFhlFXNIlpcafA_0.ttf" - }, - { - "family": "PT Sans Narrow", - "variants": [ "regular", "700" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf", - "regular": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngRUXNadjH0qYEzV7ab-oWlsbCAwRg.ttf" - }, - { - "family": "PT Serif", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/ptserif/v18/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf", - "regular": "http://fonts.gstatic.com/s/ptserif/v18/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf", - "italic": "http://fonts.gstatic.com/s/ptserif/v18/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf", - "700italic": "http://fonts.gstatic.com/s/ptserif/v18/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ptserif/v18/EJRVQgYoZZY2vCFuvAFQzro.ttf" - }, - { - "family": "PT Serif Caption", - "variants": [ "regular", "italic" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf", - "italic": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU019S7CA.ttf" - }, - { - "family": "Pacifico", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Mono" + } + ] + }, + { + "name": "PT Sans", + "fontFamily": "PT Sans, sans-serif", + "slug": "pt-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79P0WOxOGMMDQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ptsans/v17/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "PT Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "PT Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ptsans/v17/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "PT Sans" + } + ] + }, + { + "name": "PT Sans Caption", + "fontFamily": "PT Sans Caption, sans-serif", + "slug": "pt-sans-caption", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Sans Caption" + }, + { + "src": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "PT Sans Caption" + } + ] + }, + { + "name": "PT Sans Narrow", + "fontFamily": "PT Sans Narrow, sans-serif", + "slug": "pt-sans-narrow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Sans Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "PT Sans Narrow" + } + ] + }, + { + "name": "PT Serif", + "fontFamily": "PT Serif, serif", + "slug": "pt-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "PT Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "PT Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "PT Serif" + } + ] + }, + { + "name": "PT Serif Caption", + "fontFamily": "PT Serif Caption, serif", + "slug": "pt-serif-caption", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Serif Caption" + }, + { + "src": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "PT Serif Caption" + } + ] + }, + { + "name": "Pacifico", + "fontFamily": "Pacifico, cursive", + "slug": "pacifico", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ-6B6Mw.ttf" - }, - { - "family": "Padauk", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext", "myanmar" ], - "version": "v16", - "lastModified": "2022-11-09", - "files": { - "700": "http://fonts.gstatic.com/s/padauk/v16/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf", - "regular": "http://fonts.gstatic.com/s/padauk/v16/RrQRboJg-id7OnbBa0_g3LlYbg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/padauk/v16/RrQRboJg-id7OnbxakXk.ttf" - }, - { - "family": "Padyakke Expanded One", - "variants": [ "regular" ], - "subsets": [ "kannada", "latin", "latin-ext" ], - "version": "v2", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/padyakkeexpandedone/v2/K2FvfY9El_tbR0JfHb6WWvrBaU6XAUvC4IAYOKRkpDjeoQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/padyakkeexpandedone/v2/K2FvfY9El_tbR0JfHb6WWvrBaU6XAUvC4IAoOa5g.ttf" - }, - { - "family": "Palanquin", - "variants": [ "100", "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/palanquin/v13/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf", - "200": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf", - "300": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf", - "500": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf", - "600": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf", - "700": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf", - "regular": "http://fonts.gstatic.com/s/palanquin/v13/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/palanquin/v13/9XUnlJ90n1fBFg7ceXwcd1tI.ttf" - }, - { - "family": "Palanquin Dark", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf", - "600": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf", - "700": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf", - "regular": "http://fonts.gstatic.com/s/palanquindark/v12/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/palanquindark/v12/xn75YHgl1nqmANMB-26xC7yuF86PRk4.ttf" - }, - { - "family": "Pangolin", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/pangolin/v11/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pacifico" + } + ] + }, + { + "name": "Padauk", + "fontFamily": "Padauk, sans-serif", + "slug": "padauk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/padauk/v16/RrQRboJg-id7OnbBa0_g3LlYbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Padauk" + }, + { + "src": "http://fonts.gstatic.com/s/padauk/v16/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Padauk" + } + ] + }, + { + "name": "Padyakke Expanded One", + "fontFamily": "Padyakke Expanded One, system-ui", + "slug": "padyakke-expanded-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/padyakkeexpandedone/v2/K2FvfY9El_tbR0JfHb6WWvrBaU6XAUvC4IAYOKRkpDjeoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Padyakke Expanded One" + } + ] + }, + { + "name": "Palanquin", + "fontFamily": "Palanquin, sans-serif", + "slug": "palanquin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Palanquin" + } + ] + }, + { + "name": "Palanquin Dark", + "fontFamily": "Palanquin Dark, sans-serif", + "slug": "palanquin-dark", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Palanquin Dark" + }, + { + "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Palanquin Dark" + }, + { + "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Palanquin Dark" + }, + { + "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Palanquin Dark" + } + ] + }, + { + "name": "Pangolin", + "fontFamily": "Pangolin, cursive", + "slug": "pangolin", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pangolin/v11/cY9GfjGcW0FPpi-tWMfL79k.ttf" - }, - { - "family": "Paprika", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/paprika/v21/8QIJdijZitv49rDfuIgOq7jkAOw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/paprika/v21/8QIJdijZitv49rDfiIkErw.ttf" - }, - { - "family": "Parisienne", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pangolin/v11/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pangolin" + } + ] + }, + { + "name": "Paprika", + "fontFamily": "Paprika, system-ui", + "slug": "paprika", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/paprika/v21/8QIJdijZitv49rDfuIgOq7jkAOw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Paprika" + } + ] + }, + { + "name": "Parisienne", + "fontFamily": "Parisienne, cursive", + "slug": "parisienne", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpQy5wCg.ttf" - }, - { - "family": "Passero One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2022-05-10", - "files": { - "regular": "http://fonts.gstatic.com/s/passeroone/v24/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/passeroone/v24/JTUTjIko8DOq5FeaeEAjgH5A7g4.ttf" - }, - { - "family": "Passion One", - "variants": [ "regular", "700", "900" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf", - "900": "http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf", - "regular": "http://fonts.gstatic.com/s/passionone/v16/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/passionone/v16/PbynFmL8HhTPqbjUzux3JEuX9l4.ttf" - }, - { - "family": "Passions Conflict", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/passionsconflict/v5/kmKnZrcrFhfafnWX9x0GuEC-zowow5NeYRI4CN2V.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Parisienne" + } + ] + }, + { + "name": "Passero One", + "fontFamily": "Passero One, system-ui", + "slug": "passero-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/passeroone/v24/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Passero One" + } + ] + }, + { + "name": "Passion One", + "fontFamily": "Passion One, system-ui", + "slug": "passion-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/passionone/v16/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Passion One" + }, + { + "src": "http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Passion One" + }, + { + "src": "http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Passion One" + } + ] + }, + { + "name": "Passions Conflict", + "fontFamily": "Passions Conflict, cursive", + "slug": "passions-conflict", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/passionsconflict/v5/kmKnZrcrFhfafnWX9x0GuEC-zowow6NfaxY.ttf" - }, - { - "family": "Pathway Extreme", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2023-04-20", - "files": { - "100": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2Nx1Kyw3igP5eg.ttf", - "200": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWN11Kyw3igP5eg.ttf", - "300": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakht11Kyw3igP5eg.ttf", - "500": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak6t11Kyw3igP5eg.ttf", - "600": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakBtp1Kyw3igP5eg.ttf", - "700": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakP9p1Kyw3igP5eg.ttf", - "800": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWNp1Kyw3igP5eg.ttf", - "900": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakcdp1Kyw3igP5eg.ttf", - "regular": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2N11Kyw3igP5eg.ttf", - "100italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daSYzqAbpepnF.ttf", - "200italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4daCYzqAbpepnF.ttf", - "300italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ7DaCYzqAbpepnF.ttf", - "italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daCYzqAbpepnF.ttf", - "500italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6vaCYzqAbpepnF.ttf", - "600italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ5DbyYzqAbpepnF.ttf", - "700italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ56byYzqAbpepnF.ttf", - "800italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4dbyYzqAbpepnF.ttf", - "900italic": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ40byYzqAbpepnF.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2N1FKiYz.ttf" - }, - { - "family": "Pathway Gothic One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/pathwaygothicone/v15/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pathwaygothicone/v15/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-tTVZa.ttf" - }, - { - "family": "Patrick Hand", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/patrickhand/v20/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/passionsconflict/v5/kmKnZrcrFhfafnWX9x0GuEC-zowow5NeYRI4CN2V.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Passions Conflict" + } + ] + }, + { + "name": "Pathway Extreme", + "fontFamily": "Pathway Extreme, sans-serif", + "slug": "pathway-extreme", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2Nx1Kyw3igP5eg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWN11Kyw3igP5eg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakht11Kyw3igP5eg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2N11Kyw3igP5eg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak6t11Kyw3igP5eg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakBtp1Kyw3igP5eg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakP9p1Kyw3igP5eg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWNp1Kyw3igP5eg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakcdp1Kyw3igP5eg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daSYzqAbpepnF.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4daCYzqAbpepnF.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ7DaCYzqAbpepnF.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daCYzqAbpepnF.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6vaCYzqAbpepnF.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ5DbyYzqAbpepnF.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ56byYzqAbpepnF.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4dbyYzqAbpepnF.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ40byYzqAbpepnF.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + } + ] + }, + { + "name": "Pathway Gothic One", + "fontFamily": "Pathway Gothic One, sans-serif", + "slug": "pathway-gothic-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pathwaygothicone/v15/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pathway Gothic One" + } + ] + }, + { + "name": "Patrick Hand", + "fontFamily": "Patrick Hand, cursive", + "slug": "patrick-hand", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/patrickhand/v20/LDI1apSQOAYtSuYWp8ZhfYe8WMLO.ttf" - }, - { - "family": "Patrick Hand SC", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/patrickhandsc/v13/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/patrickhand/v20/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Patrick Hand" + } + ] + }, + { + "name": "Patrick Hand SC", + "fontFamily": "Patrick Hand SC, cursive", + "slug": "patrick-hand-sc", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/patrickhandsc/v13/0nkwC9f7MfsBiWcLtY65AWDK873liCK-.ttf" - }, - { - "family": "Pattaya", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "latin", - "latin-ext", - "thai", - "vietnamese" - ], - "version": "v13", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/pattaya/v13/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pattaya/v13/ea8ZadcqV_zkHY-XBdGt8w.ttf" - }, - { - "family": "Patua One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/patuaone/v16/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/patuaone/v16/ZXuke1cDvLCKLDcimxB45flr.ttf" - }, - { - "family": "Pavanam", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "tamil" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/pavanam/v11/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pavanam/v11/BXRrvF_aiezLh0xPPOpa8Q.ttf" - }, - { - "family": "Paytone One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v21", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/paytoneone/v21/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/paytoneone/v21/0nksC9P7MfYHj2oFtYm2ChTrgP4.ttf" - }, - { - "family": "Peddana", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/peddana/v20/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/peddana/v20/aFTU7PBhaX89UcKWthyQAQ.ttf" - }, - { - "family": "Peralta", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/peralta/v17/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/peralta/v17/hYkJPu0-RP_9d3kRKxErqg.ttf" - }, - { - "family": "Permanent Marker", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/patrickhandsc/v13/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Patrick Hand SC" + } + ] + }, + { + "name": "Pattaya", + "fontFamily": "Pattaya, sans-serif", + "slug": "pattaya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pattaya/v13/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pattaya" + } + ] + }, + { + "name": "Patua One", + "fontFamily": "Patua One, system-ui", + "slug": "patua-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/patuaone/v16/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Patua One" + } + ] + }, + { + "name": "Pavanam", + "fontFamily": "Pavanam, sans-serif", + "slug": "pavanam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pavanam/v11/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pavanam" + } + ] + }, + { + "name": "Paytone One", + "fontFamily": "Paytone One, sans-serif", + "slug": "paytone-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/paytoneone/v21/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Paytone One" + } + ] + }, + { + "name": "Peddana", + "fontFamily": "Peddana, serif", + "slug": "peddana", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/peddana/v20/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Peddana" + } + ] + }, + { + "name": "Peralta", + "fontFamily": "Peralta, system-ui", + "slug": "peralta", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/peralta/v17/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Peralta" + } + ] + }, + { + "name": "Permanent Marker", + "fontFamily": "Permanent Marker, cursive", + "slug": "permanent-marker", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004LauCeg.ttf" - }, - { - "family": "Petemoss", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/petemoss/v5/A2BZn5tA2xgtGWHZgxkesKb9UouQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Permanent Marker" + } + ] + }, + { + "name": "Petemoss", + "fontFamily": "Petemoss, cursive", + "slug": "petemoss", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/petemoss/v5/A2BZn5tA2xgtGWHZgykfuqI.ttf" - }, - { - "family": "Petit Formal Script", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/petitformalscript/v14/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/petemoss/v5/A2BZn5tA2xgtGWHZgxkesKb9UouQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Petemoss" + } + ] + }, + { + "name": "Petit Formal Script", + "fontFamily": "Petit Formal Script, cursive", + "slug": "petit-formal-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/petitformalscript/v14/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qkHjgOw.ttf" - }, - { - "family": "Petrona", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v32", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsARBH452Mvds.ttf", - "200": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NsQRBH452Mvds.ttf", - "300": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk7TsQRBH452Mvds.ttf", - "500": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6_sQRBH452Mvds.ttf", - "600": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5TtgRBH452Mvds.ttf", - "700": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5qtgRBH452Mvds.ttf", - "800": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NtgRBH452Mvds.ttf", - "900": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4ktgRBH452Mvds.ttf", - "regular": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsQRBH452Mvds.ttf", - "100italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwDFYpUN-dsIWs.ttf", - "200italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwCFYpUN-dsIWs.ttf", - "300italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8rICFYpUN-dsIWs.ttf", - "italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwCFYpUN-dsIWs.ttf", - "500italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8t4CFYpUN-dsIWs.ttf", - "600italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8jIFFYpUN-dsIWs.ttf", - "700italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8gsFFYpUN-dsIWs.ttf", - "800italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwFFYpUN-dsIWs.ttf", - "900italic": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8kUFFYpUN-dsIWs.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsTRAFYo.ttf" - }, - { - "family": "Philosopher", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "vietnamese" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/philosopher/v19/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf", - "regular": "http://fonts.gstatic.com/s/philosopher/v19/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf", - "italic": "http://fonts.gstatic.com/s/philosopher/v19/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf", - "700italic": "http://fonts.gstatic.com/s/philosopher/v19/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/philosopher/v19/vEFV2_5QCwIS4_Dhez5jcWBoT0g.ttf" - }, - { - "family": "Phudu", - "variants": [ "300", "regular", "500", "600", "700", "800", "900" ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], - "version": "v1", - "lastModified": "2023-02-16", - "files": { - "300": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkK62zUSwWuz38Tgg.ttf", - "500": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKh2zUSwWuz38Tgg.ttf", - "600": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKa2vUSwWuz38Tgg.ttf", - "700": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKUmvUSwWuz38Tgg.ttf", - "800": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKNWvUSwWuz38Tgg.ttf", - "900": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKHGvUSwWuz38Tgg.ttf", - "regular": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKtWzUSwWuz38Tgg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKtWzkSg-q.ttf" - }, - { - "family": "Piazzolla", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v33", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYx3Ly1AHfAAy5.ttf", - "200": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYxnLy1AHfAAy5.ttf", - "300": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7KGxnLy1AHfAAy5.ttf", - "500": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LqxnLy1AHfAAy5.ttf", - "600": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7IGwXLy1AHfAAy5.ttf", - "700": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7I_wXLy1AHfAAy5.ttf", - "800": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYwXLy1AHfAAy5.ttf", - "900": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JxwXLy1AHfAAy5.ttf", - "regular": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxnLy1AHfAAy5.ttf", - "100italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqw3gX9BRy5m5M.ttf", - "200italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRqx3gX9BRy5m5M.ttf", - "300italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhcSx3gX9BRy5m5M.ttf", - "italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf", - "500italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhaix3gX9BRy5m5M.ttf", - "600italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhUS23gX9BRy5m5M.ttf", - "700italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhX223gX9BRy5m5M.ttf", - "800italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRq23gX9BRy5m5M.ttf", - "900italic": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhTO23gX9BRy5m5M.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxkLz3gU.ttf" - }, - { - "family": "Piedra", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/piedra/v22/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/piedra/v22/ke8kOg8aN0Bn7hTenUaD.ttf" - }, - { - "family": "Pinyon Script", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/pinyonscript/v18/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/petitformalscript/v14/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Petit Formal Script" + } + ] + }, + { + "name": "Petrona", + "fontFamily": "Petrona, serif", + "slug": "petrona", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsARBH452Mvds.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NsQRBH452Mvds.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk7TsQRBH452Mvds.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsQRBH452Mvds.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6_sQRBH452Mvds.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5TtgRBH452Mvds.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5qtgRBH452Mvds.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NtgRBH452Mvds.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4ktgRBH452Mvds.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwDFYpUN-dsIWs.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwCFYpUN-dsIWs.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8rICFYpUN-dsIWs.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwCFYpUN-dsIWs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8t4CFYpUN-dsIWs.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8jIFFYpUN-dsIWs.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8gsFFYpUN-dsIWs.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwFFYpUN-dsIWs.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8kUFFYpUN-dsIWs.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Petrona" + } + ] + }, + { + "name": "Philosopher", + "fontFamily": "Philosopher, sans-serif", + "slug": "philosopher", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Philosopher" + }, + { + "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Philosopher" + }, + { + "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Philosopher" + }, + { + "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Philosopher" + } + ] + }, + { + "name": "Phudu", + "fontFamily": "Phudu, system-ui", + "slug": "phudu", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkK62zUSwWuz38Tgg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKtWzUSwWuz38Tgg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKh2zUSwWuz38Tgg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKa2vUSwWuz38Tgg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKUmvUSwWuz38Tgg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKNWvUSwWuz38Tgg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKHGvUSwWuz38Tgg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Phudu" + } + ] + }, + { + "name": "Piazzolla", + "fontFamily": "Piazzolla, serif", + "slug": "piazzolla", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYx3Ly1AHfAAy5.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYxnLy1AHfAAy5.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7KGxnLy1AHfAAy5.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxnLy1AHfAAy5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LqxnLy1AHfAAy5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7IGwXLy1AHfAAy5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7I_wXLy1AHfAAy5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYwXLy1AHfAAy5.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JxwXLy1AHfAAy5.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqw3gX9BRy5m5M.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRqx3gX9BRy5m5M.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhcSx3gX9BRy5m5M.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhaix3gX9BRy5m5M.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhUS23gX9BRy5m5M.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhX223gX9BRy5m5M.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRq23gX9BRy5m5M.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhTO23gX9BRy5m5M.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + } + ] + }, + { + "name": "Piedra", + "fontFamily": "Piedra, system-ui", + "slug": "piedra", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/piedra/v22/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Piedra" + } + ] + }, + { + "name": "Pinyon Script", + "fontFamily": "Pinyon Script, cursive", + "slug": "pinyon-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pinyonscript/v18/6xKpdSJbL9-e9LuoeQiDRQR8WOPaPw.ttf" - }, - { - "family": "Pirata One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtofhimOqw.ttf" - }, - { - "family": "Plaster", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4Ii9DPg.ttf" - }, - { - "family": "Play", - "variants": [ "regular", "700" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/play/v17/6ae84K2oVqwItm4TOpc423nTJTM.ttf", - "regular": "http://fonts.gstatic.com/s/play/v17/6aez4K2oVqwIjtI8Hp8Tx3A.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/play/v17/6aez4K2oVqwIvtM2Gg.ttf" - }, - { - "family": "Playball", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v17", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/playball/v17/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/playball/v17/TK3gWksYAxQ7jbsKcg8Cne8.ttf" - }, - { - "family": "Playfair Display", - "variants": [ - "regular", - "500", - "600", - "700", - "800", - "900", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], - "version": "v30", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf", - "600": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQZNLo_U2r.ttf", - "700": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQZNLo_U2r.ttf", - "800": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQZNLo_U2r.ttf", - "900": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQZNLo_U2r.ttf", - "regular": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQZNLo_U2r.ttf", - "italic": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtbK-F2rA0s.ttf", - "500italic": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtbK-F2rA0s.ttf", - "600italic": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtbK-F2rA0s.ttf", - "700italic": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtbK-F2rA0s.ttf", - "800italic": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtbK-F2rA0s.ttf", - "900italic": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtbK-F2rA0s.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvXDRbtY.ttf" - }, - { - "family": "Playfair Display SC", - "variants": [ - "regular", - "italic", - "700", - "700italic", - "900", - "900italic" - ], - "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf", - "900": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf", - "regular": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf", - "italic": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf", - "700italic": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf", - "900italic": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lb8MFQ.ttf" - }, - { - "family": "Plus Jakarta Sans", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic" - ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], - "version": "v7", - "lastModified": "2023-03-21", - "files": { - "200": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NShXUEKi4Rw.ttf", - "300": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_907NShXUEKi4Rw.ttf", - "500": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NShXUEKi4Rw.ttf", - "600": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNShXUEKi4Rw.ttf", - "700": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf", - "800": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNShXUEKi4Rw.ttf", - "regular": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NShXUEKi4Rw.ttf", - "200italic": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lCR_QMq2oR82k.ttf", - "300italic": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ17CR_QMq2oR82k.ttf", - "italic": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_QMq2oR82k.ttf", - "500italic": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_QMq2oR82k.ttf", - "600italic": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ37Dh_QMq2oR82k.ttf", - "700italic": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_QMq2oR82k.ttf", - "800italic": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_QMq2oR82k.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU79Sx_Q.ttf" - }, - { - "family": "Podkova", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v26", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf", - "600": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf", - "700": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf", - "800": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf", - "regular": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzfU5GI4.ttf" - }, - { - "family": "Poiret One", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/poiretone/v14/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/poiretone/v14/UqyVK80NJXN4zfRgbdfbo5hcUg.ttf" - }, - { - "family": "Poller One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/pollerone/v19/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pollerone/v19/ahccv82n0TN3gia5E4BuR-hRhQ.ttf" - }, - { - "family": "Poltawski Nowy", - "variants": [ - "regular", - "500", - "600", - "700", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v1", - "lastModified": "2023-04-20", - "files": { - "500": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KmiWnDS6V5CzCoQ.ttf", - "600": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KdiKnDS6V5CzCoQ.ttf", - "700": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KTyKnDS6V5CzCoQ.ttf", - "regular": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KqCWnDS6V5CzCoQ.ttf", - "italic": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZPTiSRxinSoROp.ttf", - "500italic": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZ9TiSRxinSoROp.ttf", - "600italic": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaRSSSRxinSoROp.ttf", - "700italic": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaoSSSRxinSoROp.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KqCWXDCSR.ttf" - }, - { - "family": "Poly", - "variants": [ "regular", "italic" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/poly/v16/MQpb-W6wKNitRLCAq2Lpris.ttf", - "italic": "http://fonts.gstatic.com/s/poly/v16/MQpV-W6wKNitdLKKr0DsviuGWA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/poly/v16/MQpb-W6wKNitdLGKrw.ttf" - }, - { - "family": "Pompiere", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/pompiere/v15/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pompiere/v15/VEMyRoxis5Dwuyeov5Ws7DQ.ttf" - }, - { - "family": "Pontano Sans", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2023-04-04", - "files": { - "300": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOSzMncaMp9gzWsE.ttf", - "500": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOUDMncaMp9gzWsE.ttf", - "600": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOazLncaMp9gzWsE.ttf", - "700": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOZXLncaMp9gzWsE.ttf", - "regular": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOXLMncaMp9gzWsE.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOXLMrceGow.ttf" - }, - { - "family": "Poor Story", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v20", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/poorstory/v20/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/poorstory/v20/jizfREFUsnUct9P6cDfd0OitKA.ttf" - }, - { - "family": "Poppins", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf", - "200": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf", - "300": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf", - "500": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf", - "600": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf", - "700": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf", - "800": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf", - "900": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf", - "100italic": "http://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf", - "200italic": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf", - "300italic": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf", - "regular": "http://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf", - "italic": "http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf", - "500italic": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf", - "600italic": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf", - "700italic": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf", - "800italic": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf", - "900italic": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJHedw.ttf" - }, - { - "family": "Port Lligat Sans", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/portlligatsans/v18/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/portlligatsans/v18/kmKmZrYrGBbdN1aV7Vokow6Lw4s4p7J-Sw.ttf" - }, - { - "family": "Port Lligat Slab", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/portlligatslab/v21/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/portlligatslab/v21/LDIpaoiQNgArA8kR7ulhZ8P_NYOsg7sR8w.ttf" - }, - { - "family": "Potta One", - "variants": [ "regular" ], - "subsets": [ "japanese", "latin", "latin-ext", "vietnamese" ], - "version": "v16", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/pottaone/v16/FeVSS05Bp6cy7xI-YfxQ3Z5nm29Gww.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pottaone/v16/FeVSS05Bp6cy7xI-Yfxg3JRj.ttf" - }, - { - "family": "Pragati Narrow", - "variants": [ "regular", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf", - "regular": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8vdRf0T0bS1ffgsPB7WZ-mD27-wNc.ttf" - }, - { - "family": "Praise", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/praise/v5/qkBUXvUZ-cnFXcFyDvO67L9XmQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pinyonscript/v18/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pinyon Script" + } + ] + }, + { + "name": "Pirata One", + "fontFamily": "Pirata One, system-ui", + "slug": "pirata-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pirata One" + } + ] + }, + { + "name": "Plaster", + "fontFamily": "Plaster, system-ui", + "slug": "plaster", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Plaster" + } + ] + }, + { + "name": "Play", + "fontFamily": "Play, sans-serif", + "slug": "play", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/play/v17/6aez4K2oVqwIjtI8Hp8Tx3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Play" + }, + { + "src": "http://fonts.gstatic.com/s/play/v17/6ae84K2oVqwItm4TOpc423nTJTM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Play" + } + ] + }, + { + "name": "Playball", + "fontFamily": "Playball, system-ui", + "slug": "playball", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/playball/v17/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Playball" + } + ] + }, + { + "name": "Playfair Display", + "fontFamily": "Playfair Display, serif", + "slug": "playfair-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQZNLo_U2r.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQZNLo_U2r.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQZNLo_U2r.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQZNLo_U2r.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQZNLo_U2r.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtbK-F2rA0s.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtbK-F2rA0s.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtbK-F2rA0s.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtbK-F2rA0s.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtbK-F2rA0s.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtbK-F2rA0s.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + } + ] + }, + { + "name": "Playfair Display SC", + "fontFamily": "Playfair Display SC, serif", + "slug": "playfair-display-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Playfair Display SC" + } + ] + }, + { + "name": "Plus Jakarta Sans", + "fontFamily": "Plus Jakarta Sans, sans-serif", + "slug": "plus-jakarta-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NShXUEKi4Rw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_907NShXUEKi4Rw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NShXUEKi4Rw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NShXUEKi4Rw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNShXUEKi4Rw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNShXUEKi4Rw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lCR_QMq2oR82k.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ17CR_QMq2oR82k.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_QMq2oR82k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_QMq2oR82k.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ37Dh_QMq2oR82k.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_QMq2oR82k.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_QMq2oR82k.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + } + ] + }, + { + "name": "Podkova", + "fontFamily": "Podkova, serif", + "slug": "podkova", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Podkova" + }, + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Podkova" + }, + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Podkova" + }, + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Podkova" + }, + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Podkova" + } + ] + }, + { + "name": "Poiret One", + "fontFamily": "Poiret One, system-ui", + "slug": "poiret-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poiretone/v14/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poiret One" + } + ] + }, + { + "name": "Poller One", + "fontFamily": "Poller One, system-ui", + "slug": "poller-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pollerone/v19/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poller One" + } + ] + }, + { + "name": "Poltawski Nowy", + "fontFamily": "Poltawski Nowy, serif", + "slug": "poltawski-nowy", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KqCWnDS6V5CzCoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KmiWnDS6V5CzCoQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KdiKnDS6V5CzCoQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KTyKnDS6V5CzCoQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZPTiSRxinSoROp.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZ9TiSRxinSoROp.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaRSSSRxinSoROp.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaoSSSRxinSoROp.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Poltawski Nowy" + } + ] + }, + { + "name": "Poly", + "fontFamily": "Poly, serif", + "slug": "poly", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poly/v16/MQpb-W6wKNitRLCAq2Lpris.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poly" + }, + { + "src": "http://fonts.gstatic.com/s/poly/v16/MQpV-W6wKNitdLKKr0DsviuGWA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Poly" + } + ] + }, + { + "name": "Pompiere", + "fontFamily": "Pompiere, system-ui", + "slug": "pompiere", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pompiere/v15/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pompiere" + } + ] + }, + { + "name": "Pontano Sans", + "fontFamily": "Pontano Sans, sans-serif", + "slug": "pontano-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOSzMncaMp9gzWsE.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + }, + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOXLMncaMp9gzWsE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + }, + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOUDMncaMp9gzWsE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + }, + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOazLncaMp9gzWsE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + }, + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOZXLncaMp9gzWsE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + } + ] + }, + { + "name": "Poor Story", + "fontFamily": "Poor Story, system-ui", + "slug": "poor-story", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poorstory/v20/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poor Story" + } + ] + }, + { + "name": "Poppins", + "fontFamily": "Poppins, sans-serif", + "slug": "poppins", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Poppins" + } + ] + }, + { + "name": "Port Lligat Sans", + "fontFamily": "Port Lligat Sans, sans-serif", + "slug": "port-lligat-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/portlligatsans/v18/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Port Lligat Sans" + } + ] + }, + { + "name": "Port Lligat Slab", + "fontFamily": "Port Lligat Slab, serif", + "slug": "port-lligat-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/portlligatslab/v21/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Port Lligat Slab" + } + ] + }, + { + "name": "Potta One", + "fontFamily": "Potta One, system-ui", + "slug": "potta-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pottaone/v16/FeVSS05Bp6cy7xI-YfxQ3Z5nm29Gww.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Potta One" + } + ] + }, + { + "name": "Pragati Narrow", + "fontFamily": "Pragati Narrow, sans-serif", + "slug": "pragati-narrow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pragati Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Pragati Narrow" + } + ] + }, + { + "name": "Praise", + "fontFamily": "Praise, cursive", + "slug": "praise", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/praise/v5/qkBUXvUZ-cnFXcFCD_m-.ttf" - }, - { - "family": "Prata", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "vietnamese" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/prata/v18/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/prata/v18/6xKhdSpbNNCT-sWJCms.ttf" - }, - { - "family": "Preahvihear", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin" ], - "version": "v27", - "lastModified": "2022-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/preahvihear/v27/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/preahvihear/v27/6NUS8F-dNQeEYhzj7uluxvwF6dU.ttf" - }, - { - "family": "Press Start 2P", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext" - ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/pressstart2p/v15/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pressstart2p/v15/e3t4euO8T-267oIAQAu6jDQyK3nTivY.ttf" - }, - { - "family": "Pridi", - "variants": [ "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf", - "300": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf", - "500": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf", - "600": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf", - "700": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf", - "regular": "http://fonts.gstatic.com/s/pridi/v11/2sDQZG5JnZLfkfWao2krbl29.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/pridi/v11/2sDQZG5JnZLfkcWbqW0.ttf" - }, - { - "family": "Princess Sofia", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/princesssofia/v22/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/praise/v5/qkBUXvUZ-cnFXcFyDvO67L9XmQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Praise" + } + ] + }, + { + "name": "Prata", + "fontFamily": "Prata, serif", + "slug": "prata", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prata/v18/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Prata" + } + ] + }, + { + "name": "Preahvihear", + "fontFamily": "Preahvihear, sans-serif", + "slug": "preahvihear", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/preahvihear/v27/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Preahvihear" + } + ] + }, + { + "name": "Press Start 2P", + "fontFamily": "Press Start 2P, system-ui", + "slug": "press-start-2p", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pressstart2p/v15/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Press Start 2P" + } + ] + }, + { + "name": "Pridi", + "fontFamily": "Pridi, serif", + "slug": "pridi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDQZG5JnZLfkfWao2krbl29.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Pridi" + } + ] + }, + { + "name": "Princess Sofia", + "fontFamily": "Princess Sofia, cursive", + "slug": "princess-sofia", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/princesssofia/v22/qWczB6yguIb8DZ_GXZst16n7GSz6kjE.ttf" - }, - { - "family": "Prociono", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/prociono/v22/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/prociono/v22/r05YGLlR-KxAf9GGO_uowjI.ttf" - }, - { - "family": "Prompt", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf", - "200": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf", - "300": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf", - "500": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf", - "600": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf", - "700": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf", - "800": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf", - "900": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf", - "100italic": "http://fonts.gstatic.com/s/prompt/v10/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf", - "200italic": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf", - "300italic": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf", - "regular": "http://fonts.gstatic.com/s/prompt/v10/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf", - "italic": "http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf", - "500italic": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf", - "600italic": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf", - "700italic": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf", - "800italic": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf", - "900italic": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/prompt/v10/-W__XJnvUD7dzB2KZtoY.ttf" - }, - { - "family": "Prosto One", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/prostoone/v17/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/prostoone/v17/OpNJno4VhNfK-RgpwWWxlitVXg.ttf" - }, - { - "family": "Proza Libre", - "variants": [ - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v9", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf", - "600": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf", - "700": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf", - "800": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf", - "regular": "http://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf", - "italic": "http://fonts.gstatic.com/s/prozalibre/v9/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf", - "500italic": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf", - "600italic": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf", - "700italic": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf", - "800italic": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyEoudN8.ttf" - }, - { - "family": "Public Sans", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5ww0pX189fg.ttf", - "200": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww0pX189fg.ttf", - "300": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww0pX189fg.ttf", - "500": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww0pX189fg.ttf", - "600": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf", - "700": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww0pX189fg.ttf", - "800": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww0pX189fg.ttf", - "900": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww0pX189fg.ttf", - "regular": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww0pX189fg.ttf", - "100italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQctfVotfj7j.ttf", - "200italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgActfVotfj7j.ttf", - "300italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgActfVotfj7j.ttf", - "italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgActfVotfj7j.ttf", - "500italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgActfVotfj7j.ttf", - "600italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwctfVotfj7j.ttf", - "700italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwctfVotfj7j.ttf", - "800italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwctfVotfj7j.ttf", - "900italic": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwctfVotfj7j.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpmJwgct.ttf" - }, - { - "family": "Puppies Play", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v6", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/puppiesplay/v6/wlp2gwHZEV99rG6M3NR9uB9vaAJSA_JN3Q.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/princesssofia/v22/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Princess Sofia" + } + ] + }, + { + "name": "Prociono", + "fontFamily": "Prociono, serif", + "slug": "prociono", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prociono/v22/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Prociono" + } + ] + }, + { + "name": "Prompt", + "fontFamily": "Prompt, sans-serif", + "slug": "prompt", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Prompt" + } + ] + }, + { + "name": "Prosto One", + "fontFamily": "Prosto One, system-ui", + "slug": "prosto-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prostoone/v17/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Prosto One" + } + ] + }, + { + "name": "Proza Libre", + "fontFamily": "Proza Libre, sans-serif", + "slug": "proza-libre", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + } + ] + }, + { + "name": "Public Sans", + "fontFamily": "Public Sans, sans-serif", + "slug": "public-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5ww0pX189fg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww0pX189fg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww0pX189fg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww0pX189fg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww0pX189fg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww0pX189fg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww0pX189fg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww0pX189fg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQctfVotfj7j.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgActfVotfj7j.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgActfVotfj7j.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgActfVotfj7j.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgActfVotfj7j.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwctfVotfj7j.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwctfVotfj7j.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwctfVotfj7j.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwctfVotfj7j.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Public Sans" + } + ] + }, + { + "name": "Puppies Play", + "fontFamily": "Puppies Play, cursive", + "slug": "puppies-play", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/puppiesplay/v6/wlp2gwHZEV99rG6M3NR9uB9faQhW.ttf" - }, - { - "family": "Puritan", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/puritan/v24/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf", - "regular": "http://fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf", - "italic": "http://fonts.gstatic.com/s/puritan/v24/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf", - "700italic": "http://fonts.gstatic.com/s/puritan/v24/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIoxJv6QQ.ttf" - }, - { - "family": "Purple Purse", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/purplepurse/v21/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/purplepurse/v21/qWctB66gv53iAp-Vfs4My6qCeRz7.ttf" - }, - { - "family": "Qahiri", - "variants": [ "regular" ], - "subsets": [ "arabic", "latin" ], - "version": "v9", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/qahiri/v9/tsssAp1RZy0C_hGuU3Chrnmupw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/qahiri/v9/tsssAp1RZy0C_hGeUnql.ttf" - }, - { - "family": "Quando", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/quando/v14/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/quando/v14/xMQVuFNaVa6YuW0ZCq-3.ttf" - }, - { - "family": "Quantico", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/quantico/v15/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf", - "regular": "http://fonts.gstatic.com/s/quantico/v15/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf", - "italic": "http://fonts.gstatic.com/s/quantico/v15/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf", - "700italic": "http://fonts.gstatic.com/s/quantico/v15/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/quantico/v15/rax-HiSdp9cPL3KIF7xtJDg.ttf" - }, - { - "family": "Quattrocento", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/quattrocento/v18/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf", - "regular": "http://fonts.gstatic.com/s/quattrocento/v18/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/quattrocento/v18/OZpEg_xvsDZQL_LKIF7q4jP3xWj_.ttf" - }, - { - "family": "Quattrocento Sans", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf", - "regular": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf", - "italic": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf", - "700italic": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9c4lja2NVIDdIAAoMR5MfuElaRB0zPt0o.ttf" - }, - { - "family": "Questrial", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v18", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf70uCFg.ttf" - }, - { - "family": "Quicksand", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v30", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf", - "500": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf", - "600": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf", - "700": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf", - "regular": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o58C-xw.ttf" - }, - { - "family": "Quintessential", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/quintessential/v20/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/puppiesplay/v6/wlp2gwHZEV99rG6M3NR9uB9vaAJSA_JN3Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Puppies Play" + } + ] + }, + { + "name": "Puritan", + "fontFamily": "Puritan, sans-serif", + "slug": "puritan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Puritan" + }, + { + "src": "http://fonts.gstatic.com/s/puritan/v24/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Puritan" + }, + { + "src": "http://fonts.gstatic.com/s/puritan/v24/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Puritan" + }, + { + "src": "http://fonts.gstatic.com/s/puritan/v24/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Puritan" + } + ] + }, + { + "name": "Purple Purse", + "fontFamily": "Purple Purse, system-ui", + "slug": "purple-purse", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/purplepurse/v21/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Purple Purse" + } + ] + }, + { + "name": "Qahiri", + "fontFamily": "Qahiri, sans-serif", + "slug": "qahiri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/qahiri/v9/tsssAp1RZy0C_hGuU3Chrnmupw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Qahiri" + } + ] + }, + { + "name": "Quando", + "fontFamily": "Quando, serif", + "slug": "quando", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quando/v14/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quando" + } + ] + }, + { + "name": "Quantico", + "fontFamily": "Quantico, sans-serif", + "slug": "quantico", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quantico/v15/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quantico" + }, + { + "src": "http://fonts.gstatic.com/s/quantico/v15/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Quantico" + }, + { + "src": "http://fonts.gstatic.com/s/quantico/v15/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Quantico" + }, + { + "src": "http://fonts.gstatic.com/s/quantico/v15/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Quantico" + } + ] + }, + { + "name": "Quattrocento", + "fontFamily": "Quattrocento, serif", + "slug": "quattrocento", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quattrocento/v18/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quattrocento" + }, + { + "src": "http://fonts.gstatic.com/s/quattrocento/v18/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Quattrocento" + } + ] + }, + { + "name": "Quattrocento Sans", + "fontFamily": "Quattrocento Sans, sans-serif", + "slug": "quattrocento-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quattrocento Sans" + }, + { + "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Quattrocento Sans" + }, + { + "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Quattrocento Sans" + }, + { + "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Quattrocento Sans" + } + ] + }, + { + "name": "Questrial", + "fontFamily": "Questrial, sans-serif", + "slug": "questrial", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Questrial" + } + ] + }, + { + "name": "Quicksand", + "fontFamily": "Quicksand, sans-serif", + "slug": "quicksand", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Quicksand" + }, + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quicksand" + }, + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Quicksand" + }, + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Quicksand" + }, + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Quicksand" + } + ] + }, + { + "name": "Quintessential", + "fontFamily": "Quintessential, cursive", + "slug": "quintessential", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/quintessential/v20/fdNn9sOGq31Yjnh3qWU14Ddtjb5xQb0.ttf" - }, - { - "family": "Qwigley", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/qwigley/v16/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quintessential/v20/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quintessential" + } + ] + }, + { + "name": "Qwigley", + "fontFamily": "Qwigley, cursive", + "slug": "qwigley", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/qwigley/v16/1cXzaU3UGJb5tGoCiV1mjw.ttf" - }, - { - "family": "Qwitcher Grypen", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxiZypclp9tDilN9RrC5BSI1dZmT9ExkqkSsrvNXiA.ttf", - "regular": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxicypclp9tDilN9RrC5BSI1dZmrSGNAom-wpw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/qwigley/v16/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Qwigley" + } + ] + }, + { + "name": "Qwitcher Grypen", + "fontFamily": "Qwitcher Grypen, cursive", + "slug": "qwitcher-grypen", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxicypclp9tDilN9RrC5BSI1dZmbSWlE.ttf" - }, - { - "family": "Racing Sans One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/racingsansone/v13/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/racingsansone/v13/sykr-yRtm7EvTrXNxkv5jfKKyDCALnDi.ttf" - }, - { - "family": "Radio Canada", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "300italic", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/radiocanada/v20/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nESkQPIJOdSSfOT.ttf", - "500": "http://fonts.gstatic.com/s/radiocanada/v20/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nF-kQPIJOdSSfOT.ttf", - "600": "http://fonts.gstatic.com/s/radiocanada/v20/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGSlgPIJOdSSfOT.ttf", - "700": "http://fonts.gstatic.com/s/radiocanada/v20/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGrlgPIJOdSSfOT.ttf", - "regular": "http://fonts.gstatic.com/s/radiocanada/v20/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nFMkQPIJOdSSfOT.ttf", - "300italic": "http://fonts.gstatic.com/s/radiocanada/v20/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0rWLLuNwTOOTa9k.ttf", - "italic": "http://fonts.gstatic.com/s/radiocanada/v20/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0uuLLuNwTOOTa9k.ttf", - "500italic": "http://fonts.gstatic.com/s/radiocanada/v20/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0tmLLuNwTOOTa9k.ttf", - "600italic": "http://fonts.gstatic.com/s/radiocanada/v20/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0jWMLuNwTOOTa9k.ttf", - "700italic": "http://fonts.gstatic.com/s/radiocanada/v20/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0gyMLuNwTOOTa9k.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/radiocanada/v20/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nFMkTPJLuM.ttf" - }, - { - "family": "Radley", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/radley/v20/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf", - "italic": "http://fonts.gstatic.com/s/radley/v20/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/radley/v20/LYjDdGzinEIjCN1NoQNA.ttf" - }, - { - "family": "Rajdhani", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf", - "500": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf", - "600": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf", - "700": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf", - "regular": "http://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7p4BM-M.ttf" - }, - { - "family": "Rakkas", - "variants": [ "regular" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rakkas/v17/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rakkas/v17/Qw3cZQlNHiblL3jPl9FL.ttf" - }, - { - "family": "Raleway", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v28", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CPNLA3JC9c.ttf", - "200": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCPNLA3JC9c.ttf", - "300": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCPNLA3JC9c.ttf", - "500": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf", - "600": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCPNLA3JC9c.ttf", - "700": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCPNLA3JC9c.ttf", - "800": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCPNLA3JC9c.ttf", - "900": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCPNLA3JC9c.ttf", - "regular": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf", - "100italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQVIT9c2c8.ttf", - "200italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQVIT9c2c8.ttf", - "300italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", - "italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", - "500italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", - "600italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", - "700italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", - "800italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQVIT9c2c8.ttf", - "900italic": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQVIT9c2c8.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCOPrQ.ttf" - }, - { - "family": "Raleway Dots", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ralewaydots/v14/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ralewaydots/v14/6NUR8FifJg6AfQvzpshgwJ8UyPVB.ttf" - }, - { - "family": "Ramabhadra", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v15", - "lastModified": "2022-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/ramabhadra/v15/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ramabhadra/v15/EYq2maBOwqRW9P1SQ83LShJMWw.ttf" - }, - { - "family": "Ramaraja", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ramaraja/v15/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ramaraja/v15/SlGTmQearpYAYG1CACIloHQ.ttf" - }, - { - "family": "Rambla", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/rambla/v13/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf", - "regular": "http://fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mr0I7IONthkwQ.ttf", - "italic": "http://fonts.gstatic.com/s/rambla/v13/snfps0ip98hx6mrEIbgKFN10wYKa.ttf", - "700italic": "http://fonts.gstatic.com/s/rambla/v13/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mrEIrgK.ttf" - }, - { - "family": "Rammetto One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/rammettoone/v15/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rammettoone/v15/LhWiMV3HOfMbMetJG3lQDppNM_GY.ttf" - }, - { - "family": "Rampart One", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v7", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/rampartone/v7/K2F1fZFGl_JSR1tAWNG9R6qgLS76ZHOM.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rampartone/v7/K2F1fZFGl_JSR1tAWNG9R5qhJyo.ttf" - }, - { - "family": "Ranchers", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/ranchers/v14/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ranchers/v14/zrfm0H3Lx-P2Xvs2ArDZBio.ttf" - }, - { - "family": "Rancho", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rancho/v17/46kulbzmXjLaqZRlbWXgd0RY1g.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxicypclp9tDilN9RrC5BSI1dZmrSGNAom-wpw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Qwitcher Grypen" + }, + { + "src": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxiZypclp9tDilN9RrC5BSI1dZmT9ExkqkSsrvNXiA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Qwitcher Grypen" + } + ] + }, + { + "name": "Racing Sans One", + "fontFamily": "Racing Sans One, system-ui", + "slug": "racing-sans-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/racingsansone/v13/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Racing Sans One" + } + ] + }, + { + "name": "Radio Canada", + "fontFamily": "Radio Canada, sans-serif", + "slug": "radio-canada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nESkQPIJOdSSfOT.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nFMkQPIJOdSSfOT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nF-kQPIJOdSSfOT.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGSlgPIJOdSSfOT.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGrlgPIJOdSSfOT.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0rWLLuNwTOOTa9k.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0uuLLuNwTOOTa9k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0tmLLuNwTOOTa9k.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0jWMLuNwTOOTa9k.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0gyMLuNwTOOTa9k.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + } + ] + }, + { + "name": "Radley", + "fontFamily": "Radley, serif", + "slug": "radley", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/radley/v20/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Radley" + }, + { + "src": "http://fonts.gstatic.com/s/radley/v20/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Radley" + } + ] + }, + { + "name": "Rajdhani", + "fontFamily": "Rajdhani, sans-serif", + "slug": "rajdhani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + }, + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + }, + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + }, + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + }, + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + } + ] + }, + { + "name": "Rakkas", + "fontFamily": "Rakkas, system-ui", + "slug": "rakkas", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rakkas/v17/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rakkas" + } + ] + }, + { + "name": "Raleway", + "fontFamily": "Raleway, sans-serif", + "slug": "raleway", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CPNLA3JC9c.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCPNLA3JC9c.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCPNLA3JC9c.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCPNLA3JC9c.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCPNLA3JC9c.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCPNLA3JC9c.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCPNLA3JC9c.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQVIT9c2c8.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQVIT9c2c8.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQVIT9c2c8.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQVIT9c2c8.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Raleway" + } + ] + }, + { + "name": "Raleway Dots", + "fontFamily": "Raleway Dots, system-ui", + "slug": "raleway-dots", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ralewaydots/v14/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Raleway Dots" + } + ] + }, + { + "name": "Ramabhadra", + "fontFamily": "Ramabhadra, sans-serif", + "slug": "ramabhadra", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ramabhadra/v15/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ramabhadra" + } + ] + }, + { + "name": "Ramaraja", + "fontFamily": "Ramaraja, serif", + "slug": "ramaraja", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ramaraja/v15/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ramaraja" + } + ] + }, + { + "name": "Rambla", + "fontFamily": "Rambla, sans-serif", + "slug": "rambla", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mr0I7IONthkwQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rambla" + }, + { + "src": "http://fonts.gstatic.com/s/rambla/v13/snfps0ip98hx6mrEIbgKFN10wYKa.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rambla" + }, + { + "src": "http://fonts.gstatic.com/s/rambla/v13/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rambla" + }, + { + "src": "http://fonts.gstatic.com/s/rambla/v13/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rambla" + } + ] + }, + { + "name": "Rammetto One", + "fontFamily": "Rammetto One, system-ui", + "slug": "rammetto-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rammettoone/v15/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rammetto One" + } + ] + }, + { + "name": "Rampart One", + "fontFamily": "Rampart One, system-ui", + "slug": "rampart-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rampartone/v7/K2F1fZFGl_JSR1tAWNG9R6qgLS76ZHOM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rampart One" + } + ] + }, + { + "name": "Ranchers", + "fontFamily": "Ranchers, system-ui", + "slug": "ranchers", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ranchers/v14/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ranchers" + } + ] + }, + { + "name": "Rancho", + "fontFamily": "Rancho, cursive", + "slug": "rancho", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rancho/v17/46kulbzmXjLaqZRVbG_k.ttf" - }, - { - "family": "Ranga", - "variants": [ "regular", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/ranga/v18/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf", - "regular": "http://fonts.gstatic.com/s/ranga/v18/C8ct4cYisGb28p6CLDwZwmGE.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ranga/v18/C8ct4cYisGb28q6DJjg.ttf" - }, - { - "family": "Rasa", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "300italic", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "gujarati", "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN4YJW41fcvN2KT4.ttf", - "500": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN50JW41fcvN2KT4.ttf", - "600": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN6YIm41fcvN2KT4.ttf", - "700": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN6hIm41fcvN2KT4.ttf", - "regular": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJW41fcvN2KT4.ttf", - "300italic": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZth2d8_v3bT4Ycc.ttf", - "italic": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZoZ2d8_v3bT4Ycc.ttf", - "500italic": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZrR2d8_v3bT4Ycc.ttf", - "600italic": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZlhxd8_v3bT4Ycc.ttf", - "700italic": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZmFxd8_v3bT4Ycc.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJV40d88.ttf" - }, - { - "family": "Rationale", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2022-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/rationale/v24/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rationale/v24/9XUnlJ92n0_JFxHIfHccd1tI.ttf" - }, - { - "family": "Ravi Prakash", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/raviprakash/v19/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/raviprakash/v19/gokpH6fsDkVrF9Bv9X8SOAK3mdxA.ttf" - }, - { - "family": "Readex Pro", - "variants": [ "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], - "version": "v21", - "lastModified": "2023-04-27", - "files": { - "200": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCYUSmgmsglvjkag.ttf", - "300": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCv0Smgmsglvjkag.ttf", - "500": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC00Smgmsglvjkag.ttf", - "600": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCP0Omgmsglvjkag.ttf", - "700": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCBkOmgmsglvjkag.ttf", - "regular": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC4USmgmsglvjkag.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC4USWg2Ek.ttf" - }, - { - "family": "Recursive", - "variants": [ "300", "regular", "500", "600", "700", "800", "900" ], - "subsets": [ "cyrillic-ext", "latin", "latin-ext", "vietnamese" ], - "version": "v37", - "lastModified": "2023-01-06", - "files": { - "300": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadDck018vwxjDJCL.ttf", - "500": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCwk018vwxjDJCL.ttf", - "600": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBclE18vwxjDJCL.ttf", - "700": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBllE18vwxjDJCL.ttf", - "800": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadAClE18vwxjDJCL.ttf", - "900": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadArlE18vwxjDJCL.ttf", - "regular": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk018vwxjDJCL.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk319tQg.ttf" - }, - { - "family": "Red Hat Display", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWckg5-Xecg3w.ttf", - "500": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbl6Wckg5-Xecg3w.ttf", - "600": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbrKRckg5-Xecg3w.ttf", - "700": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbouRckg5-Xecg3w.ttf", - "800": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbuyRckg5-Xecg3w.ttf", - "900": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbsWRckg5-Xecg3w.ttf", - "regular": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWckg5-Xecg3w.ttf", - "300italic": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVxAsz_VWZk3zJGg.ttf", - "italic": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVmgsz_VWZk3zJGg.ttf", - "500italic": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVqAsz_VWZk3zJGg.ttf", - "600italic": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVRAwz_VWZk3zJGg.ttf", - "700italic": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVfQwz_VWZk3zJGg.ttf", - "800italic": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVGgwz_VWZk3zJGg.ttf", - "900italic": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVMwwz_VWZk3zJGg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWQkkz_Q.ttf" - }, - { - "family": "Red Hat Mono", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "300italic", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQQPI-7HNuW4QuKI.ttf", - "500": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQW_I-7HNuW4QuKI.ttf", - "600": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQYPP-7HNuW4QuKI.ttf", - "700": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQbrP-7HNuW4QuKI.ttf", - "regular": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3I-7HNuW4QuKI.ttf", - "300italic": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLTfLHvUwVqKIJuw.ttf", - "italic": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLE_LHvUwVqKIJuw.ttf", - "500italic": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLIfLHvUwVqKIJuw.ttf", - "600italic": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLzfXHvUwVqKIJuw.ttf", - "700italic": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWL9PXHvUwVqKIJuw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rancho/v17/46kulbzmXjLaqZRlbWXgd0RY1g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rancho" + } + ] + }, + { + "name": "Ranga", + "fontFamily": "Ranga, system-ui", + "slug": "ranga", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ranga/v18/C8ct4cYisGb28p6CLDwZwmGE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ranga" + }, + { + "src": "http://fonts.gstatic.com/s/ranga/v18/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ranga" + } + ] + }, + { + "name": "Rasa", + "fontFamily": "Rasa, serif", + "slug": "rasa", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN4YJW41fcvN2KT4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJW41fcvN2KT4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN50JW41fcvN2KT4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN6YIm41fcvN2KT4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN6hIm41fcvN2KT4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZth2d8_v3bT4Ycc.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZoZ2d8_v3bT4Ycc.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZrR2d8_v3bT4Ycc.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZlhxd8_v3bT4Ycc.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZmFxd8_v3bT4Ycc.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rasa" + } + ] + }, + { + "name": "Rationale", + "fontFamily": "Rationale, sans-serif", + "slug": "rationale", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rationale/v24/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rationale" + } + ] + }, + { + "name": "Ravi Prakash", + "fontFamily": "Ravi Prakash, system-ui", + "slug": "ravi-prakash", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/raviprakash/v19/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ravi Prakash" + } + ] + }, + { + "name": "Readex Pro", + "fontFamily": "Readex Pro, sans-serif", + "slug": "readex-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCYUSmgmsglvjkag.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCv0Smgmsglvjkag.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC4USmgmsglvjkag.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC00Smgmsglvjkag.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCP0Omgmsglvjkag.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCBkOmgmsglvjkag.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + } + ] + }, + { + "name": "Recursive", + "fontFamily": "Recursive, sans-serif", + "slug": "recursive", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadDck018vwxjDJCL.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk018vwxjDJCL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCwk018vwxjDJCL.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBclE18vwxjDJCL.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBllE18vwxjDJCL.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadAClE18vwxjDJCL.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadArlE18vwxjDJCL.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Recursive" + } + ] + }, + { + "name": "Red Hat Display", + "fontFamily": "Red Hat Display, sans-serif", + "slug": "red-hat-display", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWckg5-Xecg3w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWckg5-Xecg3w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbl6Wckg5-Xecg3w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbrKRckg5-Xecg3w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbouRckg5-Xecg3w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbuyRckg5-Xecg3w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbsWRckg5-Xecg3w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVxAsz_VWZk3zJGg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVmgsz_VWZk3zJGg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVqAsz_VWZk3zJGg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVRAwz_VWZk3zJGg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVfQwz_VWZk3zJGg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVGgwz_VWZk3zJGg.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVMwwz_VWZk3zJGg.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + } + ] + }, + { + "name": "Red Hat Mono", + "fontFamily": "Red Hat Mono, monospace", + "slug": "red-hat-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3Iy7DHvQ.ttf" - }, - { - "family": "Red Hat Text", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "300italic", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML-ZwVrbacYVFtIY.ttf", - "500": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrbacYVFtIY.ttf", - "600": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML2Z3VrbacYVFtIY.ttf", - "700": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML193VrbacYVFtIY.ttf", - "regular": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrbacYVFtIY.ttf", - "300italic": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAz4PXQdadApIYv_g.ttf", - "italic": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzvvXQdadApIYv_g.ttf", - "500italic": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzjPXQdadApIYv_g.ttf", - "600italic": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzYPLQdadApIYv_g.ttf", - "700italic": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzWfLQdadApIYv_g.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwZrfQdQ.ttf" - }, - { - "family": "Red Rose", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v18", - "lastModified": "2023-03-21", - "files": { - "300": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8y8_sDcjSsYUVUjg.ttf", - "500": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yn_sDcjSsYUVUjg.ttf", - "600": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yc_wDcjSsYUVUjg.ttf", - "700": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8ySvwDcjSsYUVUjg.ttf", - "regular": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfsDcjSsYUVUjg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfszcz6o.ttf" - }, - { - "family": "Redacted", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v6", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/redacted/v6/Z9XVDmdRShme2O_7aITe4u2El6GC.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/redacted/v6/Z9XVDmdRShme2O_7aLTf6Ok.ttf" - }, - { - "family": "Redacted Script", - "variants": [ "300", "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v7", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/redactedscript/v7/ypvEbXGRglhokR7dcC3d1-R6zmxqHUzVmbI397ldkg.ttf", - "700": "http://fonts.gstatic.com/s/redactedscript/v7/ypvEbXGRglhokR7dcC3d1-R6zmxqDUvVmbI397ldkg.ttf", - "regular": "http://fonts.gstatic.com/s/redactedscript/v7/ypvBbXGRglhokR7dcC3d1-R6zmxSsWTxkZkr_g.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/redactedscript/v7/ypvBbXGRglhokR7dcC3d1-R6zmxisG71.ttf" - }, - { - "family": "Redressed", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v25", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/redressed/v25/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQQPI-7HNuW4QuKI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3I-7HNuW4QuKI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQW_I-7HNuW4QuKI.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQYPP-7HNuW4QuKI.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQbrP-7HNuW4QuKI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLTfLHvUwVqKIJuw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLE_LHvUwVqKIJuw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLIfLHvUwVqKIJuw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLzfXHvUwVqKIJuw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWL9PXHvUwVqKIJuw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + } + ] + }, + { + "name": "Red Hat Text", + "fontFamily": "Red Hat Text, sans-serif", + "slug": "red-hat-text", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML-ZwVrbacYVFtIY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrbacYVFtIY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrbacYVFtIY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML2Z3VrbacYVFtIY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML193VrbacYVFtIY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAz4PXQdadApIYv_g.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzvvXQdadApIYv_g.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzjPXQdadApIYv_g.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzYPLQdadApIYv_g.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzWfLQdadApIYv_g.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + } + ] + }, + { + "name": "Red Rose", + "fontFamily": "Red Rose, system-ui", + "slug": "red-rose", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8y8_sDcjSsYUVUjg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Red Rose" + }, + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfsDcjSsYUVUjg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Red Rose" + }, + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yn_sDcjSsYUVUjg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Red Rose" + }, + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yc_wDcjSsYUVUjg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Red Rose" + }, + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8ySvwDcjSsYUVUjg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Red Rose" + } + ] + }, + { + "name": "Redacted", + "fontFamily": "Redacted, system-ui", + "slug": "redacted", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redacted/v6/Z9XVDmdRShme2O_7aITe4u2El6GC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Redacted" + } + ] + }, + { + "name": "Redacted Script", + "fontFamily": "Redacted Script, system-ui", + "slug": "redacted-script", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvEbXGRglhokR7dcC3d1-R6zmxqHUzVmbI397ldkg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Redacted Script" + }, + { + "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvBbXGRglhokR7dcC3d1-R6zmxSsWTxkZkr_g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Redacted Script" + }, + { + "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvEbXGRglhokR7dcC3d1-R6zmxqDUvVmbI397ldkg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Redacted Script" + } + ] + }, + { + "name": "Redressed", + "fontFamily": "Redressed, cursive", + "slug": "redressed", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/redressed/v25/x3dickHUbrmJ7wMy9MsxffoG.ttf" - }, - { - "family": "Reem Kufi", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2022-12-08", - "files": { - "500": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", - "600": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", - "700": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", - "regular": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnIGCV2g.ttf" - }, - { - "family": "Reem Kufi Fun", - "variants": [ "regular", "500", "600", "700" ], - "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], - "version": "v7", - "lastModified": "2023-03-09", - "files": { - "500": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYR3nCgrvqZzZXq.ttf", - "600": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChob92XCgrvqZzZXq.ttf", - "700": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChobE2XCgrvqZzZXq.ttf", - "regular": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYj3nCgrvqZzZXq.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYj3kChpP4.ttf" - }, - { - "family": "Reem Kufi Ink", - "variants": [ "regular" ], - "subsets": [ "arabic", "latin", "latin-ext", "vietnamese" ], - "version": "v8", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/reemkufiink/v8/oPWJ_kJmmu8hCvB9iFumxZSnRj5dQnSX1ko.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/reemkufiink/v8/oPWJ_kJmmu8hCvB9iFumxZSndj9XRg.ttf" - }, - { - "family": "Reenie Beanie", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/reeniebeanie/v16/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redressed/v25/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Redressed" + } + ] + }, + { + "name": "Reem Kufi", + "fontFamily": "Reem Kufi, sans-serif", + "slug": "reem-kufi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reem Kufi" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Reem Kufi" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Reem Kufi" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Reem Kufi" + } + ] + }, + { + "name": "Reem Kufi Fun", + "fontFamily": "Reem Kufi Fun, sans-serif", + "slug": "reem-kufi-fun", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYj3nCgrvqZzZXq.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Fun" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYR3nCgrvqZzZXq.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Fun" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChob92XCgrvqZzZXq.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Fun" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChobE2XCgrvqZzZXq.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Fun" + } + ] + }, + { + "name": "Reem Kufi Ink", + "fontFamily": "Reem Kufi Ink, sans-serif", + "slug": "reem-kufi-ink", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reemkufiink/v8/oPWJ_kJmmu8hCvB9iFumxZSnRj5dQnSX1ko.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Ink" + } + ] + }, + { + "name": "Reenie Beanie", + "fontFamily": "Reenie Beanie, cursive", + "slug": "reenie-beanie", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/reeniebeanie/v16/z7NSdR76eDkaJKZJFkkjuvWxXPy1rg.ttf" - }, - { - "family": "Reggae One", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/reggaeone/v15/~CgwKClJlZ2dhZSBPbmUgACoECAEYAQ==.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/reggaeone/v15/~CgwKClJlZ2dhZSBPbmUQASAA.ttf" - }, - { - "family": "Revalia", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/revalia/v20/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/revalia/v20/WwkexPimBE2-4ZPESVvkMA.ttf" - }, - { - "family": "Rhodium Libre", - "variants": [ "regular" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rhodiumlibre/v17/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rhodiumlibre/v17/1q2AY5adA0tn_ukeHcQHqpx6lEXBfg.ttf" - }, - { - "family": "Ribeye", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/ribeye/v22/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ribeye/v22/L0x8DFMxk1MP9R3hvfqi.ttf" - }, - { - "family": "Ribeye Marrow", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ribeyemarrow/v22/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ribeyemarrow/v22/GFDsWApshnqMRO2JdtRZ2d0vIA0ZUQ.ttf" - }, - { - "family": "Righteous", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/righteous/v14/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/righteous/v14/1cXxaUPXBpj2rGoU7C9WjnGA.ttf" - }, - { - "family": "Risque", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/risque/v20/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/risque/v20/VdGfAZUfHosahXxYCEwR.ttf" - }, - { - "family": "Road Rage", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/roadrage/v5/6NUU8F2fKAOBKjjr4ekvtMYAwdRZfw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/roadrage/v5/6NUU8F2fKAOBKjjr4ekftcwE.ttf" - }, - { - "family": "Roboto", - "variants": [ - "100", - "100italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "700", - "700italic", - "900", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v30", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf", - "300": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf", - "500": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf", - "700": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf", - "900": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf", - "100italic": "http://fonts.gstatic.com/s/roboto/v30/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf", - "300italic": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf", - "regular": "http://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf", - "italic": "http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf", - "500italic": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf", - "700italic": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf", - "900italic": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu5GxP.ttf" - }, - { - "family": "Roboto Condensed", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "700", - "700italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v25", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf", - "700": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf", - "300italic": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf", - "regular": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf", - "italic": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf", - "700italic": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-19S7CA.ttf" - }, - { - "family": "Roboto Flex", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v9", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/robotoflex/v9/NaN4epOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGfttPZktqc2VdZ80KvCLZaPcSBZtOx2MifRuWR28sPJtUMbsFEK6cRrleUx9Xgbm3WLHa_F4Ep4Fm0PN19Ik5Dntczx0wZGzhPlL1YNMYKbv9_1IQXOw7AiUJVXpRJ6cXW4O8TNGoXjC79QRyaLshNDUf3e0O-gn5rrZCu20YNYG0EACUTNK-QKavMlxGIY8dxef0jQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/robotoflex/v9/NaN4epOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGfttPZktqc2VdZ80KvCLZaPcSBZtOx2MifRuWR28sPJtUMbsFEK6cRrleUx9Xgbm3WLHa_F4Ep4Fm0PN19Ik5Dntczx0wZGzhPlL1YNMYKbv9_1IQXOw7AiUJVXpRJ6cXW4O8TNGoXjC79QRyaLshNDUf3e0O-gn5rrZCu20YNYG0EACUTNK-QKavMlx2IIUZ.ttf" - }, - { - "family": "Roboto Mono", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQ--5Ip2sSQ.ttf", - "200": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQ--5Ip2sSQ.ttf", - "300": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQ--5Ip2sSQ.ttf", - "500": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQ--5Ip2sSQ.ttf", - "600": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQ--5Ip2sSQ.ttf", - "700": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQ--5Ip2sSQ.ttf", - "regular": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQ--5Ip2sSQ.ttf", - "100italic": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9AJi8SZwt.ttf", - "200italic": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9AJi8SZwt.ttf", - "300italic": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9AJi8SZwt.ttf", - "italic": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9AJi8SZwt.ttf", - "500italic": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9AJi8SZwt.ttf", - "600italic": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9AJi8SZwt.ttf", - "700italic": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9AJi8SZwt.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reeniebeanie/v16/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reenie Beanie" + } + ] + }, + { + "name": "Reggae One", + "fontFamily": "Reggae One, system-ui", + "slug": "reggae-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reggaeone/v15/~CgwKClJlZ2dhZSBPbmUgACoECAEYAQ==.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reggae One" + } + ] + }, + { + "name": "Revalia", + "fontFamily": "Revalia, system-ui", + "slug": "revalia", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/revalia/v20/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Revalia" + } + ] + }, + { + "name": "Rhodium Libre", + "fontFamily": "Rhodium Libre, serif", + "slug": "rhodium-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rhodiumlibre/v17/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rhodium Libre" + } + ] + }, + { + "name": "Ribeye", + "fontFamily": "Ribeye, system-ui", + "slug": "ribeye", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ribeye/v22/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ribeye" + } + ] + }, + { + "name": "Ribeye Marrow", + "fontFamily": "Ribeye Marrow, system-ui", + "slug": "ribeye-marrow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ribeyemarrow/v22/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ribeye Marrow" + } + ] + }, + { + "name": "Righteous", + "fontFamily": "Righteous, system-ui", + "slug": "righteous", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/righteous/v14/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Righteous" + } + ] + }, + { + "name": "Risque", + "fontFamily": "Risque, system-ui", + "slug": "risque", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/risque/v20/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Risque" + } + ] + }, + { + "name": "Road Rage", + "fontFamily": "Road Rage, system-ui", + "slug": "road-rage", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/roadrage/v5/6NUU8F2fKAOBKjjr4ekvtMYAwdRZfw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Road Rage" + } + ] + }, + { + "name": "Roboto", + "fontFamily": "Roboto, sans-serif", + "slug": "roboto", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Roboto" + } + ] + }, + { + "name": "Roboto Condensed", + "fontFamily": "Roboto Condensed, sans-serif", + "slug": "roboto-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Roboto Condensed" + } + ] + }, + { + "name": "Roboto Flex", + "fontFamily": "Roboto Flex, sans-serif", + "slug": "roboto-flex", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotoflex/v9/NaN4epOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGfttPZktqc2VdZ80KvCLZaPcSBZtOx2MifRuWR28sPJtUMbsFEK6cRrleUx9Xgbm3WLHa_F4Ep4Fm0PN19Ik5Dntczx0wZGzhPlL1YNMYKbv9_1IQXOw7AiUJVXpRJ6cXW4O8TNGoXjC79QRyaLshNDUf3e0O-gn5rrZCu20YNYG0EACUTNK-QKavMlxGIY8dxef0jQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Flex" + } + ] + }, + { + "name": "Roboto Mono", + "fontFamily": "Roboto Mono, monospace", + "slug": "roboto-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_QuW9.ttf" - }, - { - "family": "Roboto Serif", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v13", - "lastModified": "2023-04-04", - "files": { - "100": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliosp6d2Af5fR4k.ttf", - "200": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqotp6d2Af5fR4k.ttf", - "300": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElnQtp6d2Af5fR4k.ttf", - "500": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6d2Af5fR4k.ttf", - "600": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElvQqp6d2Af5fR4k.ttf", - "700": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6d2Af5fR4k.ttf", - "800": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqoqp6d2Af5fR4k.ttf", - "900": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEloMqp6d2Af5fR4k.ttf", - "regular": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6d2Af5fR4k.ttf", - "100italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-V8BdxaV4nUFw.ttf", - "200italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-R8BdxaV4nUFw.ttf", - "300italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuEeR8BdxaV4nUFw.ttf", - "italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8BdxaV4nUFw.ttf", - "500italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JufeR8BdxaV4nUFw.ttf", - "600italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JukeN8BdxaV4nUFw.ttf", - "700italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8BdxaV4nUFw.ttf", - "800italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-N8BdxaV4nUFw.ttf", - "900italic": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Ju5uN8BdxaV4nUFw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotl6Z8BQ.ttf" - }, - { - "family": "Roboto Slab", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v25", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaG5iddG-1A.ttf", - "200": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaG5iddG-1A.ttf", - "300": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaG5iddG-1A.ttf", - "500": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaG5iddG-1A.ttf", - "600": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaG5iddG-1A.ttf", - "700": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaG5iddG-1A.ttf", - "800": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaG5iddG-1A.ttf", - "900": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaG5iddG-1A.ttf", - "regular": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaG5iddG-1A.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmaWRm.ttf" - }, - { - "family": "Rochester", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rochester/v18/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQ--5Ip2sSQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQ--5Ip2sSQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQ--5Ip2sSQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQ--5Ip2sSQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQ--5Ip2sSQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQ--5Ip2sSQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQ--5Ip2sSQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9AJi8SZwt.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9AJi8SZwt.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9AJi8SZwt.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9AJi8SZwt.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9AJi8SZwt.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9AJi8SZwt.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9AJi8SZwt.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + } + ] + }, + { + "name": "Roboto Serif", + "fontFamily": "Roboto Serif, serif", + "slug": "roboto-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliosp6d2Af5fR4k.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqotp6d2Af5fR4k.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElnQtp6d2Af5fR4k.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6d2Af5fR4k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6d2Af5fR4k.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElvQqp6d2Af5fR4k.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6d2Af5fR4k.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqoqp6d2Af5fR4k.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEloMqp6d2Af5fR4k.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-V8BdxaV4nUFw.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-R8BdxaV4nUFw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuEeR8BdxaV4nUFw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8BdxaV4nUFw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JufeR8BdxaV4nUFw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JukeN8BdxaV4nUFw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8BdxaV4nUFw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-N8BdxaV4nUFw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Ju5uN8BdxaV4nUFw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + } + ] + }, + { + "name": "Roboto Slab", + "fontFamily": "Roboto Slab, serif", + "slug": "roboto-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaG5iddG-1A.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaG5iddG-1A.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaG5iddG-1A.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaG5iddG-1A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaG5iddG-1A.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaG5iddG-1A.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaG5iddG-1A.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaG5iddG-1A.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaG5iddG-1A.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + } + ] + }, + { + "name": "Rochester", + "fontFamily": "Rochester, cursive", + "slug": "rochester", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rochester/v18/6ae-4KCqVa4Zy6Fif-UC3lHS.ttf" - }, - { - "family": "Rock Salt", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rocksalt/v18/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rochester/v18/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rochester" + } + ] + }, + { + "name": "Rock Salt", + "fontFamily": "Rock Salt, cursive", + "slug": "rock-salt", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rocksalt/v18/MwQ0bhv11fWD6QsAVOZrsUM_.ttf" - }, - { - "family": "RocknRoll One", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v10", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/rocknrollone/v10/kmK7ZqspGAfCeUiW6FFlmEC9guVhs7tfUxc.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rocknrollone/v10/kmK7ZqspGAfCeUiW6FFlmEC9suRrtw.ttf" - }, - { - "family": "Rokkitt", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v34", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDLE76HvN6n.ttf", - "200": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DLE76HvN6n.ttf", - "300": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DLE76HvN6n.ttf", - "500": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DLE76HvN6n.ttf", - "600": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDLE76HvN6n.ttf", - "700": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDLE76HvN6n.ttf", - "800": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDLE76HvN6n.ttf", - "900": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDLE76HvN6n.ttf", - "regular": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DLE76HvN6n.ttf", - "100italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiJGbqluc6nu9E.ttf", - "200italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiIGbqluc6nu9E.ttf", - "300italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NCaIGbqluc6nu9E.ttf", - "italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiIGbqluc6nu9E.ttf", - "500italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NEqIGbqluc6nu9E.ttf", - "600italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NKaPGbqluc6nu9E.ttf", - "700italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NJ-PGbqluc6nu9E.ttf", - "800italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiPGbqluc6nu9E.ttf", - "900italic": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NNGPGbqluc6nu9E.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd6DKGbo.ttf" - }, - { - "family": "Romanesco", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rocksalt/v18/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rock Salt" + } + ] + }, + { + "name": "RocknRoll One", + "fontFamily": "RocknRoll One, sans-serif", + "slug": "rocknroll-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rocknrollone/v10/kmK7ZqspGAfCeUiW6FFlmEC9guVhs7tfUxc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "RocknRoll One" + } + ] + }, + { + "name": "Rokkitt", + "fontFamily": "Rokkitt, serif", + "slug": "rokkitt", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDLE76HvN6n.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DLE76HvN6n.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DLE76HvN6n.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DLE76HvN6n.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DLE76HvN6n.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDLE76HvN6n.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDLE76HvN6n.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDLE76HvN6n.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDLE76HvN6n.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiJGbqluc6nu9E.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiIGbqluc6nu9E.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NCaIGbqluc6nu9E.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiIGbqluc6nu9E.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NEqIGbqluc6nu9E.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NKaPGbqluc6nu9E.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NJ-PGbqluc6nu9E.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiPGbqluc6nu9E.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NNGPGbqluc6nu9E.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + } + ] + }, + { + "name": "Romanesco", + "fontFamily": "Romanesco, cursive", + "slug": "romanesco", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSX3XYP.ttf" - }, - { - "family": "Ropa Sans", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf", - "italic": "http://fonts.gstatic.com/s/ropasans/v15/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScy6WzNs.ttf" - }, - { - "family": "Rosario", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "300italic", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v31", - "lastModified": "2023-03-21", - "files": { - "300": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf", - "500": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf", - "600": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf", - "700": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf", - "regular": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf", - "300italic": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf", - "italic": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf", - "500italic": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf", - "600italic": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf", - "700italic": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCVcyfeI.ttf" - }, - { - "family": "Rosarivo", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rosarivo/v20/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf", - "italic": "http://fonts.gstatic.com/s/rosarivo/v20/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rosarivo/v20/PlI-Fl2lO6N9f8HaNDeD0Hw.ttf" - }, - { - "family": "Rouge Script", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rougescript/v14/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Romanesco" + } + ] + }, + { + "name": "Ropa Sans", + "fontFamily": "Ropa Sans, sans-serif", + "slug": "ropa-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ropa Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ropasans/v15/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ropa Sans" + } + ] + }, + { + "name": "Rosario", + "fontFamily": "Rosario, sans-serif", + "slug": "rosario", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rosario" + } + ] + }, + { + "name": "Rosarivo", + "fontFamily": "Rosarivo, serif", + "slug": "rosarivo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rosarivo/v20/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rosarivo" + }, + { + "src": "http://fonts.gstatic.com/s/rosarivo/v20/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rosarivo" + } + ] + }, + { + "name": "Rouge Script", + "fontFamily": "Rouge Script, cursive", + "slug": "rouge-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rougescript/v14/LYjFdGbiklMoCIQOw1Ep3S4_Vf_f.ttf" - }, - { - "family": "Rowdies", - "variants": [ "300", "regular", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219hth5O7yKQNute8.ttf", - "700": "http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219gtm5O7yKQNute8.ttf", - "regular": "http://fonts.gstatic.com/s/rowdies/v15/ptRJTieMYPNBAK21zrdJwObZNQo.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rowdies/v15/ptRJTieMYPNBAK21_rZDxA.ttf" - }, - { - "family": "Rozha One", - "variants": [ "regular" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rozhaone/v13/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rozhaone/v13/AlZy_zVFtYP12Zncg2kRdH38.ttf" - }, - { - "family": "Rubik", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v26", - "lastModified": "2023-03-09", - "files": { - "300": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UE80V4bVkA.ttf", - "500": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UE80V4bVkA.ttf", - "600": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1UE80V4bVkA.ttf", - "700": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UE80V4bVkA.ttf", - "800": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1UE80V4bVkA.ttf", - "900": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1UE80V4bVkA.ttf", - "regular": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UE80V4bVkA.ttf", - "300italic": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0UwdYPFkJ1O.ttf", - "italic": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0UwdYPFkJ1O.ttf", - "500italic": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0UwdYPFkJ1O.ttf", - "600italic": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEUwdYPFkJ1O.ttf", - "700italic": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEUwdYPFkJ1O.ttf", - "800italic": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEUwdYPFkJ1O.ttf", - "900italic": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEUwdYPFkJ1O.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4iFUUUw.ttf" - }, - { - "family": "Rubik 80s Fade", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v2", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/rubik80sfade/v2/U9MF6dW37nLSmnwZXyoV-uPXUhHwkbL8IHcK.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubik80sfade/v2/U9MF6dW37nLSmnwZXyoV-uPXUiHxm7Y.ttf" - }, - { - "family": "Rubik Beastly", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikbeastly/v10/0QImMXRd5oOmSC2ZQ7o9653X07z8_ApHqqk.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikbeastly/v10/0QImMXRd5oOmSC2ZQ7o9653X4732-A.ttf" - }, - { - "family": "Rubik Bubbles", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v3", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikbubbles/v3/JIA1UVdwbHFJtwA7Us1BPFbRNTENfDxyRXI.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikbubbles/v3/JIA1UVdwbHFJtwA7Us1BPFbRBTAHeA.ttf" - }, - { - "family": "Rubik Burned", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v1", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqniHQuaCY5ZSg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqnSHAGe.ttf" - }, - { - "family": "Rubik Dirt", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v2", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikdirt/v2/DtVmJxC7WLEj1uIXEWAdulwm6gDXvwE.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikdirt/v2/DtVmJxC7WLEj1uIXEWAdil0s7g.ttf" - }, - { - "family": "Rubik Distressed", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v1", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldcWAhatVBaGM.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldQWErbg.ttf" - }, - { - "family": "Rubik Gemstones", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v1", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikgemstones/v1/zrf90HrL0-_8Xb4DFM2rUkWbOVrOiCnGqi1GMw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikgemstones/v1/zrf90HrL0-_8Xb4DFM2rUkWbOVr-iSPC.ttf" - }, - { - "family": "Rubik Glitch", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZvmC7HONiSFQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZfmSTD.ttf" - }, - { - "family": "Rubik Iso", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v2", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikiso/v2/x3dickHUfr-S4VAI4sABfPACvy_1BA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikiso/v2/x3dickHUfr-S4VAI4sAxffoG.ttf" - }, - { - "family": "Rubik Marker Hatch", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v1", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHQDL4iw0H6zw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHgDbQm.ttf" - }, - { - "family": "Rubik Maze", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v2", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikmaze/v2/xMQRuF9ZVa2ftiJEavXSAX7inS-bxV4.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikmaze/v2/xMQRuF9ZVa2ftiJEavXSMX_omQ.ttf" - }, - { - "family": "Rubik Microbe", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZcs8aaKgiauE.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZQs4QbA.ttf" - }, - { - "family": "Rubik Mono One", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikmonoone/v15/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikmonoone/v15/UqyJK8kPP3hjw6ANTdfRk9YSN98xTKA.ttf" - }, - { - "family": "Rubik Moonrocks", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikmoonrocks/v2/845ANMAmAI2VUZMLu_W0M7HqlDHnXcD7JGy1Sw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikmoonrocks/v2/845ANMAmAI2VUZMLu_W0M7HqlDHXXMr_.ttf" - }, - { - "family": "Rubik Pixels", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v2", - "lastModified": "2023-04-04", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikpixels/v2/SlGXmQOaupkIeSx4CEpB7AdSaBYRagrQrA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikpixels/v2/SlGXmQOaupkIeSx4CEpB7AdiaRwV.ttf" - }, - { - "family": "Rubik Puddles", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcJfC0wVMT-aE.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcFfG-xQ.ttf" - }, - { - "family": "Rubik Spray Paint", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v1", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikspraypaint/v1/WnzhHBAoeBPUDTB4EWR82y6EXWPH-Ro-QoaBZQxP.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikspraypaint/v1/WnzhHBAoeBPUDTB4EWR82y6EXWPH-So_SII.ttf" - }, - { - "family": "Rubik Storm", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v1", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikstorm/v1/eLGYP-_uPgO5Ag7ju9JaouL9T2Xh9NQk.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikstorm/v1/eLGYP-_uPgO5Ag7ju9JaotL8RWE.ttf" - }, - { - "family": "Rubik Vinyl", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v1", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikvinyl/v1/iJWABXKIfDnIV4mQ5BfjvUXexox2ztOU.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikvinyl/v1/iJWABXKIfDnIV4mQ5BfjvXXfzIg.ttf" - }, - { - "family": "Rubik Wet Paint", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "hebrew", - "latin", - "latin-ext" - ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-F-zz313DuvQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-1-jbz.ttf" - }, - { - "family": "Ruda", - "variants": [ "regular", "500", "600", "700", "800", "900" ], - "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], - "version": "v23", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_-2KiSGg-H.ttf", - "600": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_-2KiSGg-H.ttf", - "700": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_-2KiSGg-H.ttf", - "800": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_-2KiSGg-H.ttf", - "900": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_-2KiSGg-H.ttf", - "regular": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_-2KiSGg-H.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsh__0qw.ttf" - }, - { - "family": "Rufina", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/rufina/v13/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf", - "regular": "http://fonts.gstatic.com/s/rufina/v13/Yq6V-LyURyLy-aKyoxRktOdClg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rufina/v13/Yq6V-LyURyLy-aKCoh5g.ttf" - }, - { - "family": "Ruge Boogie", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v25", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/rugeboogie/v25/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rougescript/v14/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rouge Script" + } + ] + }, + { + "name": "Rowdies", + "fontFamily": "Rowdies, system-ui", + "slug": "rowdies", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219hth5O7yKQNute8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rowdies" + }, + { + "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRJTieMYPNBAK21zrdJwObZNQo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rowdies" + }, + { + "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219gtm5O7yKQNute8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rowdies" + } + ] + }, + { + "name": "Rozha One", + "fontFamily": "Rozha One, serif", + "slug": "rozha-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rozhaone/v13/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rozha One" + } + ] + }, + { + "name": "Rubik", + "fontFamily": "Rubik, sans-serif", + "slug": "rubik", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UE80V4bVkA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UE80V4bVkA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UE80V4bVkA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1UE80V4bVkA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UE80V4bVkA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1UE80V4bVkA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1UE80V4bVkA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0UwdYPFkJ1O.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0UwdYPFkJ1O.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0UwdYPFkJ1O.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEUwdYPFkJ1O.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEUwdYPFkJ1O.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEUwdYPFkJ1O.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEUwdYPFkJ1O.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Rubik" + } + ] + }, + { + "name": "Rubik 80s Fade", + "fontFamily": "Rubik 80s Fade, system-ui", + "slug": "rubik-80s-fade", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubik80sfade/v2/U9MF6dW37nLSmnwZXyoV-uPXUhHwkbL8IHcK.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik 80s Fade" + } + ] + }, + { + "name": "Rubik Beastly", + "fontFamily": "Rubik Beastly, system-ui", + "slug": "rubik-beastly", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikbeastly/v10/0QImMXRd5oOmSC2ZQ7o9653X07z8_ApHqqk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Beastly" + } + ] + }, + { + "name": "Rubik Bubbles", + "fontFamily": "Rubik Bubbles, system-ui", + "slug": "rubik-bubbles", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikbubbles/v3/JIA1UVdwbHFJtwA7Us1BPFbRNTENfDxyRXI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Bubbles" + } + ] + }, + { + "name": "Rubik Burned", + "fontFamily": "Rubik Burned, system-ui", + "slug": "rubik-burned", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqniHQuaCY5ZSg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Burned" + } + ] + }, + { + "name": "Rubik Dirt", + "fontFamily": "Rubik Dirt, system-ui", + "slug": "rubik-dirt", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikdirt/v2/DtVmJxC7WLEj1uIXEWAdulwm6gDXvwE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Dirt" + } + ] + }, + { + "name": "Rubik Distressed", + "fontFamily": "Rubik Distressed, system-ui", + "slug": "rubik-distressed", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldcWAhatVBaGM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Distressed" + } + ] + }, + { + "name": "Rubik Gemstones", + "fontFamily": "Rubik Gemstones, system-ui", + "slug": "rubik-gemstones", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikgemstones/v1/zrf90HrL0-_8Xb4DFM2rUkWbOVrOiCnGqi1GMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Gemstones" + } + ] + }, + { + "name": "Rubik Glitch", + "fontFamily": "Rubik Glitch, system-ui", + "slug": "rubik-glitch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZvmC7HONiSFQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Glitch" + } + ] + }, + { + "name": "Rubik Iso", + "fontFamily": "Rubik Iso, system-ui", + "slug": "rubik-iso", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikiso/v2/x3dickHUfr-S4VAI4sABfPACvy_1BA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Iso" + } + ] + }, + { + "name": "Rubik Marker Hatch", + "fontFamily": "Rubik Marker Hatch, system-ui", + "slug": "rubik-marker-hatch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHQDL4iw0H6zw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Marker Hatch" + } + ] + }, + { + "name": "Rubik Maze", + "fontFamily": "Rubik Maze, system-ui", + "slug": "rubik-maze", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmaze/v2/xMQRuF9ZVa2ftiJEavXSAX7inS-bxV4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Maze" + } + ] + }, + { + "name": "Rubik Microbe", + "fontFamily": "Rubik Microbe, system-ui", + "slug": "rubik-microbe", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZcs8aaKgiauE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Microbe" + } + ] + }, + { + "name": "Rubik Mono One", + "fontFamily": "Rubik Mono One, sans-serif", + "slug": "rubik-mono-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmonoone/v15/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Mono One" + } + ] + }, + { + "name": "Rubik Moonrocks", + "fontFamily": "Rubik Moonrocks, system-ui", + "slug": "rubik-moonrocks", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmoonrocks/v2/845ANMAmAI2VUZMLu_W0M7HqlDHnXcD7JGy1Sw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Moonrocks" + } + ] + }, + { + "name": "Rubik Pixels", + "fontFamily": "Rubik Pixels, system-ui", + "slug": "rubik-pixels", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikpixels/v2/SlGXmQOaupkIeSx4CEpB7AdSaBYRagrQrA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Pixels" + } + ] + }, + { + "name": "Rubik Puddles", + "fontFamily": "Rubik Puddles, system-ui", + "slug": "rubik-puddles", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcJfC0wVMT-aE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Puddles" + } + ] + }, + { + "name": "Rubik Spray Paint", + "fontFamily": "Rubik Spray Paint, system-ui", + "slug": "rubik-spray-paint", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikspraypaint/v1/WnzhHBAoeBPUDTB4EWR82y6EXWPH-Ro-QoaBZQxP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Spray Paint" + } + ] + }, + { + "name": "Rubik Storm", + "fontFamily": "Rubik Storm, system-ui", + "slug": "rubik-storm", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikstorm/v1/eLGYP-_uPgO5Ag7ju9JaouL9T2Xh9NQk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Storm" + } + ] + }, + { + "name": "Rubik Vinyl", + "fontFamily": "Rubik Vinyl, system-ui", + "slug": "rubik-vinyl", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikvinyl/v1/iJWABXKIfDnIV4mQ5BfjvUXexox2ztOU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Vinyl" + } + ] + }, + { + "name": "Rubik Wet Paint", + "fontFamily": "Rubik Wet Paint, system-ui", + "slug": "rubik-wet-paint", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-F-zz313DuvQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Wet Paint" + } + ] + }, + { + "name": "Ruda", + "fontFamily": "Ruda, sans-serif", + "slug": "ruda", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_-2KiSGg-H.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_-2KiSGg-H.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_-2KiSGg-H.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_-2KiSGg-H.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_-2KiSGg-H.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_-2KiSGg-H.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Ruda" + } + ] + }, + { + "name": "Rufina", + "fontFamily": "Rufina, serif", + "slug": "rufina", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rufina/v13/Yq6V-LyURyLy-aKyoxRktOdClg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rufina" + }, + { + "src": "http://fonts.gstatic.com/s/rufina/v13/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rufina" + } + ] + }, + { + "name": "Ruge Boogie", + "fontFamily": "Ruge Boogie, cursive", + "slug": "ruge-boogie", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rugeboogie/v25/JIA3UVFwbHRF_GIWSMhKNSOjNTE.ttf" - }, - { - "family": "Ruluko", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0ZCq-3.ttf" - }, - { - "family": "Rum Raisin", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rumraisin/v20/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rumraisin/v20/nwpRtKu3Ih8D5avB4h2uF36Czw.ttf" - }, - { - "family": "Ruslan Display", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ruslandisplay/v22/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ruslandisplay/v22/Gw6jwczl81XcIZuckK_e3Upfdwxqn9g.ttf" - }, - { - "family": "Russo One", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsHOycmM.ttf" - }, - { - "family": "Ruthie", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ruthie/v24/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rugeboogie/v25/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruge Boogie" + } + ] + }, + { + "name": "Ruluko", + "fontFamily": "Ruluko, sans-serif", + "slug": "ruluko", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruluko" + } + ] + }, + { + "name": "Rum Raisin", + "fontFamily": "Rum Raisin, sans-serif", + "slug": "rum-raisin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rumraisin/v20/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rum Raisin" + } + ] + }, + { + "name": "Ruslan Display", + "fontFamily": "Ruslan Display, system-ui", + "slug": "ruslan-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ruslandisplay/v22/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruslan Display" + } + ] + }, + { + "name": "Russo One", + "fontFamily": "Russo One, sans-serif", + "slug": "russo-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Russo One" + } + ] + }, + { + "name": "Ruthie", + "fontFamily": "Ruthie, cursive", + "slug": "ruthie", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ruthie/v24/gokvH63sGkdqXuUNlTRz.ttf" - }, - { - "family": "Rye", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/rye/v13/r05XGLJT86YDFpTsXOqx4w.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/rye/v13/r05XGLJT86YzF57o.ttf" - }, - { - "family": "STIX Two Text", - "variants": [ - "regular", - "500", - "600", - "700", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v11", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YihS2SOYWxFMN1WD.ttf", - "600": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yii-3iOYWxFMN1WD.ttf", - "700": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YiiH3iOYWxFMN1WD.ttf", - "regular": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2SOYWxFMN1WD.ttf", - "italic": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omsvbURVuMkWDmSo.ttf", - "500italic": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omvnbURVuMkWDmSo.ttf", - "600italic": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omhXcURVuMkWDmSo.ttf", - "700italic": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omizcURVuMkWDmSo.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2ROZURU.ttf" - }, - { - "family": "Sacramento", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sacramento/v13/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ruthie/v24/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruthie" + } + ] + }, + { + "name": "Rye", + "fontFamily": "Rye, system-ui", + "slug": "rye", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rye/v13/r05XGLJT86YDFpTsXOqx4w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rye" + } + ] + }, + { + "name": "STIX Two Text", + "fontFamily": "STIX Two Text, serif", + "slug": "stix-two-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2SOYWxFMN1WD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YihS2SOYWxFMN1WD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yii-3iOYWxFMN1WD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YiiH3iOYWxFMN1WD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omsvbURVuMkWDmSo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omvnbURVuMkWDmSo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omhXcURVuMkWDmSo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omizcURVuMkWDmSo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "STIX Two Text" + } + ] + }, + { + "name": "Sacramento", + "fontFamily": "Sacramento, cursive", + "slug": "sacramento", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sacramento/v13/buEzpo6gcdjy0EiZMBUG4Csf-A.ttf" - }, - { - "family": "Sahitya", - "variants": [ "regular", "700" ], - "subsets": [ "devanagari", "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/sahitya/v17/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf", - "regular": "http://fonts.gstatic.com/s/sahitya/v17/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sahitya/v17/6qLAKZkOuhnuqlJAWSYPOw.ttf" - }, - { - "family": "Sail", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJFBTDADYAbvw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJJBXJBA.ttf" - }, - { - "family": "Saira", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rDosg7lwYmUVY.ttf", - "200": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rCosg7lwYmUVY.ttf", - "300": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7wTCosg7lwYmUVY.ttf", - "500": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA72jCosg7lwYmUVY.ttf", - "600": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA74TFosg7lwYmUVY.ttf", - "700": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773Fosg7lwYmUVY.ttf", - "800": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rFosg7lwYmUVY.ttf", - "900": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7_PFosg7lwYmUVY.ttf", - "regular": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCosg7lwYmUVY.ttf", - "100italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSooxkyQjQVYmxA.ttf", - "200italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByosxkyQjQVYmxA.ttf", - "300italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBFIsxkyQjQVYmxA.ttf", - "italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSosxkyQjQVYmxA.ttf", - "500italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBeIsxkyQjQVYmxA.ttf", - "600italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBlIwxkyQjQVYmxA.ttf", - "700italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBrYwxkyQjQVYmxA.ttf", - "800italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByowxkyQjQVYmxA.ttf", - "900italic": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKB44wxkyQjQVYmxA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCkskxkw.ttf" - }, - { - "family": "Saira Condensed", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf", - "200": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf", - "300": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf", - "500": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf", - "600": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf", - "700": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf", - "800": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf", - "900": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf", - "regular": "http://fonts.gstatic.com/s/sairacondensed/v11/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sairacondensed/v11/EJROQgErUN8XuHNEtX81i9TmEkrvpOtA.ttf" - }, - { - "family": "Saira Extra Condensed", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf", - "200": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf", - "300": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf", - "500": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf", - "600": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf", - "700": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf", - "800": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf", - "900": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf", - "regular": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTj7kjx.ttf" - }, - { - "family": "Saira Semi Condensed", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf", - "200": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf", - "300": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf", - "500": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf", - "600": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf", - "700": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf", - "800": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf", - "900": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf", - "regular": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRX8KaOM.ttf" - }, - { - "family": "Saira Stencil One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sairastencilone/v14/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sairastencilone/v14/SLXSc03I6HkvZGJ1GvvipLoYSTEL9DsNYQw.ttf" - }, - { - "family": "Salsa", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/salsa/v17/gNMKW3FiRpKj-imY8ncKEZez.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/salsa/v17/gNMKW3FiRpKj-hmZ-HM.ttf" - }, - { - "family": "Sanchez", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sanchez/v13/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf", - "italic": "http://fonts.gstatic.com/s/sanchez/v13/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sanchez/v13/Ycm2sZJORluHnXbIfm9R-A.ttf" - }, - { - "family": "Sancreek", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sancreek/v23/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sancreek/v23/pxiHypAnsdxUm159X4D_V1s.ttf" - }, - { - "family": "Sansita", - "variants": [ - "regular", - "italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf", - "800": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf", - "900": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf", - "regular": "http://fonts.gstatic.com/s/sansita/v11/QldONTRRphEb_-V7HBm7TXFf3qw.ttf", - "italic": "http://fonts.gstatic.com/s/sansita/v11/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf", - "700italic": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf", - "800italic": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf", - "900italic": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sansita/v11/QldONTRRphEb_-V7LBixSQ.ttf" - }, - { - "family": "Sansita Swashed", - "variants": [ "300", "regular", "500", "600", "700", "800", "900" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW-ppbToVehmEa4Q.ttf", - "500": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW4ZpbToVehmEa4Q.ttf", - "600": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW2pubToVehmEa4Q.ttf", - "700": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW1NubToVehmEa4Q.ttf", - "800": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWzRubToVehmEa4Q.ttf", - "900": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWx1ubToVehmEa4Q.ttf", - "regular": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpbToVehmEa4Q.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpXTsffg.ttf" - }, - { - "family": "Sarabun", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic" - ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf", - "200": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf", - "300": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf", - "500": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf", - "600": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf", - "700": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf", - "800": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf", - "100italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf", - "200italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf", - "300italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf", - "regular": "http://fonts.gstatic.com/s/sarabun/v13/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf", - "italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf", - "500italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf", - "600italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf", - "700italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf", - "800italic": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sarabun/v13/DtVjJx26TKEr37c9aBNJmg.ttf" - }, - { - "family": "Sarala", - "variants": [ "regular", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/sarala/v10/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf", - "regular": "http://fonts.gstatic.com/s/sarala/v10/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sarala/v10/uK_y4riEZv4o1w9hCxcX.ttf" - }, - { - "family": "Sarina", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sarina/v21/-F6wfjF3ITQwasLhLkDUriBQxw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sarina/v21/-F6wfjF3ITQwasLRL0rQ.ttf" - }, - { - "family": "Sarpanch", - "variants": [ "regular", "500", "600", "700", "800", "900" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf", - "600": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf", - "700": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf", - "800": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf", - "900": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf", - "regular": "http://fonts.gstatic.com/s/sarpanch/v11/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sarpanch/v11/hESy6Xt4NCpRuk6Pzi2BTo4.ttf" - }, - { - "family": "Sassy Frass", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sassyfrass/v5/LhWhMVrGOe0FLb97BjhsE99dGNWQg_am.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sacramento/v13/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sacramento" + } + ] + }, + { + "name": "Sahitya", + "fontFamily": "Sahitya, serif", + "slug": "sahitya", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sahitya/v17/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sahitya" + }, + { + "src": "http://fonts.gstatic.com/s/sahitya/v17/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sahitya" + } + ] + }, + { + "name": "Sail", + "fontFamily": "Sail, system-ui", + "slug": "sail", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJFBTDADYAbvw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sail" + } + ] + }, + { + "name": "Saira", + "fontFamily": "Saira, sans-serif", + "slug": "saira", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rDosg7lwYmUVY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rCosg7lwYmUVY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7wTCosg7lwYmUVY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCosg7lwYmUVY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA72jCosg7lwYmUVY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA74TFosg7lwYmUVY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773Fosg7lwYmUVY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rFosg7lwYmUVY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7_PFosg7lwYmUVY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSooxkyQjQVYmxA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByosxkyQjQVYmxA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBFIsxkyQjQVYmxA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSosxkyQjQVYmxA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBeIsxkyQjQVYmxA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBlIwxkyQjQVYmxA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBrYwxkyQjQVYmxA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByowxkyQjQVYmxA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKB44wxkyQjQVYmxA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Saira" + } + ] + }, + { + "name": "Saira Condensed", + "fontFamily": "Saira Condensed, sans-serif", + "slug": "saira-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + } + ] + }, + { + "name": "Saira Extra Condensed", + "fontFamily": "Saira Extra Condensed, sans-serif", + "slug": "saira-extra-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + } + ] + }, + { + "name": "Saira Semi Condensed", + "fontFamily": "Saira Semi Condensed, sans-serif", + "slug": "saira-semi-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + } + ] + }, + { + "name": "Saira Stencil One", + "fontFamily": "Saira Stencil One, system-ui", + "slug": "saira-stencil-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sairastencilone/v14/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira Stencil One" + } + ] + }, + { + "name": "Salsa", + "fontFamily": "Salsa, system-ui", + "slug": "salsa", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/salsa/v17/gNMKW3FiRpKj-imY8ncKEZez.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Salsa" + } + ] + }, + { + "name": "Sanchez", + "fontFamily": "Sanchez, serif", + "slug": "sanchez", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sanchez/v13/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sanchez" + }, + { + "src": "http://fonts.gstatic.com/s/sanchez/v13/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sanchez" + } + ] + }, + { + "name": "Sancreek", + "fontFamily": "Sancreek, system-ui", + "slug": "sancreek", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sancreek/v23/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sancreek" + } + ] + }, + { + "name": "Sansita", + "fontFamily": "Sansita, sans-serif", + "slug": "sansita", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldONTRRphEb_-V7HBm7TXFf3qw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sansita" + } + ] + }, + { + "name": "Sansita Swashed", + "fontFamily": "Sansita Swashed, system-ui", + "slug": "sansita-swashed", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW-ppbToVehmEa4Q.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpbToVehmEa4Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW4ZpbToVehmEa4Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW2pubToVehmEa4Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW1NubToVehmEa4Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWzRubToVehmEa4Q.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWx1ubToVehmEa4Q.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + } + ] + }, + { + "name": "Sarabun", + "fontFamily": "Sarabun, sans-serif", + "slug": "sarabun", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sarabun" + } + ] + }, + { + "name": "Sarala", + "fontFamily": "Sarala, sans-serif", + "slug": "sarala", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sarala/v10/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sarala" + }, + { + "src": "http://fonts.gstatic.com/s/sarala/v10/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sarala" + } + ] + }, + { + "name": "Sarina", + "fontFamily": "Sarina, system-ui", + "slug": "sarina", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sarina/v21/-F6wfjF3ITQwasLhLkDUriBQxw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sarina" + } + ] + }, + { + "name": "Sarpanch", + "fontFamily": "Sarpanch, sans-serif", + "slug": "sarpanch", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + } + ] + }, + { + "name": "Sassy Frass", + "fontFamily": "Sassy Frass, cursive", + "slug": "sassy-frass", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sassyfrass/v5/LhWhMVrGOe0FLb97BjhsE-9cEtE.ttf" - }, - { - "family": "Satisfy", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/satisfy/v17/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sassyfrass/v5/LhWhMVrGOe0FLb97BjhsE99dGNWQg_am.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sassy Frass" + } + ] + }, + { + "name": "Satisfy", + "fontFamily": "Satisfy, cursive", + "slug": "satisfy", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/satisfy/v17/rP2Hp2yn6lkG50LoCZWIGA.ttf" - }, - { - "family": "Sawarabi Gothic", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "japanese", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v12", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/sawarabigothic/v12/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sawarabigothic/v12/x3d4ckfVaqqa-BEj-I9mE65u3k39BCMz.ttf" - }, - { - "family": "Sawarabi Mincho", - "variants": [ "regular" ], - "subsets": [ "japanese", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJjLKJL.ttf" - }, - { - "family": "Scada", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "cyrillic", "cyrillic-ext", "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/scada/v15/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf", - "regular": "http://fonts.gstatic.com/s/scada/v15/RLpxK5Pv5qumeWJoxzUobkvv.ttf", - "italic": "http://fonts.gstatic.com/s/scada/v15/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf", - "700italic": "http://fonts.gstatic.com/s/scada/v15/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/scada/v15/RLpxK5Pv5qumeVJpzTE.ttf" - }, - { - "family": "Scheherazade New", - "variants": [ "regular", "700" ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-11-09", - "files": { - "700": "http://fonts.gstatic.com/s/scheherazadenew/v14/4UaerFhTvxVnHDvUkUiHg8jprP4DM79DHlYC-IKnoSE.ttf", - "regular": "http://fonts.gstatic.com/s/scheherazadenew/v14/4UaZrFhTvxVnHDvUkUiHg8jprP4DCwNsOl4p5Is.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/scheherazadenew/v14/4UaZrFhTvxVnHDvUkUiHg8jprP4DOwJmPg.ttf" - }, - { - "family": "Schibsted Grotesk", - "variants": [ - "regular", - "500", - "600", - "700", - "800", - "900", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v3", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNEMEAT8JuXFGVOQ.ttf", - "600": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMN_MYAT8JuXFGVOQ.ttf", - "700": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYAT8JuXFGVOQ.ttf", - "800": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNosYAT8JuXFGVOQ.ttf", - "900": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNi8YAT8JuXFGVOQ.ttf", - "regular": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNIsEAT8JuXFGVOQ.ttf", - "italic": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLoDMhqflSFOTXs.ttf", - "500italic": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLaDMhqflSFOTXs.ttf", - "600italic": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oI2C8hqflSFOTXs.ttf", - "700italic": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oIPC8hqflSFOTXs.ttf", - "800italic": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJoC8hqflSFOTXs.ttf", - "900italic": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJBC8hqflSFOTXs.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNIsEwTshq.ttf" - }, - { - "family": "Schoolbell", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/satisfy/v17/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Satisfy" + } + ] + }, + { + "name": "Sawarabi Gothic", + "fontFamily": "Sawarabi Gothic, sans-serif", + "slug": "sawarabi-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sawarabigothic/v12/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sawarabi Gothic" + } + ] + }, + { + "name": "Sawarabi Mincho", + "fontFamily": "Sawarabi Mincho, serif", + "slug": "sawarabi-mincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sawarabi Mincho" + } + ] + }, + { + "name": "Scada", + "fontFamily": "Scada, sans-serif", + "slug": "scada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/scada/v15/RLpxK5Pv5qumeWJoxzUobkvv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Scada" + }, + { + "src": "http://fonts.gstatic.com/s/scada/v15/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Scada" + }, + { + "src": "http://fonts.gstatic.com/s/scada/v15/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Scada" + }, + { + "src": "http://fonts.gstatic.com/s/scada/v15/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Scada" + } + ] + }, + { + "name": "Scheherazade New", + "fontFamily": "Scheherazade New, serif", + "slug": "scheherazade-new", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/scheherazadenew/v14/4UaZrFhTvxVnHDvUkUiHg8jprP4DCwNsOl4p5Is.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Scheherazade New" + }, + { + "src": "http://fonts.gstatic.com/s/scheherazadenew/v14/4UaerFhTvxVnHDvUkUiHg8jprP4DM79DHlYC-IKnoSE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Scheherazade New" + } + ] + }, + { + "name": "Schibsted Grotesk", + "fontFamily": "Schibsted Grotesk, sans-serif", + "slug": "schibsted-grotesk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNIsEAT8JuXFGVOQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNEMEAT8JuXFGVOQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMN_MYAT8JuXFGVOQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYAT8JuXFGVOQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNosYAT8JuXFGVOQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNi8YAT8JuXFGVOQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLoDMhqflSFOTXs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLaDMhqflSFOTXs.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oI2C8hqflSFOTXs.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oIPC8hqflSFOTXs.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJoC8hqflSFOTXs.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJBC8hqflSFOTXs.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + } + ] + }, + { + "name": "Schoolbell", + "fontFamily": "Schoolbell, cursive", + "slug": "schoolbell", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIZxMa7g.ttf" - }, - { - "family": "Scope One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGDFWkXI.ttf" - }, - { - "family": "Seaweed Script", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/seaweedscript/v13/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/seaweedscript/v13/bx6cNx6Tne2pxOATYE8C_Rsoe3WI8qM.ttf" - }, - { - "family": "Secular One", - "variants": [ "regular" ], - "subsets": [ "hebrew", "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/secularone/v11/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/secularone/v11/8QINdiTajsj_87rMuMdKyqDkOO0.ttf" - }, - { - "family": "Sedgwick Ave", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sedgwickave/v12/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Schoolbell" + } + ] + }, + { + "name": "Scope One", + "fontFamily": "Scope One, serif", + "slug": "scope-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Scope One" + } + ] + }, + { + "name": "Seaweed Script", + "fontFamily": "Seaweed Script, system-ui", + "slug": "seaweed-script", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/seaweedscript/v13/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Seaweed Script" + } + ] + }, + { + "name": "Secular One", + "fontFamily": "Secular One, sans-serif", + "slug": "secular-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/secularone/v11/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Secular One" + } + ] + }, + { + "name": "Sedgwick Ave", + "fontFamily": "Sedgwick Ave, cursive", + "slug": "sedgwick-ave", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sedgwickave/v12/uK_04rKEYuguzAcSYRdWTJqMX2Ix.ttf" - }, - { - "family": "Sedgwick Ave Display", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sedgwickavedisplay/v19/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sedgwickave/v12/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sedgwick Ave" + } + ] + }, + { + "name": "Sedgwick Ave Display", + "fontFamily": "Sedgwick Ave Display, cursive", + "slug": "sedgwick-ave-display", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sedgwickavedisplay/v19/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM1cyfeI.ttf" - }, - { - "family": "Sen", - "variants": [ "regular", "700", "800" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__J9CoKkH1JHUQSQ.ttf", - "800": "http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__O9OoKkH1JHUQSQ.ttf", - "regular": "http://fonts.gstatic.com/s/sen/v7/6xKjdSxYI9_Hm_-MImrpLQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sen/v7/6xKjdSxYI9_3mvWI.ttf" - }, - { - "family": "Send Flowers", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sendflowers/v2/If2PXTjtZS-0Xqy13uCQSULvxwjjouU1iw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sedgwickavedisplay/v19/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sedgwick Ave Display" + } + ] + }, + { + "name": "Sen", + "fontFamily": "Sen, sans-serif", + "slug": "sen", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sen/v7/6xKjdSxYI9_Hm_-MImrpLQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sen" + }, + { + "src": "http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__J9CoKkH1JHUQSQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sen" + }, + { + "src": "http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__O9OoKkH1JHUQSQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sen" + } + ] + }, + { + "name": "Send Flowers", + "fontFamily": "Send Flowers, cursive", + "slug": "send-flowers", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sendflowers/v2/If2PXTjtZS-0Xqy13uCQSULfxgLn.ttf" - }, - { - "family": "Sevillana", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/sevillana/v21/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sevillana/v21/KFOlCnWFscmDt1Bfiy1fAhc9.ttf" - }, - { - "family": "Seymour One", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/seymourone/v20/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/seymourone/v20/4iCp6Khla9xbjQpoWGGd0lyJN4Q.ttf" - }, - { - "family": "Shadows Into Light", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/shadowsintolight/v15/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sendflowers/v2/If2PXTjtZS-0Xqy13uCQSULvxwjjouU1iw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Send Flowers" + } + ] + }, + { + "name": "Sevillana", + "fontFamily": "Sevillana, system-ui", + "slug": "sevillana", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sevillana/v21/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sevillana" + } + ] + }, + { + "name": "Seymour One", + "fontFamily": "Seymour One, sans-serif", + "slug": "seymour-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/seymourone/v20/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Seymour One" + } + ] + }, + { + "name": "Shadows Into Light", + "fontFamily": "Shadows Into Light, cursive", + "slug": "shadows-into-light", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/shadowsintolight/v15/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQzc8D8.ttf" - }, - { - "family": "Shadows Into Light Two", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/shadowsintolighttwo/v14/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shadowsintolight/v15/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shadows Into Light" + } + ] + }, + { + "name": "Shadows Into Light Two", + "fontFamily": "Shadows Into Light Two, cursive", + "slug": "shadows-into-light-two", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/shadowsintolighttwo/v14/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmpArHHA.ttf" - }, - { - "family": "Shalimar", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/shalimar/v5/uU9MCBoE6I6iNWFUvTPx8PCOg0uX.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shadowsintolighttwo/v14/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shadows Into Light Two" + } + ] + }, + { + "name": "Shalimar", + "fontFamily": "Shalimar, cursive", + "slug": "shalimar", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/shalimar/v5/uU9MCBoE6I6iNWFUvQPw-vQ.ttf" - }, - { - "family": "Shantell Sans", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "800", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v7", - "lastModified": "2023-04-27", - "files": { - "300": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYQiS2i2yPwxjyRN.ttf", - "500": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYROS2i2yPwxjyRN.ttf", - "600": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSiTGi2yPwxjyRN.ttf", - "700": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSbTGi2yPwxjyRN.ttf", - "800": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYT8TGi2yPwxjyRN.ttf", - "regular": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYR8S2i2yPwxjyRN.ttf", - "300italic": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CN71wvgTijRNYgQ.ttf", - "italic": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CID1wvgTijRNYgQ.ttf", - "500italic": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CLL1wvgTijRNYgQ.ttf", - "600italic": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CF7ywvgTijRNYgQ.ttf", - "700italic": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CGfywvgTijRNYgQ.ttf", - "800italic": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CADywvgTijRNYgQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYR8S1i3wvg.ttf" - }, - { - "family": "Shanti", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v23", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/shanti/v23/t5thIREMM4uSDgzgU0ezpKfwzA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/shanti/v23/t5thIREMM4uSDgzQUk23.ttf" - }, - { - "family": "Share", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/share/v16/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf", - "regular": "http://fonts.gstatic.com/s/share/v16/i7dEIFliZjKNF5VNHLq2cV5d.ttf", - "italic": "http://fonts.gstatic.com/s/share/v16/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf", - "700italic": "http://fonts.gstatic.com/s/share/v16/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/share/v16/i7dEIFliZjKNF6VMFr4.ttf" - }, - { - "family": "Share Tech", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sharetech/v17/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sharetech/v17/7cHtv4Uyi5K0OeZ7bohU8HsJnQ.ttf" - }, - { - "family": "Share Tech Mono", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shalimar/v5/uU9MCBoE6I6iNWFUvTPx8PCOg0uX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shalimar" + } + ] + }, + { + "name": "Shantell Sans", + "fontFamily": "Shantell Sans, system-ui", + "slug": "shantell-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYQiS2i2yPwxjyRN.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYR8S2i2yPwxjyRN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYROS2i2yPwxjyRN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSiTGi2yPwxjyRN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSbTGi2yPwxjyRN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYT8TGi2yPwxjyRN.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CN71wvgTijRNYgQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CID1wvgTijRNYgQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CLL1wvgTijRNYgQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CF7ywvgTijRNYgQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CGfywvgTijRNYgQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CADywvgTijRNYgQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + } + ] + }, + { + "name": "Shanti", + "fontFamily": "Shanti, sans-serif", + "slug": "shanti", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shanti/v23/t5thIREMM4uSDgzgU0ezpKfwzA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shanti" + } + ] + }, + { + "name": "Share", + "fontFamily": "Share, system-ui", + "slug": "share", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/share/v16/i7dEIFliZjKNF5VNHLq2cV5d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Share" + }, + { + "src": "http://fonts.gstatic.com/s/share/v16/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Share" + }, + { + "src": "http://fonts.gstatic.com/s/share/v16/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Share" + }, + { + "src": "http://fonts.gstatic.com/s/share/v16/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Share" + } + ] + }, + { + "name": "Share Tech", + "fontFamily": "Share Tech, sans-serif", + "slug": "share-tech", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sharetech/v17/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Share Tech" + } + ] + }, + { + "name": "Share Tech Mono", + "fontFamily": "Share Tech Mono, monospace", + "slug": "share-tech-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFcLpQEA.ttf" - }, - { - "family": "Shippori Antique", - "variants": [ "regular" ], - "subsets": [ "japanese", "latin", "latin-ext" ], - "version": "v8", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/shipporiantique/v8/-F6qfid3KC8pdMyzR0qRyFUht11v8ldPg-IUDNg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/shipporiantique/v8/-F6qfid3KC8pdMyzR0qRyFUht11vwlZFhw.ttf" - }, - { - "family": "Shippori Antique B1", - "variants": [ "regular" ], - "subsets": [ "japanese", "latin", "latin-ext" ], - "version": "v8", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/shipporiantiqueb1/v8/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRFCj9-5Y8Y.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/shipporiantiqueb1/v8/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40gnRBIiw.ttf" - }, - { - "family": "Shippori Mincho", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "japanese", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-27", - "files": { - "500": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4L9am5JEO5--2zg.ttf", - "600": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4A9Gm5JEO5--2zg.ttf", - "700": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4Z9Cm5JEO5--2zg.ttf", - "800": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4e9Om5JEO5--2zg.ttf", - "regular": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGGAZweH5EbgHY6YExcZfDoj0BA2_-C7LoS7g.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGGAZweH5EbgHY6YExcZfDoj0Bw2vWG.ttf" - }, - { - "family": "Shippori Mincho B1", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "japanese", "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-27", - "files": { - "500": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRj0AyAAKgQIARgB.ttf", - "600": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRjYBCAAKgQIARgB.ttf", - "700": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRi8BSAAKgQIARgB.ttf", - "800": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRigBiAAKgQIARgB.ttf", - "regular": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChQKElNoaXBwb3JpIE1pbmNobyBCMSAAKgQIARgB.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChQKElNoaXBwb3JpIE1pbmNobyBCMRABIAA=.ttf" - }, - { - "family": "Shojumaru", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtl8BRha.ttf" - }, - { - "family": "Short Stack", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Share Tech Mono" + } + ] + }, + { + "name": "Shippori Antique", + "fontFamily": "Shippori Antique, sans-serif", + "slug": "shippori-antique", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shipporiantique/v8/-F6qfid3KC8pdMyzR0qRyFUht11v8ldPg-IUDNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shippori Antique" + } + ] + }, + { + "name": "Shippori Antique B1", + "fontFamily": "Shippori Antique B1, sans-serif", + "slug": "shippori-antique-b1", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shipporiantiqueb1/v8/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRFCj9-5Y8Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shippori Antique B1" + } + ] + }, + { + "name": "Shippori Mincho", + "fontFamily": "Shippori Mincho, serif", + "slug": "shippori-mincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGGAZweH5EbgHY6YExcZfDoj0BA2_-C7LoS7g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4L9am5JEO5--2zg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4A9Gm5JEO5--2zg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4Z9Cm5JEO5--2zg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4e9Om5JEO5--2zg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + } + ] + }, + { + "name": "Shippori Mincho B1", + "fontFamily": "Shippori Mincho B1, serif", + "slug": "shippori-mincho-b1", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChQKElNoaXBwb3JpIE1pbmNobyBCMSAAKgQIARgB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + }, + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRj0AyAAKgQIARgB.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + }, + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRjYBCAAKgQIARgB.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + }, + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRi8BSAAKgQIARgB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + }, + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRigBiAAKgQIARgB.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + } + ] + }, + { + "name": "Shojumaru", + "fontFamily": "Shojumaru, system-ui", + "slug": "shojumaru", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shojumaru" + } + ] + }, + { + "name": "Short Stack", + "fontFamily": "Short Stack, cursive", + "slug": "short-stack", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX9STe3s.ttf" - }, - { - "family": "Shrikhand", - "variants": [ "regular" ], - "subsets": [ "gujarati", "latin", "latin-ext" ], - "version": "v12", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/shrikhand/v12/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/shrikhand/v12/a8IbNovtLWfR7T7bMJwrBYKU.ttf" - }, - { - "family": "Siemreap", - "variants": [ "regular" ], - "subsets": [ "khmer" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/siemreap/v24/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/siemreap/v24/Gg82N5oFbgLvHAfNl1Yalgs.ttf" - }, - { - "family": "Sigmar", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/sigmar/v3/hv-XlzJgIE8a85pUbWY3MTFgVg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sigmar/v3/hv-XlzJgIE8a85pkbGwz.ttf" - }, - { - "family": "Sigmar One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sigmarone/v16/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sigmarone/v16/co3DmWZ8kjZuErj9Ta3do6Lpow.ttf" - }, - { - "family": "Signika", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tIJHJbGhs_cfKe1.ttf", - "500": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJlHJbGhs_cfKe1.ttf", - "600": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKJG5bGhs_cfKe1.ttf", - "700": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKwG5bGhs_cfKe1.ttf", - "regular": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJXHJbGhs_cfKe1.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJXHKbHjMs.ttf" - }, - { - "family": "Signika Negative", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAr5S73st9hiuEq8.ttf", - "500": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqVS73st9hiuEq8.ttf", - "600": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAp5TL3st9hiuEq8.ttf", - "700": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RApATL3st9hiuEq8.ttf", - "regular": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS73st9hiuEq8.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS43tvdw.ttf" - }, - { - "family": "Silkscreen", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v1", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/silkscreen/v1/m8JUjfVPf62XiF7kO-i9aAhATmuo2dudFvc.ttf", - "regular": "http://fonts.gstatic.com/s/silkscreen/v1/m8JXjfVPf62XiF7kO-i9ULRvamODxdI.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/silkscreen/v1/m8JXjfVPf62XiF7kO-i9YLVlbg.ttf" - }, - { - "family": "Simonetta", - "variants": [ "regular", "italic", "900", "900italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2023-05-02", - "files": { - "900": "http://fonts.gstatic.com/s/simonetta/v24/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf", - "regular": "http://fonts.gstatic.com/s/simonetta/v24/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf", - "italic": "http://fonts.gstatic.com/s/simonetta/v24/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf", - "900italic": "http://fonts.gstatic.com/s/simonetta/v24/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/simonetta/v24/x3dickHVYrCU5BU15c4xffoG.ttf" - }, - { - "family": "Single Day", - "variants": [ "regular" ], - "subsets": [ "korean" ], - "version": "v15", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/singleday/v15/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/singleday/v15/LYjHdGDjlEgoAcF95EI5vVsPVA.ttf" - }, - { - "family": "Sintony", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/sintony/v13/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf", - "regular": "http://fonts.gstatic.com/s/sintony/v13/XoHm2YDqR7-98cVUITQnu98ojjs.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sintony/v13/XoHm2YDqR7-98cVUETUtvw.ttf" - }, - { - "family": "Sirin Stencil", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/sirinstencil/v21/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sirinstencil/v21/mem4YaWwznmLx-lzGfN7MdRyRclMAg.ttf" - }, - { - "family": "Six Caps", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sixcaps/v16/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sixcaps/v16/6ae_4KGrU7VR7bNmaYcT_3E.ttf" - }, - { - "family": "Skranji", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/skranji/v13/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf", - "regular": "http://fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMUzqklg.ttf" - }, - { - "family": "Slabo 13px", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/slabo13px/v13/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/slabo13px/v13/11hEGp_azEvXZUdSBzzRQKah3w.ttf" - }, - { - "family": "Slabo 27px", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/slabo27px/v12/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/slabo27px/v12/mFT0WbgBwKPR_Z4hGN2qgxkD0A.ttf" - }, - { - "family": "Slackey", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/slackey/v24/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/slackey/v24/N0bV2SdQO-5yM0-dGlVQIQ.ttf" - }, - { - "family": "Smokum", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/smokum/v24/TK3iWkUbAhopmrdGHjUHte5fKg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/smokum/v24/TK3iWkUbAhopmrd2Hz8D.ttf" - }, - { - "family": "Smooch", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v5", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/smooch/v5/o-0LIps4xW8U1xUBjqp_6hVdYg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Short Stack" + } + ] + }, + { + "name": "Shrikhand", + "fontFamily": "Shrikhand, system-ui", + "slug": "shrikhand", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shrikhand/v12/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shrikhand" + } + ] + }, + { + "name": "Siemreap", + "fontFamily": "Siemreap, system-ui", + "slug": "siemreap", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/siemreap/v24/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Siemreap" + } + ] + }, + { + "name": "Sigmar", + "fontFamily": "Sigmar, system-ui", + "slug": "sigmar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sigmar/v3/hv-XlzJgIE8a85pUbWY3MTFgVg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sigmar" + } + ] + }, + { + "name": "Sigmar One", + "fontFamily": "Sigmar One, system-ui", + "slug": "sigmar-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sigmarone/v16/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sigmar One" + } + ] + }, + { + "name": "Signika", + "fontFamily": "Signika, sans-serif", + "slug": "signika", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tIJHJbGhs_cfKe1.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Signika" + }, + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJXHJbGhs_cfKe1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Signika" + }, + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJlHJbGhs_cfKe1.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Signika" + }, + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKJG5bGhs_cfKe1.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Signika" + }, + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKwG5bGhs_cfKe1.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Signika" + } + ] + }, + { + "name": "Signika Negative", + "fontFamily": "Signika Negative, sans-serif", + "slug": "signika-negative", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAr5S73st9hiuEq8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + }, + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS73st9hiuEq8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + }, + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqVS73st9hiuEq8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + }, + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAp5TL3st9hiuEq8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + }, + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RApATL3st9hiuEq8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + } + ] + }, + { + "name": "Silkscreen", + "fontFamily": "Silkscreen, system-ui", + "slug": "silkscreen", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/silkscreen/v1/m8JXjfVPf62XiF7kO-i9ULRvamODxdI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Silkscreen" + }, + { + "src": "http://fonts.gstatic.com/s/silkscreen/v1/m8JUjfVPf62XiF7kO-i9aAhATmuo2dudFvc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Silkscreen" + } + ] + }, + { + "name": "Simonetta", + "fontFamily": "Simonetta, system-ui", + "slug": "simonetta", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Simonetta" + }, + { + "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Simonetta" + }, + { + "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Simonetta" + }, + { + "src": "http://fonts.gstatic.com/s/simonetta/v24/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Simonetta" + } + ] + }, + { + "name": "Single Day", + "fontFamily": "Single Day, system-ui", + "slug": "single-day", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/singleday/v15/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Single Day" + } + ] + }, + { + "name": "Sintony", + "fontFamily": "Sintony, sans-serif", + "slug": "sintony", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sintony/v13/XoHm2YDqR7-98cVUITQnu98ojjs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sintony" + }, + { + "src": "http://fonts.gstatic.com/s/sintony/v13/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sintony" + } + ] + }, + { + "name": "Sirin Stencil", + "fontFamily": "Sirin Stencil, system-ui", + "slug": "sirin-stencil", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sirinstencil/v21/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sirin Stencil" + } + ] + }, + { + "name": "Six Caps", + "fontFamily": "Six Caps, sans-serif", + "slug": "six-caps", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sixcaps/v16/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Six Caps" + } + ] + }, + { + "name": "Skranji", + "fontFamily": "Skranji, system-ui", + "slug": "skranji", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Skranji" + }, + { + "src": "http://fonts.gstatic.com/s/skranji/v13/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Skranji" + } + ] + }, + { + "name": "Slabo 13px", + "fontFamily": "Slabo 13px, serif", + "slug": "slabo-13px", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/slabo13px/v13/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Slabo 13px" + } + ] + }, + { + "name": "Slabo 27px", + "fontFamily": "Slabo 27px, serif", + "slug": "slabo-27px", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/slabo27px/v12/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Slabo 27px" + } + ] + }, + { + "name": "Slackey", + "fontFamily": "Slackey, system-ui", + "slug": "slackey", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/slackey/v24/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Slackey" + } + ] + }, + { + "name": "Smokum", + "fontFamily": "Smokum, system-ui", + "slug": "smokum", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/smokum/v24/TK3iWkUbAhopmrdGHjUHte5fKg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Smokum" + } + ] + }, + { + "name": "Smooch", + "fontFamily": "Smooch, cursive", + "slug": "smooch", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/smooch/v5/o-0LIps4xW8U1xUxj6B7.ttf" - }, - { - "family": "Smooch Sans", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v10", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUFodqIeNlzayg.ttf", - "200": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUBodqIeNlzayg.ttf", - "300": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oin0BodqIeNlzayg.ttf", - "500": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oi80BodqIeNlzayg.ttf", - "600": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiH0dodqIeNlzayg.ttf", - "700": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiJkdodqIeNlzayg.ttf", - "800": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUdodqIeNlzayg.ttf", - "900": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiaEdodqIeNlzayg.ttf", - "regular": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUBodqIeNlzayg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUBYd6ga.ttf" - }, - { - "family": "Smythe", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v23", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1BOLh_uGInjA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1xObJ7.ttf" - }, - { - "family": "Sniglet", - "variants": [ "regular", "800" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "800": "http://fonts.gstatic.com/s/sniglet/v17/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf", - "regular": "http://fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJ9CihZA.ttf" - }, - { - "family": "Snippet", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu6v7KeQ.ttf" - }, - { - "family": "Snowburst One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7SZ6eOw.ttf" - }, - { - "family": "Sofadi One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGQDKCFQ.ttf" - }, - { - "family": "Sofia", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_vu-sowsrqjk.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/smooch/v5/o-0LIps4xW8U1xUBjqp_6hVdYg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Smooch" + } + ] + }, + { + "name": "Smooch Sans", + "fontFamily": "Smooch Sans, sans-serif", + "slug": "smooch-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUFodqIeNlzayg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUBodqIeNlzayg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oin0BodqIeNlzayg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUBodqIeNlzayg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oi80BodqIeNlzayg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiH0dodqIeNlzayg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiJkdodqIeNlzayg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUdodqIeNlzayg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiaEdodqIeNlzayg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + } + ] + }, + { + "name": "Smythe", + "fontFamily": "Smythe, system-ui", + "slug": "smythe", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1BOLh_uGInjA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Smythe" + } + ] + }, + { + "name": "Sniglet", + "fontFamily": "Sniglet, system-ui", + "slug": "sniglet", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sniglet" + }, + { + "src": "http://fonts.gstatic.com/s/sniglet/v17/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sniglet" + } + ] + }, + { + "name": "Snippet", + "fontFamily": "Snippet, sans-serif", + "slug": "snippet", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Snippet" + } + ] + }, + { + "name": "Snowburst One", + "fontFamily": "Snowburst One, system-ui", + "slug": "snowburst-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Snowburst One" + } + ] + }, + { + "name": "Sofadi One", + "fontFamily": "Sofadi One, system-ui", + "slug": "sofadi-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofadi One" + } + ] + }, + { + "name": "Sofia", + "fontFamily": "Sofia, cursive", + "slug": "sofia", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_su_uIg.ttf" - }, - { - "family": "Sofia Sans", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext" - ], - "version": "v16", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sa3trvKCXl8k.ttf", - "200": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6sK3trvKCXl8k.ttf", - "300": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69AksK3trvKCXl8k.ttf", - "500": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69BIsK3trvKCXl8k.ttf", - "600": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Ckt63trvKCXl8k.ttf", - "700": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Cdt63trvKCXl8k.ttf", - "800": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6t63trvKCXl8k.ttf", - "900": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69DTt63trvKCXl8k.ttf", - "regular": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sK3trvKCXl8k.ttf", - "100italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WvpPagW08kdLY.ttf", - "200italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WupPagW08kdLY.ttf", - "300italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8xuupPagW08kdLY.ttf", - "italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WupPagW08kdLY.ttf", - "500italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy83eupPagW08kdLY.ttf", - "600italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy85uppPagW08kdLY.ttf", - "700italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy86KppPagW08kdLY.ttf", - "800italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WppPagW08kdLY.ttf", - "900italic": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8-yppPagW08kdLY.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sJ3spPY.ttf" - }, - { - "family": "Sofia Sans Condensed", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext" - ], - "version": "v2", - "lastModified": "2023-02-02", - "files": { - "100": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Csl8QO3OfwQQ.ttf", - "200": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-Gsl8QO3OfwQQ.ttf", - "300": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUq2eGsl8QO3OfwQQ.ttf", - "500": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqteGsl8QO3OfwQQ.ttf", - "600": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqWeasl8QO3OfwQQ.ttf", - "700": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqYOasl8QO3OfwQQ.ttf", - "800": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-asl8QO3OfwQQ.ttf", - "900": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqLuasl8QO3OfwQQ.ttf", - "regular": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Gsl8QO3OfwQQ.ttf", - "100italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1c4K_uLgQZ_3.ttf", - "200italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE1M4K_uLgQZ_3.ttf", - "300italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ia1M4K_uLgQZ_3.ttf", - "italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1M4K_uLgQZ_3.ttf", - "500italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6J21M4K_uLgQZ_3.ttf", - "600italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ka084K_uLgQZ_3.ttf", - "700italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Kj084K_uLgQZ_3.ttf", - "800italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE084K_uLgQZ_3.ttf", - "900italic": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Lt084K_uLgQZ_3.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Gcls4K.ttf" - }, - { - "family": "Sofia Sans Extra Condensed", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext" - ], - "version": "v2", - "lastModified": "2023-02-02", - "files": { - "100": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmmEfzmM356GxA.ttf", - "200": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGmiEfzmM356GxA.ttf", - "300": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLxGiEfzmM356GxA.ttf", - "500": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLqGiEfzmM356GxA.ttf", - "600": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLRG-EfzmM356GxA.ttf", - "700": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLfW-EfzmM356GxA.ttf", - "800": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGm-EfzmM356GxA.ttf", - "900": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLM2-EfzmM356GxA.ttf", - "regular": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmiEfzmM356GxA.ttf", - "100italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPTOI_ZuWxFXe.ttf", - "200italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsPDOI_ZuWxFXe.ttf", - "300italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUisyPDOI_ZuWxFXe.ttf", - "italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPDOI_ZuWxFXe.ttf", - "500italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitePDOI_ZuWxFXe.ttf", - "600italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuyOzOI_ZuWxFXe.ttf", - "700italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuLOzOI_ZuWxFXe.ttf", - "800italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsOzOI_ZuWxFXe.ttf", - "900italic": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivFOzOI_ZuWxFXe.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmi0fjOI.ttf" - }, - { - "family": "Sofia Sans Semi Condensed", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext" - ], - "version": "v4", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEO9TGahllIhN.ttf", - "200": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbEe9TGahllIhN.ttf", - "300": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvopFEe9TGahllIhN.ttf", - "500": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoopEe9TGahllIhN.ttf", - "600": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvorFFu9TGahllIhN.ttf", - "700": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvor8Fu9TGahllIhN.ttf", - "800": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbFu9TGahllIhN.ttf", - "900": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqyFu9TGahllIhN.ttf", - "regular": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEe9TGahllIhN.ttf", - "100italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcRE6xHkZhNeas.ttf", - "200italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocQE6xHkZhNeas.ttf", - "300italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUlkQE6xHkZhNeas.ttf", - "italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcQE6xHkZhNeas.ttf", - "500italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUjUQE6xHkZhNeas.ttf", - "600italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUtkXE6xHkZhNeas.ttf", - "700italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUuAXE6xHkZhNeas.ttf", - "800italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocXE6xHkZhNeas.ttf", - "900italic": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUq4XE6xHkZhNeas.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEd9SE6w.ttf" - }, - { - "family": "Solitreo", - "variants": [ "regular" ], - "subsets": [ "hebrew", "latin", "latin-ext" ], - "version": "v2", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/solitreo/v2/r05YGLlS5a9KYsyNO8upyDYtStiJ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_vu-sowsrqjk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia" + } + ] + }, + { + "name": "Sofia Sans", + "fontFamily": "Sofia Sans, sans-serif", + "slug": "sofia-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sa3trvKCXl8k.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6sK3trvKCXl8k.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69AksK3trvKCXl8k.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sK3trvKCXl8k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69BIsK3trvKCXl8k.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Ckt63trvKCXl8k.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Cdt63trvKCXl8k.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6t63trvKCXl8k.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69DTt63trvKCXl8k.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WvpPagW08kdLY.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WupPagW08kdLY.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8xuupPagW08kdLY.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WupPagW08kdLY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy83eupPagW08kdLY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy85uppPagW08kdLY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy86KppPagW08kdLY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WppPagW08kdLY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8-yppPagW08kdLY.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + } + ] + }, + { + "name": "Sofia Sans Condensed", + "fontFamily": "Sofia Sans Condensed, sans-serif", + "slug": "sofia-sans-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Csl8QO3OfwQQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-Gsl8QO3OfwQQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUq2eGsl8QO3OfwQQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Gsl8QO3OfwQQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqteGsl8QO3OfwQQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqWeasl8QO3OfwQQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqYOasl8QO3OfwQQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-asl8QO3OfwQQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqLuasl8QO3OfwQQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1c4K_uLgQZ_3.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE1M4K_uLgQZ_3.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ia1M4K_uLgQZ_3.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1M4K_uLgQZ_3.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6J21M4K_uLgQZ_3.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ka084K_uLgQZ_3.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Kj084K_uLgQZ_3.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE084K_uLgQZ_3.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Lt084K_uLgQZ_3.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + } + ] + }, + { + "name": "Sofia Sans Extra Condensed", + "fontFamily": "Sofia Sans Extra Condensed, sans-serif", + "slug": "sofia-sans-extra-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmmEfzmM356GxA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGmiEfzmM356GxA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLxGiEfzmM356GxA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmiEfzmM356GxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLqGiEfzmM356GxA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLRG-EfzmM356GxA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLfW-EfzmM356GxA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGm-EfzmM356GxA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLM2-EfzmM356GxA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPTOI_ZuWxFXe.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsPDOI_ZuWxFXe.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUisyPDOI_ZuWxFXe.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPDOI_ZuWxFXe.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitePDOI_ZuWxFXe.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuyOzOI_ZuWxFXe.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuLOzOI_ZuWxFXe.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsOzOI_ZuWxFXe.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivFOzOI_ZuWxFXe.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + } + ] + }, + { + "name": "Sofia Sans Semi Condensed", + "fontFamily": "Sofia Sans Semi Condensed, sans-serif", + "slug": "sofia-sans-semi-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEO9TGahllIhN.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbEe9TGahllIhN.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvopFEe9TGahllIhN.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEe9TGahllIhN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoopEe9TGahllIhN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvorFFu9TGahllIhN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvor8Fu9TGahllIhN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbFu9TGahllIhN.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqyFu9TGahllIhN.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcRE6xHkZhNeas.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocQE6xHkZhNeas.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUlkQE6xHkZhNeas.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcQE6xHkZhNeas.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUjUQE6xHkZhNeas.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUtkXE6xHkZhNeas.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUuAXE6xHkZhNeas.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocXE6xHkZhNeas.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUq4XE6xHkZhNeas.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + } + ] + }, + { + "name": "Solitreo", + "fontFamily": "Solitreo, cursive", + "slug": "solitreo", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/solitreo/v2/r05YGLlS5a9KYsyNO_uowjI.ttf" - }, - { - "family": "Solway", - "variants": [ "300", "regular", "500", "700", "800" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2023-02-16", - "files": { - "300": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuLlgZms0QW3mqyg.ttf", - "500": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCudlkZms0QW3mqyg.ttf", - "700": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuPl8Zms0QW3mqyg.ttf", - "800": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuIlwZms0QW3mqyg.ttf", - "regular": "http://fonts.gstatic.com/s/solway/v18/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/solway/v18/AMOQz46Cs2uTAOCmg3o5.ttf" - }, - { - "family": "Song Myung", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v20", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/songmyung/v20/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/songmyung/v20/1cX2aUDWAJH5-EIC7DIhn1CggQ.ttf" - }, - { - "family": "Sono", - "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v4", - "lastModified": "2023-03-21", - "files": { - "200": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkWdEnR4qYeB4Q.ttf", - "300": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxV6EWdEnR4qYeB4Q.ttf", - "500": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVhEWdEnR4qYeB4Q.ttf", - "600": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVaEKdEnR4qYeB4Q.ttf", - "700": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVUUKdEnR4qYeB4Q.ttf", - "800": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkKdEnR4qYeB4Q.ttf", - "regular": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVtkWdEnR4qYeB4Q.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVtkWtE358.ttf" - }, - { - "family": "Sonsie One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18UVq21g.ttf" - }, - { - "family": "Sora", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSn3-KIwNhBti0.ttf", - "200": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSnn-KIwNhBti0.ttf", - "300": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmScMnn-KIwNhBti0.ttf", - "500": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdgnn-KIwNhBti0.ttf", - "600": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSeMmX-KIwNhBti0.ttf", - "700": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSe1mX-KIwNhBti0.ttf", - "800": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSmX-KIwNhBti0.ttf", - "regular": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSnn-KIwNhBti0.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSnk-LKQc.ttf" - }, - { - "family": "Sorts Mill Goudy", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf", - "italic": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEbHwEig.ttf" - }, - { - "family": "Source Code Pro", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyQhM5hTXUcdJg.ttf", - "300": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhM5hTXUcdJg.ttf", - "500": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf", - "600": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM5hTXUcdJg.ttf", - "700": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXhM5hTXUcdJg.ttf", - "800": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyXhM5hTXUcdJg.ttf", - "900": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DGWXhM5hTXUcdJg.ttf", - "regular": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf", - "200italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7I1rSVcZZJiGpw.ttf", - "300italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTMo1rSVcZZJiGpw.ttf", - "italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1rSVcZZJiGpw.ttf", - "500italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTXo1rSVcZZJiGpw.ttf", - "600italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTsoprSVcZZJiGpw.ttf", - "700italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTi4prSVcZZJiGpw.ttf", - "800italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7IprSVcZZJiGpw.ttf", - "900italic": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTxYprSVcZZJiGpw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/solitreo/v2/r05YGLlS5a9KYsyNO8upyDYtStiJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Solitreo" + } + ] + }, + { + "name": "Solway", + "fontFamily": "Solway, serif", + "slug": "solway", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuLlgZms0QW3mqyg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Solway" + }, + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Solway" + }, + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCudlkZms0QW3mqyg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Solway" + }, + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuPl8Zms0QW3mqyg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Solway" + }, + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuIlwZms0QW3mqyg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Solway" + } + ] + }, + { + "name": "Song Myung", + "fontFamily": "Song Myung, serif", + "slug": "song-myung", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/songmyung/v20/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Song Myung" + } + ] + }, + { + "name": "Sono", + "fontFamily": "Sono, sans-serif", + "slug": "sono", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkWdEnR4qYeB4Q.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxV6EWdEnR4qYeB4Q.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVtkWdEnR4qYeB4Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVhEWdEnR4qYeB4Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVaEKdEnR4qYeB4Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVUUKdEnR4qYeB4Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkKdEnR4qYeB4Q.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sono" + } + ] + }, + { + "name": "Sonsie One", + "fontFamily": "Sonsie One, system-ui", + "slug": "sonsie-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sonsie One" + } + ] + }, + { + "name": "Sora", + "fontFamily": "Sora, sans-serif", + "slug": "sora", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSn3-KIwNhBti0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSnn-KIwNhBti0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmScMnn-KIwNhBti0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSnn-KIwNhBti0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdgnn-KIwNhBti0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSeMmX-KIwNhBti0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSe1mX-KIwNhBti0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSmX-KIwNhBti0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sora" + } + ] + }, + { + "name": "Sorts Mill Goudy", + "fontFamily": "Sorts Mill Goudy, serif", + "slug": "sorts-mill-goudy", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sorts Mill Goudy" + }, + { + "src": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sorts Mill Goudy" + } + ] + }, + { + "name": "Source Code Pro", + "fontFamily": "Source Code Pro, monospace", + "slug": "source-code-pro", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtM9rSQ.ttf" - }, - { - "family": "Source Sans 3", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v9", - "lastModified": "2023-05-02", - "files": { - "200": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", - "300": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", - "500": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", - "600": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", - "700": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", - "800": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", - "900": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf", - "regular": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", - "200italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlO9C4Ym4fB3Ts.ttf", - "300italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqOdO9C4Ym4fB3Ts.ttf", - "italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqLlO9C4Ym4fB3Ts.ttf", - "500italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqItO9C4Ym4fB3Ts.ttf", - "600italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9C4Ym4fB3Ts.ttf", - "700italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9C4Ym4fB3Ts.ttf", - "800italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlJ9C4Ym4fB3Ts.ttf", - "900italic": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9C4Ym4fB3Ts.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky462EM9C4.ttf" - }, - { - "family": "Source Sans Pro", - "variants": [ - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "600", - "600italic", - "700", - "700italic", - "900", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf", - "300": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf", - "600": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf", - "700": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf", - "900": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf", - "200italic": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf", - "300italic": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf", - "regular": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf", - "italic": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf", - "600italic": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf", - "700italic": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf", - "900italic": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPq7g.ttf" - }, - { - "family": "Source Serif 4", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdqrhxXD-wGvjU.ttf", - "300": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiklqrhxXD-wGvjU.ttf", - "500": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiiVqrhxXD-wGvjU.ttf", - "600": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjisltrhxXD-wGvjU.ttf", - "700": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjivBtrhxXD-wGvjU.ttf", - "800": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdtrhxXD-wGvjU.ttf", - "900": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjir5trhxXD-wGvjU.ttf", - "regular": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhxXD-wGvjU.ttf", - "200italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxl9dC84DrjXEXw.ttf", - "300italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pGF9dC84DrjXEXw.ttf", - "italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dC84DrjXEXw.ttf", - "500italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pdF9dC84DrjXEXw.ttf", - "600italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pmFhdC84DrjXEXw.ttf", - "700italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdC84DrjXEXw.ttf", - "800italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxlhdC84DrjXEXw.ttf", - "900italic": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98p71hdC84DrjXEXw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqnh1dCw.ttf" - }, - { - "family": "Source Serif Pro", - "variants": [ - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "600", - "600italic", - "700", - "700italic", - "900", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasbsfhSugxYUvZrI.ttf", - "300": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasd8chSugxYUvZrI.ttf", - "600": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf", - "700": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf", - "900": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasfcZhSugxYUvZrI.ttf", - "200italic": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGbSqqwacqdrKvbQ.ttf", - "300italic": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGCSmqwacqdrKvbQ.ttf", - "regular": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf", - "italic": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIWzD-0qpwxpaWvjeD0X88SAOeauXE-pQGOyYw2fw.ttf", - "600italic": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGfS-qwacqdrKvbQ.ttf", - "700italic": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGGS6qwacqdrKvbQ.ttf", - "900italic": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGISyqwacqdrKvbQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIQzD-0qpwxpaWvjeD0X88SAOeauXI-pQ.ttf" - }, - { - "family": "Space Grotesk", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v15", - "lastModified": "2023-01-06", - "files": { - "300": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsjNsFjTDJK.ttf", - "500": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsjNsFjTDJK.ttf", - "600": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksjNsFjTDJK.ttf", - "700": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksjNsFjTDJK.ttf", - "regular": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsjNsFjTDJK.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUXsiPMU.ttf" - }, - { - "family": "Space Mono", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v12", - "lastModified": "2023-01-06", - "files": { - "700": "http://fonts.gstatic.com/s/spacemono/v12/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf", - "regular": "http://fonts.gstatic.com/s/spacemono/v12/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf", - "italic": "http://fonts.gstatic.com/s/spacemono/v12/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf", - "700italic": "http://fonts.gstatic.com/s/spacemono/v12/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyQhM5hTXUcdJg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhM5hTXUcdJg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM5hTXUcdJg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXhM5hTXUcdJg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyXhM5hTXUcdJg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DGWXhM5hTXUcdJg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7I1rSVcZZJiGpw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTMo1rSVcZZJiGpw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1rSVcZZJiGpw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTXo1rSVcZZJiGpw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTsoprSVcZZJiGpw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTi4prSVcZZJiGpw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7IprSVcZZJiGpw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTxYprSVcZZJiGpw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + } + ] + }, + { + "name": "Source Sans 3", + "fontFamily": "Source Sans 3, sans-serif", + "slug": "source-sans-3", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlO9C4Ym4fB3Ts.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqOdO9C4Ym4fB3Ts.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqLlO9C4Ym4fB3Ts.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqItO9C4Ym4fB3Ts.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9C4Ym4fB3Ts.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9C4Ym4fB3Ts.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlJ9C4Ym4fB3Ts.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9C4Ym4fB3Ts.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + } + ] + }, + { + "name": "Source Sans Pro", + "fontFamily": "Source Sans Pro, sans-serif", + "slug": "source-sans-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + } + ] + }, + { + "name": "Source Serif 4", + "fontFamily": "Source Serif 4, serif", + "slug": "source-serif-4", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdqrhxXD-wGvjU.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiklqrhxXD-wGvjU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhxXD-wGvjU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiiVqrhxXD-wGvjU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjisltrhxXD-wGvjU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjivBtrhxXD-wGvjU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdtrhxXD-wGvjU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjir5trhxXD-wGvjU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxl9dC84DrjXEXw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pGF9dC84DrjXEXw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dC84DrjXEXw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pdF9dC84DrjXEXw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pmFhdC84DrjXEXw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdC84DrjXEXw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxlhdC84DrjXEXw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98p71hdC84DrjXEXw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + } + ] + }, + { + "name": "Source Serif Pro", + "fontFamily": "Source Serif Pro, serif", + "slug": "source-serif-pro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasbsfhSugxYUvZrI.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGbSqqwacqdrKvbQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasd8chSugxYUvZrI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGCSmqwacqdrKvbQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIWzD-0qpwxpaWvjeD0X88SAOeauXE-pQGOyYw2fw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGfS-qwacqdrKvbQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGGS6qwacqdrKvbQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasfcZhSugxYUvZrI.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGISyqwacqdrKvbQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + } + ] + }, + { + "name": "Space Grotesk", + "fontFamily": "Space Grotesk, sans-serif", + "slug": "space-grotesk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsjNsFjTDJK.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsjNsFjTDJK.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsjNsFjTDJK.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksjNsFjTDJK.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksjNsFjTDJK.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + } + ] + }, + { + "name": "Space Mono", + "fontFamily": "Space Mono, monospace", + "slug": "space-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/spacemono/v12/i7dPIFZifjKcF5UAWdDRYEd8QA.ttf" - }, - { - "family": "Special Elite", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0ntnYOTQ.ttf" - }, - { - "family": "Spectral", - "variants": [ - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic" - ], - "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], - "version": "v13", - "lastModified": "2023-01-06", - "files": { - "200": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf", - "300": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf", - "500": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf", - "600": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf", - "700": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf", - "800": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf", - "200italic": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf", - "300italic": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf", - "regular": "http://fonts.gstatic.com/s/spectral/v13/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf", - "italic": "http://fonts.gstatic.com/s/spectral/v13/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf", - "500italic": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf", - "600italic": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf", - "700italic": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf", - "800italic": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/spectral/v13/rnCr-xNNww_2s0amA9M_kn0.ttf" - }, - { - "family": "Spectral SC", - "variants": [ - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic" - ], - "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], - "version": "v12", - "lastModified": "2023-05-02", - "files": { - "200": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf", - "300": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf", - "500": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf", - "600": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf", - "700": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf", - "800": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf", - "200italic": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf", - "300italic": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf", - "regular": "http://fonts.gstatic.com/s/spectralsc/v12/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf", - "italic": "http://fonts.gstatic.com/s/spectralsc/v12/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf", - "500italic": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf", - "600italic": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf", - "700italic": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf", - "800italic": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/spectralsc/v12/KtkpALCRZonmalTgyPmRfsWj42Q.ttf" - }, - { - "family": "Spicy Rice", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/spicyrice/v21/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/spicyrice/v21/uK_24rSEd-Uqwk4jY1RyKv68Xg.ttf" - }, - { - "family": "Spinnaker", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/spinnaker/v17/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/spinnaker/v17/w8gYH2oyX-I0_rvR6HmX3XYP.ttf" - }, - { - "family": "Spirax", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3cXktt-Csn-Q.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3sX0Fp.ttf" - }, - { - "family": "Splash", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/splash/v2/KtksAL2RZoDkbU6hpPPGNdS6wg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Space Mono" + }, + { + "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Space Mono" + }, + { + "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Space Mono" + }, + { + "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Space Mono" + } + ] + }, + { + "name": "Special Elite", + "fontFamily": "Special Elite, system-ui", + "slug": "special-elite", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Special Elite" + } + ] + }, + { + "name": "Spectral", + "fontFamily": "Spectral, serif", + "slug": "spectral", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Spectral" + } + ] + }, + { + "name": "Spectral SC", + "fontFamily": "Spectral SC, serif", + "slug": "spectral-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + } + ] + }, + { + "name": "Spicy Rice", + "fontFamily": "Spicy Rice, system-ui", + "slug": "spicy-rice", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spicyrice/v21/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spicy Rice" + } + ] + }, + { + "name": "Spinnaker", + "fontFamily": "Spinnaker, sans-serif", + "slug": "spinnaker", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spinnaker/v17/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spinnaker" + } + ] + }, + { + "name": "Spirax", + "fontFamily": "Spirax, system-ui", + "slug": "spirax", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3cXktt-Csn-Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spirax" + } + ] + }, + { + "name": "Splash", + "fontFamily": "Splash, cursive", + "slug": "splash", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/splash/v2/KtksAL2RZoDkbU6RpfnC.ttf" - }, - { - "family": "Spline Sans", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v9", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpZlnYEtvlUfE2kw.ttf", - "500": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpClnYEtvlUfE2kw.ttf", - "600": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp5l7YEtvlUfE2kw.ttf", - "700": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp317YEtvlUfE2kw.ttf", - "regular": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnYEtvlUfE2kw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnoE9Hh.ttf" - }, - { - "family": "Spline Sans Mono", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "300italic", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v8", - "lastModified": "2023-03-21", - "files": { - "300": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGA8MrtVy4d4dGb1.ttf", - "500": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBQMrtVy4d4dGb1.ttf", - "600": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGC8NbtVy4d4dGb1.ttf", - "700": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGCFNbtVy4d4dGb1.ttf", - "regular": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBiMrtVy4d4dGb1.ttf", - "300italic": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcQ0WwYNacXb12MM.ttf", - "italic": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcVMWwYNacXb12MM.ttf", - "500italic": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcWEWwYNacXb12MM.ttf", - "600italic": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcY0RwYNacXb12MM.ttf", - "700italic": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcbQRwYNacXb12MM.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/splash/v2/KtksAL2RZoDkbU6hpPPGNdS6wg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Splash" + } + ] + }, + { + "name": "Spline Sans", + "fontFamily": "Spline Sans, sans-serif", + "slug": "spline-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpZlnYEtvlUfE2kw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + }, + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnYEtvlUfE2kw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + }, + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpClnYEtvlUfE2kw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + }, + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp5l7YEtvlUfE2kw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + }, + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp317YEtvlUfE2kw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + } + ] + }, + { + "name": "Spline Sans Mono", + "fontFamily": "Spline Sans Mono, monospace", + "slug": "spline-sans-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBiMotUwYM.ttf" - }, - { - "family": "Squada One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/squadaone/v14/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/squadaone/v14/BCasqZ8XsOrx4mcOk6MtaaE2XA.ttf" - }, - { - "family": "Square Peg", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/squarepeg/v2/y83eW48Nzw6ZlUHc-phrBDHrHHfrFPE.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGA8MrtVy4d4dGb1.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBiMrtVy4d4dGb1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBQMrtVy4d4dGb1.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGC8NbtVy4d4dGb1.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGCFNbtVy4d4dGb1.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcQ0WwYNacXb12MM.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcVMWwYNacXb12MM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcWEWwYNacXb12MM.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcY0RwYNacXb12MM.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcbQRwYNacXb12MM.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + } + ] + }, + { + "name": "Squada One", + "fontFamily": "Squada One, system-ui", + "slug": "squada-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/squadaone/v14/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Squada One" + } + ] + }, + { + "name": "Square Peg", + "fontFamily": "Square Peg, cursive", + "slug": "square-peg", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/squarepeg/v2/y83eW48Nzw6ZlUHc-phrNDDhGA.ttf" - }, - { - "family": "Sree Krushnadevaraya", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sreekrushnadevaraya/v21/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sreekrushnadevaraya/v21/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_HWa0lw.ttf" - }, - { - "family": "Sriracha", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v11", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/sriracha/v11/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/squarepeg/v2/y83eW48Nzw6ZlUHc-phrBDHrHHfrFPE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Square Peg" + } + ] + }, + { + "name": "Sree Krushnadevaraya", + "fontFamily": "Sree Krushnadevaraya, serif", + "slug": "sree-krushnadevaraya", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sreekrushnadevaraya/v21/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sree Krushnadevaraya" + } + ] + }, + { + "name": "Sriracha", + "fontFamily": "Sriracha, cursive", + "slug": "sriracha", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sriracha/v11/0nkrC9D4IuYBgWcI9NbZTwQ.ttf" - }, - { - "family": "Srisakdi", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/srisakdi/v16/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf", - "regular": "http://fonts.gstatic.com/s/srisakdi/v16/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/srisakdi/v16/yMJRMIlvdpDbkB0A-gq9dyg.ttf" - }, - { - "family": "Staatliches", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/staatliches/v11/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/staatliches/v11/HI_OiY8KO6hCsQSoAPmtMYedvpU.ttf" - }, - { - "family": "Stalemate", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/stalemate/v20/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sriracha/v11/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sriracha" + } + ] + }, + { + "name": "Srisakdi", + "fontFamily": "Srisakdi, system-ui", + "slug": "srisakdi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/srisakdi/v16/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Srisakdi" + }, + { + "src": "http://fonts.gstatic.com/s/srisakdi/v16/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Srisakdi" + } + ] + }, + { + "name": "Staatliches", + "fontFamily": "Staatliches, system-ui", + "slug": "staatliches", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/staatliches/v11/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Staatliches" + } + ] + }, + { + "name": "Stalemate", + "fontFamily": "Stalemate, cursive", + "slug": "stalemate", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/stalemate/v20/taiIGmZ_EJq97-UfkZRZu66o.ttf" - }, - { - "family": "Stalinist One", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin", "latin-ext" ], - "version": "v54", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/stalinistone/v54/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/stalinistone/v54/MQpS-WezM9W4Dd7D3B7I-UT7SZ6eOw.ttf" - }, - { - "family": "Stardos Stencil", - "variants": [ "regular", "700" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf", - "regular": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2Th7l5z.ttf" - }, - { - "family": "Stick", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/stick/v15/Qw3TZQpMCyTtJSvfvPVDMPoF.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/stick/v15/Qw3TZQpMCyTtJRvetvE.ttf" - }, - { - "family": "Stick No Bills", - "variants": [ "200", "300", "regular", "500", "600", "700", "800" ], - "subsets": [ "latin", "latin-ext", "sinhala" ], - "version": "v9", - "lastModified": "2023-05-02", - "files": { - "200": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8Q7KriwKhcTKA.ttf", - "300": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcV4cQ7KriwKhcTKA.ttf", - "500": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVjcQ7KriwKhcTKA.ttf", - "600": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVYcM7KriwKhcTKA.ttf", - "700": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVWMM7KriwKhcTKA.ttf", - "800": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8M7KriwKhcTKA.ttf", - "regular": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8Q7KriwKhcTKA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8QLK7K0.ttf" - }, - { - "family": "Stint Ultra Condensed", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/stintultracondensed/v21/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/stintultracondensed/v21/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2AOqx8K.ttf" - }, - { - "family": "Stint Ultra Expanded", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/stintultraexpanded/v20/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/stintultraexpanded/v20/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd3qpCzA.ttf" - }, - { - "family": "Stoke", - "variants": [ "300", "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/stoke/v22/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf", - "regular": "http://fonts.gstatic.com/s/stoke/v22/z7NadRb7aTMfKONpfihK1YTV.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/stoke/v22/z7NadRb7aTMfKNNodCw.ttf" - }, - { - "family": "Strait", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-03-21", - "files": { - "regular": "http://fonts.gstatic.com/s/strait/v15/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/strait/v15/DtViJxy6WaEr1LZDeTJp.ttf" - }, - { - "family": "Style Script", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v8", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/stylescript/v8/vm8xdRX3SV7Z0aPa88xzW5npeFT76NZnMw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stalemate/v20/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stalemate" + } + ] + }, + { + "name": "Stalinist One", + "fontFamily": "Stalinist One, system-ui", + "slug": "stalinist-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stalinistone/v54/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stalinist One" + } + ] + }, + { + "name": "Stardos Stencil", + "fontFamily": "Stardos Stencil, system-ui", + "slug": "stardos-stencil", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stardos Stencil" + }, + { + "src": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Stardos Stencil" + } + ] + }, + { + "name": "Stick", + "fontFamily": "Stick, sans-serif", + "slug": "stick", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stick/v15/Qw3TZQpMCyTtJSvfvPVDMPoF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stick" + } + ] + }, + { + "name": "Stick No Bills", + "fontFamily": "Stick No Bills, sans-serif", + "slug": "stick-no-bills", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8Q7KriwKhcTKA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcV4cQ7KriwKhcTKA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8Q7KriwKhcTKA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVjcQ7KriwKhcTKA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVYcM7KriwKhcTKA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVWMM7KriwKhcTKA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8M7KriwKhcTKA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + } + ] + }, + { + "name": "Stint Ultra Condensed", + "fontFamily": "Stint Ultra Condensed, system-ui", + "slug": "stint-ultra-condensed", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stintultracondensed/v21/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stint Ultra Condensed" + } + ] + }, + { + "name": "Stint Ultra Expanded", + "fontFamily": "Stint Ultra Expanded, system-ui", + "slug": "stint-ultra-expanded", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stintultraexpanded/v20/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stint Ultra Expanded" + } + ] + }, + { + "name": "Stoke", + "fontFamily": "Stoke, serif", + "slug": "stoke", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stoke/v22/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Stoke" + }, + { + "src": "http://fonts.gstatic.com/s/stoke/v22/z7NadRb7aTMfKONpfihK1YTV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stoke" + } + ] + }, + { + "name": "Strait", + "fontFamily": "Strait, sans-serif", + "slug": "strait", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/strait/v15/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Strait" + } + ] + }, + { + "name": "Style Script", + "fontFamily": "Style Script, cursive", + "slug": "style-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/stylescript/v8/vm8xdRX3SV7Z0aPa88xzW5nZeV7_.ttf" - }, - { - "family": "Stylish", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/stylish/v20/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/stylish/v20/m8JSjfhPYriQkk7-TozzcA.ttf" - }, - { - "family": "Sue Ellen Francisco", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sueellenfrancisco/v16/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stylescript/v8/vm8xdRX3SV7Z0aPa88xzW5npeFT76NZnMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Style Script" + } + ] + }, + { + "name": "Stylish", + "fontFamily": "Stylish, sans-serif", + "slug": "stylish", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stylish/v20/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stylish" + } + ] + }, + { + "name": "Sue Ellen Francisco", + "fontFamily": "Sue Ellen Francisco, cursive", + "slug": "sue-ellen-francisco", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sueellenfrancisco/v16/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9notP3g.ttf" - }, - { - "family": "Suez One", - "variants": [ "regular" ], - "subsets": [ "hebrew", "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/suezone/v11/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/suezone/v11/taiJGmd_EZ6rqscQgOFImo4.ttf" - }, - { - "family": "Sulphur Point", - "variants": [ "300", "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afVU6n6kFUHPIFaU.ttf", - "700": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afUU9n6kFUHPIFaU.ttf", - "regular": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLp5K5vv8KaycDcazWFPBj2adfgYvw.ttf" - }, - { - "family": "Sumana", - "variants": [ "regular", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v10", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/sumana/v10/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf", - "regular": "http://fonts.gstatic.com/s/sumana/v10/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sumana/v10/4UaDrE5TqRBjGj-28RLm.ttf" - }, - { - "family": "Sunflower", - "variants": [ "300", "500", "700" ], - "subsets": [ "korean", "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf", - "500": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf", - "700": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-06MfSqIEC.ttf" - }, - { - "family": "Sunshiney", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sueellenfrancisco/v16/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sue Ellen Francisco" + } + ] + }, + { + "name": "Suez One", + "fontFamily": "Suez One, serif", + "slug": "suez-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/suezone/v11/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Suez One" + } + ] + }, + { + "name": "Sulphur Point", + "fontFamily": "Sulphur Point, sans-serif", + "slug": "sulphur-point", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afVU6n6kFUHPIFaU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sulphur Point" + }, + { + "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sulphur Point" + }, + { + "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afUU9n6kFUHPIFaU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sulphur Point" + } + ] + }, + { + "name": "Sumana", + "fontFamily": "Sumana, serif", + "slug": "sumana", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sumana/v10/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sumana" + }, + { + "src": "http://fonts.gstatic.com/s/sumana/v10/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sumana" + } + ] + }, + { + "name": "Sunflower", + "fontFamily": "Sunflower, sans-serif", + "slug": "sunflower", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sunflower" + }, + { + "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sunflower" + }, + { + "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sunflower" + } + ] + }, + { + "name": "Sunshiney", + "fontFamily": "Sunshiney, cursive", + "slug": "sunshiney", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcQEsOs.ttf" - }, - { - "family": "Supermercado One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/supermercadoone/v22/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/supermercadoone/v22/OpNXnpQWg8jc_xps_Gi14kVVEXOn20f9NA.ttf" - }, - { - "family": "Sura", - "variants": [ "regular", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2023-05-02", - "files": { - "700": "http://fonts.gstatic.com/s/sura/v16/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf", - "regular": "http://fonts.gstatic.com/s/sura/v16/SZc23FL5PbyzFf5UWzXtjUM.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/sura/v16/SZc23FL5PbyzJf9eXw.ttf" - }, - { - "family": "Suranna", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v13", - "lastModified": "2022-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/suranna/v13/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/suranna/v13/gokuH6ztGkFjWe58hBVTSw.ttf" - }, - { - "family": "Suravaram", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/suravaram/v21/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/suravaram/v21/_gP61R_usiY7SCym4xIwimSx.ttf" - }, - { - "family": "Suwannaphum", - "variants": [ "100", "300", "regular", "700", "900" ], - "subsets": [ "khmer", "latin" ], - "version": "v29", - "lastModified": "2022-04-27", - "files": { - "100": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnAgHV7GtDvc8jbe8hXXL3B9cSWXx2VZmk.ttf", - "300": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0J1-S8cRGcf3Ai.ttf", - "700": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0Z0OS8cRGcf3Ai.ttf", - "900": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0h0uS8cRGcf3Ai.ttf", - "regular": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnCgHV7GtDvc8jbe8hXXLWk9cQ.ttf" - }, - { - "family": "Swanky and Moo Moo", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v22", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/swankyandmoomoo/v22/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sunshiney" + } + ] + }, + { + "name": "Supermercado One", + "fontFamily": "Supermercado One, system-ui", + "slug": "supermercado-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/supermercadoone/v22/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Supermercado One" + } + ] + }, + { + "name": "Sura", + "fontFamily": "Sura, serif", + "slug": "sura", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sura/v16/SZc23FL5PbyzFf5UWzXtjUM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sura" + }, + { + "src": "http://fonts.gstatic.com/s/sura/v16/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sura" + } + ] + }, + { + "name": "Suranna", + "fontFamily": "Suranna, serif", + "slug": "suranna", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/suranna/v13/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Suranna" + } + ] + }, + { + "name": "Suravaram", + "fontFamily": "Suravaram, serif", + "slug": "suravaram", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/suravaram/v21/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Suravaram" + } + ] + }, + { + "name": "Suwannaphum", + "fontFamily": "Suwannaphum, serif", + "slug": "suwannaphum", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnAgHV7GtDvc8jbe8hXXL3B9cSWXx2VZmk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + }, + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0J1-S8cRGcf3Ai.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + }, + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + }, + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0Z0OS8cRGcf3Ai.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + }, + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0h0uS8cRGcf3Ai.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + } + ] + }, + { + "name": "Swanky and Moo Moo", + "fontFamily": "Swanky and Moo Moo, cursive", + "slug": "swanky-and-moo-moo", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/swankyandmoomoo/v22/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kktLng.ttf" - }, - { - "family": "Syncopate", - "variants": [ "regular", "700" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/syncopate/v19/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf", - "regular": "http://fonts.gstatic.com/s/syncopate/v19/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/syncopate/v19/pe0sMIuPIYBCpEV5eFdCA_e6.ttf" - }, - { - "family": "Syne", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "greek", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6kR47NCV5Z.ttf", - "600": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf", - "700": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf", - "800": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6kR47NCV5Z.ttf", - "regular": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6kR47NCV5Z.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_04uQ6lTYo.ttf" - }, - { - "family": "Syne Mono", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/synemono/v15/K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/swankyandmoomoo/v22/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Swanky and Moo Moo" + } + ] + }, + { + "name": "Syncopate", + "fontFamily": "Syncopate, sans-serif", + "slug": "syncopate", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/syncopate/v19/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Syncopate" + }, + { + "src": "http://fonts.gstatic.com/s/syncopate/v19/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Syncopate" + } + ] + }, + { + "name": "Syne", + "fontFamily": "Syne, sans-serif", + "slug": "syne", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6kR47NCV5Z.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Syne" + }, + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6kR47NCV5Z.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Syne" + }, + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Syne" + }, + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Syne" + }, + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6kR47NCV5Z.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Syne" + } + ] + }, + { + "name": "Syne Mono", + "fontFamily": "Syne Mono, monospace", + "slug": "syne-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/synemono/v15/K2FzfZNHj_FHBmRbFvHDI6qg.ttf" - }, - { - "family": "Syne Tactile", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/synetactile/v15/11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/synetactile/v15/11hGGpna2UTQKjMCVzjAPMKR3iEZ.ttf" - }, - { - "family": "Tai Heritage Pro", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext", "tai-viet", "vietnamese" ], - "version": "v5", - "lastModified": "2023-04-27", - "files": { - "700": "http://fonts.gstatic.com/s/taiheritagepro/v5/sZlYdQid-zgaNiNIYcUzJMU3IYyNmMB9NNRFMuhjCXY.ttf", - "regular": "http://fonts.gstatic.com/s/taiheritagepro/v5/sZlfdQid-zgaNiNIYcUzJMU3IYyNoHxSENxuLuE.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/taiheritagepro/v5/sZlfdQid-zgaNiNIYcUzJMU3IYyNkH1YFA.ttf" - }, - { - "family": "Tajawal", - "variants": [ "200", "300", "regular", "500", "700", "800", "900" ], - "subsets": [ "arabic", "latin" ], - "version": "v9", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf", - "300": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf", - "500": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf", - "700": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf", - "800": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf", - "900": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf", - "regular": "http://fonts.gstatic.com/s/tajawal/v9/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tajawal/v9/Iura6YBj_oCad4k1nzeBDg.ttf" - }, - { - "family": "Tangerine", - "variants": [ "regular", "700" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/tangerine/v17/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf", - "regular": "http://fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/synemono/v15/K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Syne Mono" + } + ] + }, + { + "name": "Syne Tactile", + "fontFamily": "Syne Tactile, system-ui", + "slug": "syne-tactile", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/synetactile/v15/11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Syne Tactile" + } + ] + }, + { + "name": "Tai Heritage Pro", + "fontFamily": "Tai Heritage Pro, serif", + "slug": "tai-heritage-pro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/taiheritagepro/v5/sZlfdQid-zgaNiNIYcUzJMU3IYyNoHxSENxuLuE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tai Heritage Pro" + }, + { + "src": "http://fonts.gstatic.com/s/taiheritagepro/v5/sZlYdQid-zgaNiNIYcUzJMU3IYyNmMB9NNRFMuhjCXY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tai Heritage Pro" + } + ] + }, + { + "name": "Tajawal", + "fontFamily": "Tajawal, sans-serif", + "slug": "tajawal", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Tajawal" + } + ] + }, + { + "name": "Tangerine", + "fontFamily": "Tangerine, cursive", + "slug": "tangerine", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOxD5ZJ.ttf" - }, - { - "family": "Tapestry", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/tapestry/v2/SlGTmQecrosEYXhaGBIkqnB6aSQU.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tangerine" + }, + { + "src": "http://fonts.gstatic.com/s/tangerine/v17/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tangerine" + } + ] + }, + { + "name": "Tapestry", + "fontFamily": "Tapestry, cursive", + "slug": "tapestry", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tapestry/v2/SlGTmQecrosEYXhaGCIloHQ.ttf" - }, - { - "family": "Taprom", - "variants": [ "regular" ], - "subsets": [ "khmer", "latin" ], - "version": "v27", - "lastModified": "2022-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/taprom/v27/UcCn3F82JHycULbFQyk3-0kvHg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/taprom/v27/UcCn3F82JHycULb1QiMz.ttf" - }, - { - "family": "Tauri", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/tauri/v16/TwMA-IISS0AM3IpVWHU_TBqO.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tauri/v16/TwMA-IISS0AM3LpUUnE.ttf" - }, - { - "family": "Taviraj", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf", - "200": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf", - "300": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf", - "500": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf", - "600": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf", - "700": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf", - "800": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf", - "900": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf", - "100italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf", - "200italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf", - "300italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf", - "regular": "http://fonts.gstatic.com/s/taviraj/v11/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf", - "italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf", - "500italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf", - "600italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf", - "700italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf", - "800italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf", - "900italic": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/taviraj/v11/ahcZv8Cj3ylylTXzTO8rVw.ttf" - }, - { - "family": "Teko", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf", - "500": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf", - "600": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf", - "700": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf", - "regular": "http://fonts.gstatic.com/s/teko/v16/LYjNdG7kmE0gTaR3pCtBtVs.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/teko/v16/LYjNdG7kmE0gfaV9oA.ttf" - }, - { - "family": "Telex", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-12-08", - "files": { - "regular": "http://fonts.gstatic.com/s/telex/v17/ieVw2Y1fKWmIO9fTB1piKFIf.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/telex/v17/ieVw2Y1fKWmIO-fSDV4.ttf" - }, - { - "family": "Tenali Ramakrishna", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/tenaliramakrishna/v12/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tenaliramakrishna/v12/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-MKZ_u.ttf" - }, - { - "family": "Tenor Sans", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/tenorsans/v17/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tenorsans/v17/bx6ANxqUneKx06UkIXISn3N4Dw.ttf" - }, - { - "family": "Text Me One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/textmeone/v21/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/textmeone/v21/i7dOIFdlayuLUvgoFvHQFVZdYFI.ttf" - }, - { - "family": "Texturina", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYG_Ug25riW1OD.ttf", - "200": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYGvUg25riW1OD.ttf", - "300": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2fGGvUg25riW1OD.ttf", - "500": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eqGvUg25riW1OD.ttf", - "600": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2dGHfUg25riW1OD.ttf", - "700": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2d_HfUg25riW1OD.ttf", - "800": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYHfUg25riW1OD.ttf", - "900": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cxHfUg25riW1OD.ttf", - "regular": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGvUg25riW1OD.ttf", - "100italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1i0Z7AXkODN94.ttf", - "200italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1j0Z7AXkODN94.ttf", - "300italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWUNj0Z7AXkODN94.ttf", - "italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1j0Z7AXkODN94.ttf", - "500italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWS9j0Z7AXkODN94.ttf", - "600italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWcNk0Z7AXkODN94.ttf", - "700italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWfpk0Z7AXkODN94.ttf", - "800italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1k0Z7AXkODN94.ttf", - "900italic": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWbRk0Z7AXkODN94.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGsUh0Z4.ttf" - }, - { - "family": "Thasadith", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v9", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/thasadith/v9/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf", - "regular": "http://fonts.gstatic.com/s/thasadith/v9/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf", - "italic": "http://fonts.gstatic.com/s/thasadith/v9/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf", - "700italic": "http://fonts.gstatic.com/s/thasadith/v9/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/thasadith/v9/mtG44_1TIqPYrd_f5R1osUMQ.ttf" - }, - { - "family": "The Girl Next Door", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/thegirlnextdoor/v18/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tapestry/v2/SlGTmQecrosEYXhaGBIkqnB6aSQU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tapestry" + } + ] + }, + { + "name": "Taprom", + "fontFamily": "Taprom, system-ui", + "slug": "taprom", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/taprom/v27/UcCn3F82JHycULbFQyk3-0kvHg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Taprom" + } + ] + }, + { + "name": "Tauri", + "fontFamily": "Tauri, sans-serif", + "slug": "tauri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tauri/v16/TwMA-IISS0AM3IpVWHU_TBqO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tauri" + } + ] + }, + { + "name": "Taviraj", + "fontFamily": "Taviraj, serif", + "slug": "taviraj", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Taviraj" + } + ] + }, + { + "name": "Teko", + "fontFamily": "Teko, sans-serif", + "slug": "teko", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Teko" + }, + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjNdG7kmE0gTaR3pCtBtVs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Teko" + }, + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Teko" + }, + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Teko" + }, + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Teko" + } + ] + }, + { + "name": "Telex", + "fontFamily": "Telex, sans-serif", + "slug": "telex", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/telex/v17/ieVw2Y1fKWmIO9fTB1piKFIf.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Telex" + } + ] + }, + { + "name": "Tenali Ramakrishna", + "fontFamily": "Tenali Ramakrishna, sans-serif", + "slug": "tenali-ramakrishna", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tenaliramakrishna/v12/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tenali Ramakrishna" + } + ] + }, + { + "name": "Tenor Sans", + "fontFamily": "Tenor Sans, sans-serif", + "slug": "tenor-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tenorsans/v17/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tenor Sans" + } + ] + }, + { + "name": "Text Me One", + "fontFamily": "Text Me One, sans-serif", + "slug": "text-me-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/textmeone/v21/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Text Me One" + } + ] + }, + { + "name": "Texturina", + "fontFamily": "Texturina, serif", + "slug": "texturina", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYG_Ug25riW1OD.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYGvUg25riW1OD.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2fGGvUg25riW1OD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGvUg25riW1OD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eqGvUg25riW1OD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2dGHfUg25riW1OD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2d_HfUg25riW1OD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYHfUg25riW1OD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cxHfUg25riW1OD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1i0Z7AXkODN94.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1j0Z7AXkODN94.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWUNj0Z7AXkODN94.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1j0Z7AXkODN94.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWS9j0Z7AXkODN94.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWcNk0Z7AXkODN94.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWfpk0Z7AXkODN94.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1k0Z7AXkODN94.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWbRk0Z7AXkODN94.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Texturina" + } + ] + }, + { + "name": "Thasadith", + "fontFamily": "Thasadith, sans-serif", + "slug": "thasadith", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Thasadith" + }, + { + "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Thasadith" + }, + { + "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Thasadith" + }, + { + "src": "http://fonts.gstatic.com/s/thasadith/v9/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Thasadith" + } + ] + }, + { + "name": "The Girl Next Door", + "fontFamily": "The Girl Next Door, cursive", + "slug": "the-girl-next-door", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/thegirlnextdoor/v18/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCY4VrF_.ttf" - }, - { - "family": "The Nautigal", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/thenautigal/v3/VdGGAZ8ZH51Lvng9fQV2bfKTWypA2_-C7LoS7g.ttf", - "regular": "http://fonts.gstatic.com/s/thenautigal/v3/VdGZAZ8ZH51Lvng9fQV2bfKr5wVk09Se5Q.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/thegirlnextdoor/v18/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "The Girl Next Door" + } + ] + }, + { + "name": "The Nautigal", + "fontFamily": "The Nautigal, cursive", + "slug": "the-nautigal", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/thenautigal/v3/VdGZAZ8ZH51Lvng9fQV2bfKb5g9g.ttf" - }, - { - "family": "Tienne", - "variants": [ "regular", "700", "900" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf", - "900": "http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf", - "regular": "http://fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP07kUnD.ttf" - }, - { - "family": "Tillana", - "variants": [ "regular", "500", "600", "700", "800" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf", - "600": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf", - "700": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf", - "800": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf", - "regular": "http://fonts.gstatic.com/s/tillana/v11/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/thenautigal/v3/VdGZAZ8ZH51Lvng9fQV2bfKr5wVk09Se5Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "The Nautigal" + }, + { + "src": "http://fonts.gstatic.com/s/thenautigal/v3/VdGGAZ8ZH51Lvng9fQV2bfKTWypA2_-C7LoS7g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "The Nautigal" + } + ] + }, + { + "name": "Tienne", + "fontFamily": "Tienne, serif", + "slug": "tienne", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tienne" + }, + { + "src": "http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tienne" + }, + { + "src": "http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Tienne" + } + ] + }, + { + "name": "Tillana", + "fontFamily": "Tillana, cursive", + "slug": "tillana", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tillana/v11/VuJxdNvf35P4qJ1OSKfdPA.ttf" - }, - { - "family": "Tilt Neon", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v6", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/tiltneon/v6/E21L_d7gguXdwD9LEFY2WCeElCNtd-eBqpHp1TzrkJSmwpj5ndxquXK9WualJ9DS.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tiltneon/v6/E21L_d7gguXdwD9LEFY2WCeElCNtd-eBqpHp1TzrkJSmwpj5ndxquUK8UOI.ttf" - }, - { - "family": "Tilt Prism", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v8", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/tiltprism/v8/5h11iZgyPHoZ3YikNzWGfWey2dCAZXT-bH9V4VGn-FJ7tLI25oc_rIbwoTSrn86NKw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tiltprism/v8/5h11iZgyPHoZ3YikNzWGfWey2dCAZXT-bH9V4VGn-FJ7tLI25oc_rIbAoD6v.ttf" - }, - { - "family": "Tilt Warp", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v9", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/tiltwarp/v9/AlZc_zVDs5XpmO7yn3w7flUoytXJp3z29uEwmEMLEJljLXvT8UJSZTBxAVfMGOPb.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tiltwarp/v9/AlZc_zVDs5XpmO7yn3w7flUoytXJp3z29uEwmEMLEJljLXvT8UJSZQBwC1M.ttf" - }, - { - "family": "Timmana", - "variants": [ "regular" ], - "subsets": [ "latin", "telugu" ], - "version": "v12", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/timmana/v12/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/timmana/v12/6xKvdShfL9yK-rvpOmrRLA.ttf" - }, - { - "family": "Tinos", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "hebrew", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/tinos/v24/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf", - "regular": "http://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwgX8dGVh8TI-.ttf", - "italic": "http://fonts.gstatic.com/s/tinos/v24/buE2poGnedXvwjX-fmFD9CI-4NU.ttf", - "700italic": "http://fonts.gstatic.com/s/tinos/v24/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwjX9fmE.ttf" - }, - { - "family": "Tiro Bangla", - "variants": [ "regular", "italic" ], - "subsets": [ "bengali", "latin", "latin-ext" ], - "version": "v6", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/tirobangla/v6/IFSgHe1Tm95E3O8b5i2V8MG9-UPeuz4i.ttf", - "italic": "http://fonts.gstatic.com/s/tirobangla/v6/IFSiHe1Tm95E3O8b5i2V8PG_80f8vi4imBM.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tirobangla/v6/IFSgHe1Tm95E3O8b5i2V8PG880c.ttf" - }, - { - "family": "Tiro Devanagari Hindi", - "variants": [ "regular", "italic" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v5", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9fSOkOfG0Y3A.ttf", - "italic": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55x8ezN7P8T4e0_CfIJrwdodg9HoYw0i-M9vSuMKXmgI3F_o.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9vSeMK.ttf" - }, - { - "family": "Tiro Devanagari Marathi", - "variants": [ "regular", "italic" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v5", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkotDrDJYM2lAZ.ttf", - "italic": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1zPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkouDpBpIu30AZbUY.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkouDqBpI.ttf" - }, - { - "family": "Tiro Devanagari Sanskrit", - "variants": [ "regular", "italic" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v5", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59pEoEqgtOh0w.ttf", - "italic": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoGzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59ZEIsuoNax06MM.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59ZE4su.ttf" - }, - { - "family": "Tiro Gurmukhi", - "variants": [ "regular", "italic" ], - "subsets": [ "gurmukhi", "latin", "latin-ext" ], - "version": "v6", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3dmckXSYq-Uqjc048JUF7Jvly7HAQsyA2Y.ttf", - "italic": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3d4ckXSYq-Uqjc048JUF7JvpyzNBSk3E2YljQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3dmckXSYq-Uqjc048JUF7Jvpy_NBQ.ttf" - }, - { - "family": "Tiro Kannada", - "variants": [ "regular", "italic" ], - "subsets": [ "kannada", "latin", "latin-ext" ], - "version": "v6", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/tirokannada/v6/CSR44ztKmvqaDxEDJFY7CIYKSPl6tOU9Eg.ttf", - "italic": "http://fonts.gstatic.com/s/tirokannada/v6/CSRm4ztKmvqaDxEDJFY7CIY6SvN-luAtEnKp.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tirokannada/v6/CSR44ztKmvqaDxEDJFY7CIY6SfN-.ttf" - }, - { - "family": "Tiro Tamil", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext", "tamil" ], - "version": "v6", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/tirotamil/v6/m8JXjfVIf7OT22n3M-S_ULRvamODxdI.ttf", - "italic": "http://fonts.gstatic.com/s/tirotamil/v6/m8JVjfVIf7OT22n3M-S_YLZlbkGG1dKEDw.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tirotamil/v6/m8JXjfVIf7OT22n3M-S_YLVlbg.ttf" - }, - { - "family": "Tiro Telugu", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext", "telugu" ], - "version": "v7", - "lastModified": "2023-02-02", - "files": { - "regular": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTQ7PxlZWk2EPiSymjXdKSNQqn0X0BO.ttf", - "italic": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTS7PxlZWk2EPiSymjXdJSPSK3WWlBOoas.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTQ7PxlZWk2EPiSymjXdJSMSK0.ttf" - }, - { - "family": "Titan One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/titanone/v13/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/titanone/v13/mFTzWbsGxbbS_J5cQcjCkjgj.ttf" - }, - { - "family": "Titillium Web", - "variants": [ - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "600", - "600italic", - "700", - "700italic", - "900" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf", - "300": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf", - "600": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf", - "700": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf", - "900": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf", - "200italic": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf", - "300italic": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf", - "regular": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf", - "italic": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf", - "600italic": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf", - "700italic": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPecZTIAOhVxoMyOr9n_E7fdMXmCA.ttf" - }, - { - "family": "Tomorrow", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgR2xe2XiKMiokE4.ttf", - "200": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0dWkXIBsShiVd4.ttf", - "300": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR15WUXIBsShiVd4.ttf", - "500": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0hWEXIBsShiVd4.ttf", - "600": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0NX0XIBsShiVd4.ttf", - "700": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1pXkXIBsShiVd4.ttf", - "800": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR11XUXIBsShiVd4.ttf", - "900": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1RXEXIBsShiVd4.ttf", - "100italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLirETNbFtZCeGqgRXXQwHoLOqtgE5h0A.ttf", - "200italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ63JDMCDjEd4yVY.ttf", - "300italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8nKDMCDjEd4yVY.ttf", - "regular": "http://fonts.gstatic.com/s/tomorrow/v15/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf", - "italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgRXXe2XiKMiokE4.ttf", - "500italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ5HLDMCDjEd4yVY.ttf", - "600italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ73MDMCDjEd4yVY.ttf", - "700italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ9nNDMCDjEd4yVY.ttf", - "800italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8XODMCDjEd4yVY.ttf", - "900italic": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ-HPDMCDjEd4yVY.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tomorrow/v15/WBLmrETNbFtZCeGqgRXUe2U.ttf" - }, - { - "family": "Tourney", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v11", - "lastModified": "2023-03-09", - "files": { - "100": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQByZTp1I1LcGA.ttf", - "200": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQFyZTp1I1LcGA.ttf", - "300": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GZwFyZTp1I1LcGA.ttf", - "500": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GCwFyZTp1I1LcGA.ttf", - "600": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G5wZyZTp1I1LcGA.ttf", - "700": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G3gZyZTp1I1LcGA.ttf", - "800": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQZyZTp1I1LcGA.ttf", - "900": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GkAZyZTp1I1LcGA.ttf", - "regular": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFyZTp1I1LcGA.ttf", - "100italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJzBxAVfMGOPb.ttf", - "200italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaJjBxAVfMGOPb.ttf", - "300italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8ULEJjBxAVfMGOPb.ttf", - "italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJjBxAVfMGOPb.ttf", - "500italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKoJjBxAVfMGOPb.ttf", - "600italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJEITBxAVfMGOPb.ttf", - "700italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJ9ITBxAVfMGOPb.ttf", - "800italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaITBxAVfMGOPb.ttf", - "900italic": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIzITBxAVfMGOPb.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFCZDBx.ttf" - }, - { - "family": "Trade Winds", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/tradewinds/v17/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tradewinds/v17/AYCPpXPpYNIIT7h8-QenM0Jr5vY.ttf" - }, - { - "family": "Train One", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/trainone/v13/gyB-hwkiNtc6KnxUVjWHOqbZRY7JVQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/trainone/v13/gyB-hwkiNtc6KnxUVjW3O6zd.ttf" - }, - { - "family": "Trirong", - "variants": [ - "100", - "100italic", - "200", - "200italic", - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic", - "800", - "800italic", - "900", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "thai", "vietnamese" ], - "version": "v12", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/trirong/v12/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf", - "200": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf", - "300": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf", - "500": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf", - "600": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf", - "700": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf", - "800": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf", - "900": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf", - "100italic": "http://fonts.gstatic.com/s/trirong/v12/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf", - "200italic": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf", - "300italic": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf", - "regular": "http://fonts.gstatic.com/s/trirong/v12/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf", - "italic": "http://fonts.gstatic.com/s/trirong/v12/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf", - "500italic": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf", - "600italic": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf", - "700italic": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf", - "800italic": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf", - "900italic": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/trirong/v12/7r3GqXNgp8wxdOdOn40o3Q.ttf" - }, - { - "family": "Trispace", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v22", - "lastModified": "2023-03-21", - "files": { - "100": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9qoQl0zHugpt0.ttf", - "200": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9roQl0zHugpt0.ttf", - "300": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbCFroQl0zHugpt0.ttf", - "500": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbE1roQl0zHugpt0.ttf", - "600": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbKFsoQl0zHugpt0.ttf", - "700": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbJhsoQl0zHugpt0.ttf", - "800": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9soQl0zHugpt0.ttf", - "regular": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9roQl0zHugpt0.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9rkQh-yA.ttf" - }, - { - "family": "Trocchi", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/trocchi/v15/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/trocchi/v15/qWcqB6WkuIDxDZLcPrpeuA.ttf" - }, - { - "family": "Trochut", - "variants": [ "regular", "italic", "700" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/trochut/v20/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf", - "regular": "http://fonts.gstatic.com/s/trochut/v20/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf", - "italic": "http://fonts.gstatic.com/s/trochut/v20/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/trochut/v20/CHyjV-fDDlP9bDIw1nWCeQ.ttf" - }, - { - "family": "Truculenta", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAjswcFHnJMMhg.ttf", - "200": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAiswcFHnJMMhg.ttf", - "300": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMg4iswcFHnJMMhg.ttf", - "500": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMmIiswcFHnJMMhg.ttf", - "600": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMo4lswcFHnJMMhg.ttf", - "700": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMrclswcFHnJMMhg.ttf", - "800": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAlswcFHnJMMhg.ttf", - "900": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMvklswcFHnJMMhg.ttf", - "regular": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAiswcFHnJMMhg.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAigwYPGg.ttf" - }, - { - "family": "Trykker", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPzhNnoOd2j22U.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPztNjiPQ.ttf" - }, - { - "family": "Tulpen One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/tulpenone/v21/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/tulpenone/v21/dFa6ZfeC474skLgesc0Cajw6-A.ttf" - }, - { - "family": "Turret Road", - "variants": [ "200", "300", "regular", "500", "700", "800" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf", - "300": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf", - "500": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf", - "700": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf", - "800": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf", - "regular": "http://fonts.gstatic.com/s/turretroad/v7/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/turretroad/v7/pxiAypMgpcBFjE84Zv-fE0tEMPc.ttf" - }, - { - "family": "Twinkle Star", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/twinklestar/v3/pe0pMI6IL4dPoFl9LGEmY6WaA_Rue1UwVg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tillana" + }, + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Tillana" + }, + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Tillana" + }, + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tillana" + }, + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Tillana" + } + ] + }, + { + "name": "Tilt Neon", + "fontFamily": "Tilt Neon, system-ui", + "slug": "tilt-neon", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tiltneon/v6/E21L_d7gguXdwD9LEFY2WCeElCNtd-eBqpHp1TzrkJSmwpj5ndxquXK9WualJ9DS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tilt Neon" + } + ] + }, + { + "name": "Tilt Prism", + "fontFamily": "Tilt Prism, system-ui", + "slug": "tilt-prism", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tiltprism/v8/5h11iZgyPHoZ3YikNzWGfWey2dCAZXT-bH9V4VGn-FJ7tLI25oc_rIbwoTSrn86NKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tilt Prism" + } + ] + }, + { + "name": "Tilt Warp", + "fontFamily": "Tilt Warp, system-ui", + "slug": "tilt-warp", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tiltwarp/v9/AlZc_zVDs5XpmO7yn3w7flUoytXJp3z29uEwmEMLEJljLXvT8UJSZTBxAVfMGOPb.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tilt Warp" + } + ] + }, + { + "name": "Timmana", + "fontFamily": "Timmana, sans-serif", + "slug": "timmana", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/timmana/v12/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Timmana" + } + ] + }, + { + "name": "Tinos", + "fontFamily": "Tinos, serif", + "slug": "tinos", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwgX8dGVh8TI-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tinos" + }, + { + "src": "http://fonts.gstatic.com/s/tinos/v24/buE2poGnedXvwjX-fmFD9CI-4NU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tinos" + }, + { + "src": "http://fonts.gstatic.com/s/tinos/v24/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tinos" + }, + { + "src": "http://fonts.gstatic.com/s/tinos/v24/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Tinos" + } + ] + }, + { + "name": "Tiro Bangla", + "fontFamily": "Tiro Bangla, serif", + "slug": "tiro-bangla", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirobangla/v6/IFSgHe1Tm95E3O8b5i2V8MG9-UPeuz4i.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/tirobangla/v6/IFSiHe1Tm95E3O8b5i2V8PG_80f8vi4imBM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Bangla" + } + ] + }, + { + "name": "Tiro Devanagari Hindi", + "fontFamily": "Tiro Devanagari Hindi, serif", + "slug": "tiro-devanagari-hindi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9fSOkOfG0Y3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Devanagari Hindi" + }, + { + "src": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55x8ezN7P8T4e0_CfIJrwdodg9HoYw0i-M9vSuMKXmgI3F_o.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Devanagari Hindi" + } + ] + }, + { + "name": "Tiro Devanagari Marathi", + "fontFamily": "Tiro Devanagari Marathi, serif", + "slug": "tiro-devanagari-marathi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkotDrDJYM2lAZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Devanagari Marathi" + }, + { + "src": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1zPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkouDpBpIu30AZbUY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Devanagari Marathi" + } + ] + }, + { + "name": "Tiro Devanagari Sanskrit", + "fontFamily": "Tiro Devanagari Sanskrit, serif", + "slug": "tiro-devanagari-sanskrit", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59pEoEqgtOh0w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Devanagari Sanskrit" + }, + { + "src": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoGzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59ZEIsuoNax06MM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Devanagari Sanskrit" + } + ] + }, + { + "name": "Tiro Gurmukhi", + "fontFamily": "Tiro Gurmukhi, serif", + "slug": "tiro-gurmukhi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3dmckXSYq-Uqjc048JUF7Jvly7HAQsyA2Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3d4ckXSYq-Uqjc048JUF7JvpyzNBSk3E2YljQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Gurmukhi" + } + ] + }, + { + "name": "Tiro Kannada", + "fontFamily": "Tiro Kannada, serif", + "slug": "tiro-kannada", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirokannada/v6/CSR44ztKmvqaDxEDJFY7CIYKSPl6tOU9Eg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/tirokannada/v6/CSRm4ztKmvqaDxEDJFY7CIY6SvN-luAtEnKp.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Kannada" + } + ] + }, + { + "name": "Tiro Tamil", + "fontFamily": "Tiro Tamil, serif", + "slug": "tiro-tamil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirotamil/v10/m8JXjfVIf7OT22n3M-S_ULRvamODxdI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/tirotamil/v10/m8JVjfVIf7OT22n3M-S_YLZlbkGG1dKEDw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Tamil" + } + ] + }, + { + "name": "Tiro Telugu", + "fontFamily": "Tiro Telugu, serif", + "slug": "tiro-telugu", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTQ7PxlZWk2EPiSymjXdKSNQqn0X0BO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTS7PxlZWk2EPiSymjXdJSPSK3WWlBOoas.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Telugu" + } + ] + }, + { + "name": "Titan One", + "fontFamily": "Titan One, system-ui", + "slug": "titan-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/titanone/v13/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Titan One" + } + ] + }, + { + "name": "Titillium Web", + "fontFamily": "Titillium Web, sans-serif", + "slug": "titillium-web", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + } + ] + }, + { + "name": "Tomorrow", + "fontFamily": "Tomorrow, sans-serif", + "slug": "tomorrow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgR2xe2XiKMiokE4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLirETNbFtZCeGqgRXXQwHoLOqtgE5h0A.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0dWkXIBsShiVd4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ63JDMCDjEd4yVY.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR15WUXIBsShiVd4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8nKDMCDjEd4yVY.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgRXXe2XiKMiokE4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0hWEXIBsShiVd4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ5HLDMCDjEd4yVY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0NX0XIBsShiVd4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ73MDMCDjEd4yVY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1pXkXIBsShiVd4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ9nNDMCDjEd4yVY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR11XUXIBsShiVd4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8XODMCDjEd4yVY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1RXEXIBsShiVd4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ-HPDMCDjEd4yVY.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + } + ] + }, + { + "name": "Tourney", + "fontFamily": "Tourney, system-ui", + "slug": "tourney", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQByZTp1I1LcGA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQFyZTp1I1LcGA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GZwFyZTp1I1LcGA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFyZTp1I1LcGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GCwFyZTp1I1LcGA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G5wZyZTp1I1LcGA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G3gZyZTp1I1LcGA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQZyZTp1I1LcGA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GkAZyZTp1I1LcGA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJzBxAVfMGOPb.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaJjBxAVfMGOPb.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8ULEJjBxAVfMGOPb.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJjBxAVfMGOPb.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKoJjBxAVfMGOPb.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJEITBxAVfMGOPb.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJ9ITBxAVfMGOPb.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaITBxAVfMGOPb.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIzITBxAVfMGOPb.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Tourney" + } + ] + }, + { + "name": "Trade Winds", + "fontFamily": "Trade Winds, system-ui", + "slug": "trade-winds", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tradewinds/v17/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trade Winds" + } + ] + }, + { + "name": "Train One", + "fontFamily": "Train One, system-ui", + "slug": "train-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trainone/v13/gyB-hwkiNtc6KnxUVjWHOqbZRY7JVQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Train One" + } + ] + }, + { + "name": "Trirong", + "fontFamily": "Trirong, serif", + "slug": "trirong", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Trirong" + } + ] + }, + { + "name": "Trispace", + "fontFamily": "Trispace, sans-serif", + "slug": "trispace", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9qoQl0zHugpt0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9roQl0zHugpt0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbCFroQl0zHugpt0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9roQl0zHugpt0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbE1roQl0zHugpt0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbKFsoQl0zHugpt0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbJhsoQl0zHugpt0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9soQl0zHugpt0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Trispace" + } + ] + }, + { + "name": "Trocchi", + "fontFamily": "Trocchi, serif", + "slug": "trocchi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trocchi/v15/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trocchi" + } + ] + }, + { + "name": "Trochut", + "fontFamily": "Trochut, system-ui", + "slug": "trochut", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trochut/v20/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trochut" + }, + { + "src": "http://fonts.gstatic.com/s/trochut/v20/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Trochut" + }, + { + "src": "http://fonts.gstatic.com/s/trochut/v20/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Trochut" + } + ] + }, + { + "name": "Truculenta", + "fontFamily": "Truculenta, sans-serif", + "slug": "truculenta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAjswcFHnJMMhg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAiswcFHnJMMhg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMg4iswcFHnJMMhg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAiswcFHnJMMhg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMmIiswcFHnJMMhg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMo4lswcFHnJMMhg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMrclswcFHnJMMhg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAlswcFHnJMMhg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMvklswcFHnJMMhg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Truculenta" + } + ] + }, + { + "name": "Trykker", + "fontFamily": "Trykker, serif", + "slug": "trykker", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPzhNnoOd2j22U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trykker" + } + ] + }, + { + "name": "Tulpen One", + "fontFamily": "Tulpen One, system-ui", + "slug": "tulpen-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tulpenone/v21/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tulpen One" + } + ] + }, + { + "name": "Turret Road", + "fontFamily": "Turret Road, system-ui", + "slug": "turret-road", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Turret Road" + } + ] + }, + { + "name": "Twinkle Star", + "fontFamily": "Twinkle Star, cursive", + "slug": "twinkle-star", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/twinklestar/v3/pe0pMI6IL4dPoFl9LGEmY6WqAv5q.ttf" - }, - { - "family": "Ubuntu", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "700", - "700italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext" - ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf", - "500": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf", - "700": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf", - "300italic": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf", - "regular": "http://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf", - "italic": "http://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf", - "500italic": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf", - "700italic": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKeQ7z.ttf" - }, - { - "family": "Ubuntu Condensed", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext" - ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtT-bfrg.ttf" - }, - { - "family": "Ubuntu Mono", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext" - ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf", - "regular": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf", - "italic": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf", - "700italic": "http://fonts.gstatic.com/s/ubuntumono/v15/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/twinklestar/v3/pe0pMI6IL4dPoFl9LGEmY6WaA_Rue1UwVg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Twinkle Star" + } + ] + }, + { + "name": "Ubuntu", + "fontFamily": "Ubuntu, sans-serif", + "slug": "ubuntu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Ubuntu" + } + ] + }, + { + "name": "Ubuntu Condensed", + "fontFamily": "Ubuntu Condensed, sans-serif", + "slug": "ubuntu-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ubuntu Condensed" + } + ] + }, + { + "name": "Ubuntu Mono", + "fontFamily": "Ubuntu Mono, monospace", + "slug": "ubuntu-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbCc8CsE.ttf" - }, - { - "family": "Uchen", - "variants": [ "regular" ], - "subsets": [ "latin", "tibetan" ], - "version": "v7", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/uchen/v7/nKKZ-GokGZ1baIaSEQGodLxA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/uchen/v7/nKKZ-GokGZ1baLaTGwU.ttf" - }, - { - "family": "Ultra", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/ultra/v19/zOLy4prXmrtY-tT6yLOD6NxF.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ultra/v19/zOLy4prXmrtY-uT7wrc.ttf" - }, - { - "family": "Unbounded", - "variants": [ - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v6", - "lastModified": "2023-04-27", - "files": { - "200": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65jx043HgP6LR0Y.ttf", - "300": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG60bx043HgP6LR0Y.ttf", - "500": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx043HgP6LR0Y.ttf", - "600": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG68b2043HgP6LR0Y.ttf", - "700": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6__2043HgP6LR0Y.ttf", - "800": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65j2043HgP6LR0Y.ttf", - "900": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG67H2043HgP6LR0Y.ttf", - "regular": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx043HgP6LR0Y.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx44zNhA.ttf" - }, - { - "family": "Uncial Antiqua", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/uncialantiqua/v20/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/uncialantiqua/v20/N0bM2S5WOex4OUbESzoESK-i-MfQQZE.ttf" - }, - { - "family": "Underdog", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "latin", "latin-ext" ], - "version": "v23", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/underdog/v23/CHygV-jCElj7diMroVSiU14GN2Il.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/underdog/v23/CHygV-jCElj7diMroWSjWVo.ttf" - }, - { - "family": "Unica One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/unicaone/v15/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/unicaone/v15/DPEuYwWHyAYGVTSmalsRd93b.ttf" - }, - { - "family": "UnifrakturCook", - "variants": [ "700" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/unifrakturcook/v19/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/unifrakturcook/v19/IurA6Yli8YOdcoky-0PTTdkm56n05Xw01oY.ttf" - }, - { - "family": "UnifrakturMaguntia", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/unifrakturmaguntia/v16/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/unifrakturmaguntia/v16/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVenmZJ.ttf" - }, - { - "family": "Unkempt", - "variants": [ "regular", "700" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/unkempt/v19/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf", - "regular": "http://fonts.gstatic.com/s/unkempt/v19/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/unkempt/v19/2EbnL-Z2DFZue0DSeYcV9w.ttf" - }, - { - "family": "Unlock", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v24", - "lastModified": "2023-03-21", - "files": { - "regular": "http://fonts.gstatic.com/s/unlock/v24/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/unlock/v24/7Au-p_8ykD-cDl72KQLW.ttf" - }, - { - "family": "Unna", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v21", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/unna/v21/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf", - "regular": "http://fonts.gstatic.com/s/unna/v21/AYCEpXzofN0NCpgBlGHCWFM.ttf", - "italic": "http://fonts.gstatic.com/s/unna/v21/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf", - "700italic": "http://fonts.gstatic.com/s/unna/v21/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/unna/v21/AYCEpXzofN0NOpkLkA.ttf" - }, - { - "family": "Updock", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/updock/v2/nuF4D_3dVZ70UI9SjLK3602XBw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ubuntu Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ubuntu Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ubuntu Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Ubuntu Mono" + } + ] + }, + { + "name": "Uchen", + "fontFamily": "Uchen, serif", + "slug": "uchen", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/uchen/v7/nKKZ-GokGZ1baIaSEQGodLxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Uchen" + } + ] + }, + { + "name": "Ultra", + "fontFamily": "Ultra, serif", + "slug": "ultra", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ultra/v19/zOLy4prXmrtY-tT6yLOD6NxF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ultra" + } + ] + }, + { + "name": "Unbounded", + "fontFamily": "Unbounded, system-ui", + "slug": "unbounded", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65jx043HgP6LR0Y.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG60bx043HgP6LR0Y.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx043HgP6LR0Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx043HgP6LR0Y.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG68b2043HgP6LR0Y.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6__2043HgP6LR0Y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65j2043HgP6LR0Y.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG67H2043HgP6LR0Y.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Unbounded" + } + ] + }, + { + "name": "Uncial Antiqua", + "fontFamily": "Uncial Antiqua, system-ui", + "slug": "uncial-antiqua", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/uncialantiqua/v20/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Uncial Antiqua" + } + ] + }, + { + "name": "Underdog", + "fontFamily": "Underdog, system-ui", + "slug": "underdog", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/underdog/v23/CHygV-jCElj7diMroVSiU14GN2Il.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Underdog" + } + ] + }, + { + "name": "Unica One", + "fontFamily": "Unica One, system-ui", + "slug": "unica-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unicaone/v15/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unica One" + } + ] + }, + { + "name": "UnifrakturCook", + "fontFamily": "UnifrakturCook, system-ui", + "slug": "unifrakturcook", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unifrakturcook/v19/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "UnifrakturCook" + } + ] + }, + { + "name": "UnifrakturMaguntia", + "fontFamily": "UnifrakturMaguntia, system-ui", + "slug": "unifrakturmaguntia", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unifrakturmaguntia/v16/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "UnifrakturMaguntia" + } + ] + }, + { + "name": "Unkempt", + "fontFamily": "Unkempt, system-ui", + "slug": "unkempt", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unkempt/v19/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unkempt" + }, + { + "src": "http://fonts.gstatic.com/s/unkempt/v19/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Unkempt" + } + ] + }, + { + "name": "Unlock", + "fontFamily": "Unlock, system-ui", + "slug": "unlock", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unlock/v24/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unlock" + } + ] + }, + { + "name": "Unna", + "fontFamily": "Unna, serif", + "slug": "unna", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unna/v21/AYCEpXzofN0NCpgBlGHCWFM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unna" + }, + { + "src": "http://fonts.gstatic.com/s/unna/v21/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Unna" + }, + { + "src": "http://fonts.gstatic.com/s/unna/v21/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Unna" + }, + { + "src": "http://fonts.gstatic.com/s/unna/v21/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Unna" + } + ] + }, + { + "name": "Updock", + "fontFamily": "Updock, cursive", + "slug": "updock", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/updock/v2/nuF4D_3dVZ70UI9ijbiz.ttf" - }, - { - "family": "Urbanist", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v10", - "lastModified": "2023-01-06", - "files": { - "100": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx8fFpOrS8SlKw.ttf", - "200": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSx4fFpOrS8SlKw.ttf", - "300": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDlR4fFpOrS8SlKw.ttf", - "500": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fFpOrS8SlKw.ttf", - "600": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFpOrS8SlKw.ttf", - "700": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfFpOrS8SlKw.ttf", - "800": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSxkfFpOrS8SlKw.ttf", - "900": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfFpOrS8SlKw.ttf", - "regular": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fFpOrS8SlKw.ttf", - "100italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VJmvacG1K4S1.ttf", - "200italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113VZmvacG1K4S1.ttf", - "300italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA12pVZmvacG1K4S1.ttf", - "italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VZmvacG1K4S1.ttf", - "500italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA13FVZmvacG1K4S1.ttf", - "600italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10pUpmvacG1K4S1.ttf", - "700italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmvacG1K4S1.ttf", - "800italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113UpmvacG1K4S1.ttf", - "900italic": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmvacG1K4S1.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4vF5mv.ttf" - }, - { - "family": "VT323", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2hsYHpT2dkNE.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/updock/v2/nuF4D_3dVZ70UI9SjLK3602XBw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Updock" + } + ] + }, + { + "name": "Urbanist", + "fontFamily": "Urbanist, sans-serif", + "slug": "urbanist", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx8fFpOrS8SlKw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSx4fFpOrS8SlKw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDlR4fFpOrS8SlKw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fFpOrS8SlKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fFpOrS8SlKw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFpOrS8SlKw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfFpOrS8SlKw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSxkfFpOrS8SlKw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfFpOrS8SlKw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VJmvacG1K4S1.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113VZmvacG1K4S1.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA12pVZmvacG1K4S1.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VZmvacG1K4S1.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA13FVZmvacG1K4S1.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10pUpmvacG1K4S1.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmvacG1K4S1.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113UpmvacG1K4S1.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmvacG1K4S1.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Urbanist" + } + ] + }, + { + "name": "VT323", + "fontFamily": "VT323, monospace", + "slug": "vt323", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2isZFJA.ttf" - }, - { - "family": "Vampiro One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v18", - "lastModified": "2022-04-27", - "files": { - "regular": "http://fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLnqmuPw.ttf" - }, - { - "family": "Varela", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHX5BR4B.ttf" - }, - { - "family": "Varela Round", - "variants": [ "regular" ], - "subsets": [ "hebrew", "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2023-02-16", - "files": { - "regular": "http://fonts.gstatic.com/s/varelaround/v20/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/varelaround/v20/w8gdH283Tvk__Lua32TysjIfocuK.ttf" - }, - { - "family": "Varta", - "variants": [ "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v21", - "lastModified": "2023-03-21", - "files": { - "300": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x96j4EirE-9PGLfQ.ttf", - "500": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9hj4EirE-9PGLfQ.ttf", - "600": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9ajkEirE-9PGLfQ.ttf", - "700": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9UzkEirE-9PGLfQ.ttf", - "regular": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD4EirE-9PGLfQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD40i7s6.ttf" - }, - { - "family": "Vast Shadow", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/vastshadow/v15/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/vastshadow/v15/pe0qMImKOZ1V62ZwbVY9dce7I94.ttf" - }, - { - "family": "Vazirmatn", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900" - ], - "subsets": [ "arabic", "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2023-05-02", - "files": { - "100": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgyOReZ72DF_QY.ttf", - "200": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklegzOReZ72DF_QY.ttf", - "300": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklTYzOReZ72DF_QY.ttf", - "500": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklVozOReZ72DF_QY.ttf", - "600": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklbY0OReZ72DF_QY.ttf", - "700": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklY80OReZ72DF_QY.ttf", - "800": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRkleg0OReZ72DF_QY.ttf", - "900": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklcE0OReZ72DF_QY.ttf", - "regular": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgzOReZ72DF_QY.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgzCRaT6w.ttf" - }, - { - "family": "Vesper Libre", - "variants": [ "regular", "500", "700", "900" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "500": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf", - "700": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf", - "900": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf", - "regular": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6CNxyWnf-uxPdXDHUD_RdIDkWJ.ttf" - }, - { - "family": "Viaoda Libre", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/viaodalibre/v15/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/viaodalibre/v15/vEFW2_lWCgoR6OKuRz9kcRV5bmgc.ttf" - }, - { - "family": "Vibes", - "variants": [ "regular" ], - "subsets": [ "arabic", "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/vibes/v14/QdVYSTsmIB6tmbd3HpbsuBlh.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/vibes/v14/QdVYSTsmIB6tmYd2FJI.ttf" - }, - { - "family": "Vibur", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v23", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2hsYHpT2dkNE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "VT323" + } + ] + }, + { + "name": "Vampiro One", + "fontFamily": "Vampiro One, system-ui", + "slug": "vampiro-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vampiro One" + } + ] + }, + { + "name": "Varela", + "fontFamily": "Varela, sans-serif", + "slug": "varela", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Varela" + } + ] + }, + { + "name": "Varela Round", + "fontFamily": "Varela Round, sans-serif", + "slug": "varela-round", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/varelaround/v20/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Varela Round" + } + ] + }, + { + "name": "Varta", + "fontFamily": "Varta, sans-serif", + "slug": "varta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x96j4EirE-9PGLfQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Varta" + }, + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD4EirE-9PGLfQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Varta" + }, + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9hj4EirE-9PGLfQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Varta" + }, + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9ajkEirE-9PGLfQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Varta" + }, + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9UzkEirE-9PGLfQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Varta" + } + ] + }, + { + "name": "Vast Shadow", + "fontFamily": "Vast Shadow, system-ui", + "slug": "vast-shadow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vastshadow/v15/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vast Shadow" + } + ] + }, + { + "name": "Vazirmatn", + "fontFamily": "Vazirmatn, sans-serif", + "slug": "vazirmatn", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgyOReZ72DF_QY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklegzOReZ72DF_QY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklTYzOReZ72DF_QY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgzOReZ72DF_QY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklVozOReZ72DF_QY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklbY0OReZ72DF_QY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklY80OReZ72DF_QY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRkleg0OReZ72DF_QY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklcE0OReZ72DF_QY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + } + ] + }, + { + "name": "Vesper Libre", + "fontFamily": "Vesper Libre, serif", + "slug": "vesper-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vesper Libre" + }, + { + "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Vesper Libre" + }, + { + "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Vesper Libre" + }, + { + "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Vesper Libre" + } + ] + }, + { + "name": "Viaoda Libre", + "fontFamily": "Viaoda Libre, system-ui", + "slug": "viaoda-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/viaodalibre/v15/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Viaoda Libre" + } + ] + }, + { + "name": "Vibes", + "fontFamily": "Vibes, system-ui", + "slug": "vibes", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vibes/v14/QdVYSTsmIB6tmbd3HpbsuBlh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vibes" + } + ] + }, + { + "name": "Vibur", + "fontFamily": "Vibur, cursive", + "slug": "vibur", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRgToJD4.ttf" - }, - { - "family": "Vidaloka", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEass8yn4hnCci.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEavs9wHo.ttf" - }, - { - "family": "Viga", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiX_QIjD4e2OX8.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiXzQMpCw.ttf" - }, - { - "family": "Vina Sans", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2023-04-20", - "files": { - "regular": "http://fonts.gstatic.com/s/vinasans/v2/m8JQjfZKf6-d2273MP7zcJ5BZmqa3A.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/vinasans/v2/m8JQjfZKf6-d2273MP7DcZRF.ttf" - }, - { - "family": "Voces", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/voces/v20/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/voces/v20/-F6_fjJyLyU8d7PADmo.ttf" - }, - { - "family": "Volkhov", - "variants": [ "regular", "italic", "700", "700italic" ], - "subsets": [ "latin" ], - "version": "v17", - "lastModified": "2022-04-27", - "files": { - "700": "http://fonts.gstatic.com/s/volkhov/v17/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf", - "regular": "http://fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf", - "italic": "http://fonts.gstatic.com/s/volkhov/v17/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf", - "700italic": "http://fonts.gstatic.com/s/volkhov/v17/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNecTMEgA.ttf" - }, - { - "family": "Vollkorn", - "variants": [ - "regular", - "500", - "600", - "700", - "800", - "900", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v22", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuGWOdEbD63w.ttf", - "600": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauGWOdEbD63w.ttf", - "700": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auGWOdEbD63w.ttf", - "800": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauGWOdEbD63w.ttf", - "900": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauGWOdEbD63w.ttf", - "regular": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuGWOdEbD63w.ttf", - "italic": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmZM7Xq34g9.ttf", - "500italic": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmZM7Xq34g9.ttf", - "600italic": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmZM7Xq34g9.ttf", - "700italic": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmZM7Xq34g9.ttf", - "800italic": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmZM7Xq34g9.ttf", - "900italic": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmZM7Xq34g9.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGeGGmZ.ttf" - }, - { - "family": "Vollkorn SC", - "variants": [ "regular", "600", "700", "900" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "600": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf", - "700": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf", - "900": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf", - "regular": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_v6-zQ3rXpceZj9cqnViF4Pns.ttf" - }, - { - "family": "Voltaire", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v18", - "lastModified": "2023-03-21", - "files": { - "regular": "http://fonts.gstatic.com/s/voltaire/v18/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/voltaire/v18/1Pttg8PcRfSblAvGvTopaqE.ttf" - }, - { - "family": "Vujahday Script", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v4", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/vujahdayscript/v4/RWmQoKGA8fEkrIPtSZ3_J7er2dUiDEtvAlaMKw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vibur" + } + ] + }, + { + "name": "Vidaloka", + "fontFamily": "Vidaloka, serif", + "slug": "vidaloka", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEass8yn4hnCci.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vidaloka" + } + ] + }, + { + "name": "Viga", + "fontFamily": "Viga, sans-serif", + "slug": "viga", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiX_QIjD4e2OX8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Viga" + } + ] + }, + { + "name": "Vina Sans", + "fontFamily": "Vina Sans, system-ui", + "slug": "vina-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vinasans/v2/m8JQjfZKf6-d2273MP7zcJ5BZmqa3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vina Sans" + } + ] + }, + { + "name": "Voces", + "fontFamily": "Voces, system-ui", + "slug": "voces", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/voces/v20/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Voces" + } + ] + }, + { + "name": "Volkhov", + "fontFamily": "Volkhov, serif", + "slug": "volkhov", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Volkhov" + }, + { + "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Volkhov" + }, + { + "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Volkhov" + }, + { + "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Volkhov" + } + ] + }, + { + "name": "Vollkorn", + "fontFamily": "Vollkorn, serif", + "slug": "vollkorn", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuGWOdEbD63w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuGWOdEbD63w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauGWOdEbD63w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auGWOdEbD63w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauGWOdEbD63w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauGWOdEbD63w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmZM7Xq34g9.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmZM7Xq34g9.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmZM7Xq34g9.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmZM7Xq34g9.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmZM7Xq34g9.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmZM7Xq34g9.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + } + ] + }, + { + "name": "Vollkorn SC", + "fontFamily": "Vollkorn SC, serif", + "slug": "vollkorn-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vollkorn SC" + }, + { + "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Vollkorn SC" + }, + { + "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Vollkorn SC" + }, + { + "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Vollkorn SC" + } + ] + }, + { + "name": "Voltaire", + "fontFamily": "Voltaire, sans-serif", + "slug": "voltaire", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/voltaire/v18/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Voltaire" + } + ] + }, + { + "name": "Vujahday Script", + "fontFamily": "Vujahday Script, cursive", + "slug": "vujahday-script", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/vujahdayscript/v4/RWmQoKGA8fEkrIPtSZ3_J7er2dUSDUFr.ttf" - }, - { - "family": "Waiting for the Sunrise", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/waitingforthesunrise/v16/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vujahdayscript/v4/RWmQoKGA8fEkrIPtSZ3_J7er2dUiDEtvAlaMKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vujahday Script" + } + ] + }, + { + "name": "Waiting for the Sunrise", + "fontFamily": "Waiting for the Sunrise, cursive", + "slug": "waiting-for-the-sunrise", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/waitingforthesunrise/v16/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsbZR_Bs.ttf" - }, - { - "family": "Wallpoet", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v16", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/wallpoet/v16/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/wallpoet/v16/f0X10em2_8RnXVVdUObv58E.ttf" - }, - { - "family": "Walter Turncoat", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v19", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/walterturncoat/v19/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/waitingforthesunrise/v16/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Waiting for the Sunrise" + } + ] + }, + { + "name": "Wallpoet", + "fontFamily": "Wallpoet, system-ui", + "slug": "wallpoet", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wallpoet/v16/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wallpoet" + } + ] + }, + { + "name": "Walter Turncoat", + "fontFamily": "Walter Turncoat, cursive", + "slug": "walter-turncoat", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/walterturncoat/v19/snfys0Gs98ln43n0d-14ULoToe6LYReZ.ttf" - }, - { - "family": "Warnes", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v25", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/warnes/v25/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/warnes/v25/pONn1hc0GsW6sW5-pyqy.ttf" - }, - { - "family": "Water Brush", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/waterbrush/v2/AYCPpXPqc8cJWLhp4hywKHJq7PKP5Z_G.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/walterturncoat/v19/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Walter Turncoat" + } + ] + }, + { + "name": "Warnes", + "fontFamily": "Warnes, system-ui", + "slug": "warnes", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/warnes/v25/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Warnes" + } + ] + }, + { + "name": "Water Brush", + "fontFamily": "Water Brush, cursive", + "slug": "water-brush", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/waterbrush/v2/AYCPpXPqc8cJWLhp4hywKEJr5vY.ttf" - }, - { - "family": "Waterfall", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v3", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/waterfall/v3/MCoRzAfo293fACdFKcwY2rH8D_EZwA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/waterbrush/v2/AYCPpXPqc8cJWLhp4hywKHJq7PKP5Z_G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Water Brush" + } + ] + }, + { + "name": "Waterfall", + "fontFamily": "Waterfall, cursive", + "slug": "waterfall", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/waterfall/v3/MCoRzAfo293fACdFKcwo27v4.ttf" - }, - { - "family": "Wellfleet", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/wellfleet/v20/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/wellfleet/v20/nuF7D_LfQJb3VYgX6eyj4myP.ttf" - }, - { - "family": "Wendy One", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v15", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/wendyone/v15/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/wendyone/v15/2sDcZGJOipXfgfXV5wgzbmW8.ttf" - }, - { - "family": "Whisper", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v2", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/whisper/v2/q5uHsoqtKftx74K9milCBxxdmYU.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/waterfall/v3/MCoRzAfo293fACdFKcwY2rH8D_EZwA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Waterfall" + } + ] + }, + { + "name": "Wellfleet", + "fontFamily": "Wellfleet, system-ui", + "slug": "wellfleet", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wellfleet/v20/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wellfleet" + } + ] + }, + { + "name": "Wendy One", + "fontFamily": "Wendy One, sans-serif", + "slug": "wendy-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wendyone/v15/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wendy One" + } + ] + }, + { + "name": "Whisper", + "fontFamily": "Whisper, cursive", + "slug": "whisper", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/whisper/v2/q5uHsoqtKftx74K9qihIAw.ttf" - }, - { - "family": "WindSong", - "variants": [ "regular", "500" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v8", - "lastModified": "2023-05-02", - "files": { - "500": "http://fonts.gstatic.com/s/windsong/v8/KR1RBsyu-P-GFEW57oeNNPWylS3-jVXm.ttf", - "regular": "http://fonts.gstatic.com/s/windsong/v8/KR1WBsyu-P-GFEW57r95HdG6vjH3.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/whisper/v2/q5uHsoqtKftx74K9milCBxxdmYU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Whisper" + } + ] + }, + { + "name": "WindSong", + "fontFamily": "WindSong, cursive", + "slug": "windsong", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/windsong/v8/KR1WBsyu-P-GFEW57o94F9U.ttf" - }, - { - "family": "Wire One", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/wireone/v24/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/wireone/v24/qFdH35Wah5htUhV75VGjU94.ttf" - }, - { - "family": "Work Sans", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNigDp6_cOyA.ttf", - "200": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNigDp6_cOyA.ttf", - "300": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNigDp6_cOyA.ttf", - "500": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNigDp6_cOyA.ttf", - "600": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf", - "700": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNigDp6_cOyA.ttf", - "800": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNigDp6_cOyA.ttf", - "900": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf", - "regular": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf", - "100italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJo43ZKyDSQQ.ttf", - "200italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJo43ZKyDSQQ.ttf", - "300italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJo43ZKyDSQQ.ttf", - "italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJo43ZKyDSQQ.ttf", - "500italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJo43ZKyDSQQ.ttf", - "600italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJo43ZKyDSQQ.ttf", - "700italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJo43ZKyDSQQ.ttf", - "800italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJo43ZKyDSQQ.ttf", - "900italic": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJo43ZKyDSQQ.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXBikJow.ttf" - }, - { - "family": "Xanh Mono", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/xanhmono/v17/R70YjykVmvKCep-vWhSYmACQXzLhTg.ttf", - "italic": "http://fonts.gstatic.com/s/xanhmono/v17/R70ejykVmvKCep-vWhSomgqUfTfxTo24.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/windsong/v8/KR1WBsyu-P-GFEW57r95HdG6vjH3.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "WindSong" + }, + { + "src": "http://fonts.gstatic.com/s/windsong/v8/KR1RBsyu-P-GFEW57oeNNPWylS3-jVXm.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "WindSong" + } + ] + }, + { + "name": "Wire One", + "fontFamily": "Wire One, sans-serif", + "slug": "wire-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wireone/v24/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wire One" + } + ] + }, + { + "name": "Wix Madefor Display", + "fontFamily": "Wix Madefor Display, sans-serif", + "slug": "wix-madefor-display", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFhYltkv_3HQKgh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFTYltkv_3HQKgh.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYG_ZVtkv_3HQKgh.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYGGZVtkv_3HQKgh.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYHhZVtkv_3HQKgh.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + } + ] + }, + { + "name": "Wix Madefor Text", + "fontFamily": "Wix Madefor Text, sans-serif", + "slug": "wix-madefor-text", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cK_NOeFgpRt9rN5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3dw_GiJBP86N53IY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cKNNOeFgpRt9rN5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3dz3GiJBP86N53IY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cJhM-eFgpRt9rN5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d9HBiJBP86N53IY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cJYM-eFgpRt9rN5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d-jBiJBP86N53IY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cI_M-eFgpRt9rN5.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d4_BiJBP86N53IY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + } + ] + }, + { + "name": "Work Sans", + "fontFamily": "Work Sans, sans-serif", + "slug": "work-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNigDp6_cOyA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNigDp6_cOyA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNigDp6_cOyA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNigDp6_cOyA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNigDp6_cOyA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNigDp6_cOyA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJo43ZKyDSQQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJo43ZKyDSQQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJo43ZKyDSQQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJo43ZKyDSQQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJo43ZKyDSQQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJo43ZKyDSQQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJo43ZKyDSQQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJo43ZKyDSQQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJo43ZKyDSQQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Work Sans" + } + ] + }, + { + "name": "Xanh Mono", + "fontFamily": "Xanh Mono, monospace", + "slug": "xanh-mono", "category": "monospace", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/xanhmono/v17/R70YjykVmvKCep-vWhSomQqU.ttf" - }, - { - "family": "Yaldevi", - "variants": [ "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "latin", "latin-ext", "sinhala" ], - "version": "v12", - "lastModified": "2023-03-21", - "files": { - "200": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpfxJzvobxLCBJkS.ttf", - "300": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpcvJzvobxLCBJkS.ttf", - "500": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdDJzvobxLCBJkS.ttf", - "600": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpevIDvobxLCBJkS.ttf", - "700": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpeWIDvobxLCBJkS.ttf", - "regular": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJzvobxLCBJkS.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJwvpZRY.ttf" - }, - { - "family": "Yanone Kaffeesatz", - "variants": [ "200", "300", "regular", "500", "600", "700" ], - "subsets": [ "cyrillic", "latin", "latin-ext", "vietnamese" ], - "version": "v24", - "lastModified": "2022-09-22", - "files": { - "200": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpcGuLCnXkVA.ttf", - "300": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpcGuLCnXkVA.ttf", - "500": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpcGuLCnXkVA.ttf", - "600": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpcGuLCnXkVA.ttf", - "700": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpcGuLCnXkVA.ttf", - "regular": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpcGuLCnXkVA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWZcWGP.ttf" - }, - { - "family": "Yantramanav", - "variants": [ "100", "300", "regular", "500", "700", "900" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "100": "http://fonts.gstatic.com/s/yantramanav/v11/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf", - "300": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf", - "500": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf", - "700": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf", - "900": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf", - "regular": "http://fonts.gstatic.com/s/yantramanav/v11/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/yantramanav/v11/flU8Rqu5zY00QEpyWJYWN5f1XeM.ttf" - }, - { - "family": "Yatra One", - "variants": [ "regular" ], - "subsets": [ "devanagari", "latin", "latin-ext" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/yatraone/v14/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/yatraone/v14/C8ch4copsHzj8p7NaF0BwlmF.ttf" - }, - { - "family": "Yellowtail", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v18", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/yellowtail/v18/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/xanhmono/v17/R70YjykVmvKCep-vWhSYmACQXzLhTg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Xanh Mono" + }, + { + "src": "http://fonts.gstatic.com/s/xanhmono/v17/R70ejykVmvKCep-vWhSomgqUfTfxTo24.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Xanh Mono" + } + ] + }, + { + "name": "Yaldevi", + "fontFamily": "Yaldevi, sans-serif", + "slug": "yaldevi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpfxJzvobxLCBJkS.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpcvJzvobxLCBJkS.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJzvobxLCBJkS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdDJzvobxLCBJkS.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpevIDvobxLCBJkS.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpeWIDvobxLCBJkS.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + } + ] + }, + { + "name": "Yanone Kaffeesatz", + "fontFamily": "Yanone Kaffeesatz, sans-serif", + "slug": "yanone-kaffeesatz", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpcGuLCnXkVA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpcGuLCnXkVA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpcGuLCnXkVA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpcGuLCnXkVA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpcGuLCnXkVA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpcGuLCnXkVA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + } + ] + }, + { + "name": "Yantramanav", + "fontFamily": "Yantramanav, sans-serif", + "slug": "yantramanav", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + } + ] + }, + { + "name": "Yatra One", + "fontFamily": "Yatra One, system-ui", + "slug": "yatra-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yatraone/v14/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yatra One" + } + ] + }, + { + "name": "Yellowtail", + "fontFamily": "Yellowtail, cursive", + "slug": "yellowtail", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/yellowtail/v18/OZpGg_pnoDtINPfRIlLohl3HxA.ttf" - }, - { - "family": "Yeon Sung", - "variants": [ "regular" ], - "subsets": [ "korean", "latin" ], - "version": "v20", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/yeonsung/v20/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/yeonsung/v20/QldMNTpbohAGtsJvUn6BSFle.ttf" - }, - { - "family": "Yeseva One", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v20", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/yesevaone/v20/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/yesevaone/v20/OpNJno4ck8vc-xYpwWWxlitVXg.ttf" - }, - { - "family": "Yesteryear", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v14", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/yesteryear/v14/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yellowtail/v18/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yellowtail" + } + ] + }, + { + "name": "Yeon Sung", + "fontFamily": "Yeon Sung, system-ui", + "slug": "yeon-sung", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yeonsung/v20/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yeon Sung" + } + ] + }, + { + "name": "Yeseva One", + "fontFamily": "Yeseva One, system-ui", + "slug": "yeseva-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yesevaone/v20/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yeseva One" + } + ] + }, + { + "name": "Yesteryear", + "fontFamily": "Yesteryear, cursive", + "slug": "yesteryear", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/yesteryear/v14/dg4g_p78rroaKl8kRKo1n70NSw.ttf" - }, - { - "family": "Yomogi", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "japanese", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v8", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/yomogi/v8/VuJwdNrS2ZL7rpoPWIz5NIh-YA.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yesteryear/v14/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yesteryear" + } + ] + }, + { + "name": "Yomogi", + "fontFamily": "Yomogi, cursive", + "slug": "yomogi", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/yomogi/v8/VuJwdNrS2ZL7rpo_WYb9.ttf" - }, - { - "family": "Yrsa", - "variants": [ - "300", - "regular", - "500", - "600", - "700", - "300italic", - "italic", - "500italic", - "600italic", - "700italic" - ], - "subsets": [ "latin", "latin-ext", "vietnamese" ], - "version": "v20", - "lastModified": "2023-05-02", - "files": { - "300": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCjASNNV9rRPfrKu.ttf", - "500": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCisSNNV9rRPfrKu.ttf", - "600": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaChAT9NV9rRPfrKu.ttf", - "700": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCh5T9NV9rRPfrKu.ttf", - "regular": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCieSNNV9rRPfrKu.ttf", - "300italic": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", - "italic": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCzsW_LBte6KuGEo.ttf", - "500italic": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", - "600italic": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", - "700italic": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC9wR_LBte6KuGEo.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCieSONU_LA.ttf" - }, - { - "family": "Ysabeau", - "variants": [ - "100", - "200", - "300", - "regular", - "500", - "600", - "700", - "800", - "900", - "100italic", - "200italic", - "300italic", - "italic", - "500italic", - "600italic", - "700italic", - "800italic", - "900italic" - ], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ], - "version": "v1", - "lastModified": "2023-04-20", - "files": { - "100": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCTYwI8Gcw6Oi.ttf", - "200": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWCDYwI8Gcw6Oi.ttf", - "300": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7PICDYwI8Gcw6Oi.ttf", - "500": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OkCDYwI8Gcw6Oi.ttf", - "600": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NIDzYwI8Gcw6Oi.ttf", - "700": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NxDzYwI8Gcw6Oi.ttf", - "800": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWDzYwI8Gcw6Oi.ttf", - "900": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7M_DzYwI8Gcw6Oi.ttf", - "regular": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCDYwI8Gcw6Oi.ttf", - "100italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95yKcW-xrOiIUw.ttf", - "200italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS15zKcW-xrOiIUw.ttf", - "300italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS4BzKcW-xrOiIUw.ttf", - "italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95zKcW-xrOiIUw.ttf", - "500italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS-xzKcW-xrOiIUw.ttf", - "600italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSwB0KcW-xrOiIUw.ttf", - "700italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSzl0KcW-xrOiIUw.ttf", - "800italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS150KcW-xrOiIUw.ttf", - "900italic": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS3d0KcW-xrOiIUw.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCAYxKcU.ttf" - }, - { - "family": "Yuji Boku", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v5", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/yujiboku/v5/P5sAzZybeNzXsA9xj1Fkjb2r2dgvJA.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/yujiboku/v5/P5sAzZybeNzXsA9xj1FUjLev.ttf" - }, - { - "family": "Yuji Mai", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v5", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/yujimai/v5/ZgNQjPxdJ7DEHrS0gC38hmHmNpCO.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/yujimai/v5/ZgNQjPxdJ7DEHrS0gB39jGU.ttf" - }, - { - "family": "Yuji Syuku", - "variants": [ "regular" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v5", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/yujisyuku/v5/BngNUXdTV3vO6Lw5ApOPqPfgwqiA-Rk.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/yujisyuku/v5/BngNUXdTV3vO6Lw5ApOPmPbqxg.ttf" - }, - { - "family": "Yusei Magic", - "variants": [ "regular" ], - "subsets": [ "japanese", "latin", "latin-ext" ], - "version": "v12", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/yuseimagic/v12/yYLt0hbAyuCmoo5wlhPkpjHR-tdfcIT_.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/yuseimagic/v12/yYLt0hbAyuCmoo5wlhPkpgHQ8NM.ttf" - }, - { - "family": "ZCOOL KuaiLe", - "variants": [ "regular" ], - "subsets": [ "chinese-simplified", "latin" ], - "version": "v19", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/zcoolkuaile/v19/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zcoolkuaile/v19/tssqApdaRQokwFjFJjvM6h2mp4b3.ttf" - }, - { - "family": "ZCOOL QingKe HuangYou", - "variants": [ "regular" ], - "subsets": [ "chinese-simplified", "latin" ], - "version": "v15", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/zcoolqingkehuangyou/v15/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zcoolqingkehuangyou/v15/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mR4ive4.ttf" - }, - { - "family": "ZCOOL XiaoWei", - "variants": [ "regular" ], - "subsets": [ "chinese-simplified", "latin" ], - "version": "v14", - "lastModified": "2022-11-09", - "files": { - "regular": "http://fonts.gstatic.com/s/zcoolxiaowei/v14/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zcoolxiaowei/v14/i7dMIFFrTRywPpUVX9_RJyM1UFOaGw.ttf" - }, - { - "family": "Zen Antique", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "greek", - "japanese", - "latin", - "latin-ext" - ], - "version": "v12", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/zenantique/v12/AYCPpXPnd91Ma_Zf-Ri2JXJq7PKP5Z_G.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zenantique/v12/AYCPpXPnd91Ma_Zf-Ri2JUJr5vY.ttf" - }, - { - "family": "Zen Antique Soft", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "greek", - "japanese", - "latin", - "latin-ext" - ], - "version": "v12", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/zenantiquesoft/v12/DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwBmkui5HNg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zenantiquesoft/v12/DtV4JwqzSL1q_KwnEWMc_3xfgW6itwFslg.ttf" - }, - { - "family": "Zen Dots", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v10", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/zendots/v10/XRXX3ICfm00IGoesQeaETM_FcCIG.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zendots/v10/XRXX3ICfm00IGoesQdaFRss.ttf" - }, - { - "family": "Zen Kaku Gothic Antique", - "variants": [ "300", "regular", "500", "700", "900" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2023-01-06", - "files": { - "300": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cM9TarWJtyZyGU.ttf", - "500": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22dU9DarWJtyZyGU.ttf", - "700": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cc8jarWJtyZyGU.ttf", - "900": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22ck8DarWJtyZyGU.ttf", - "regular": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-g3RKjc4d7.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22-h1xY.ttf" - }, - { - "family": "Zen Kaku Gothic New", - "variants": [ "300", "regular", "500", "700", "900" ], - "subsets": [ "cyrillic", "japanese", "latin", "latin-ext" ], - "version": "v13", - "lastModified": "2023-01-06", - "files": { - "300": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqpdKaWTSTGlMyd8.ttf", - "500": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqs9LaWTSTGlMyd8.ttf", - "700": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqodNaWTSTGlMyd8.ttf", - "900": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqr9PaWTSTGlMyd8.ttf", - "regular": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMYW2drQpDw0GjzrVNFf_valaDBcznOkjtiTWz5UGA.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMYW2drQpDw0GjzrVNFf_valaDBcznOojpoSQ.ttf" - }, - { - "family": "Zen Kurenaido", - "variants": [ "regular" ], - "subsets": [ - "cyrillic", - "greek", - "japanese", - "latin", - "latin-ext" - ], - "version": "v13", - "lastModified": "2023-05-02", - "files": { - "regular": "http://fonts.gstatic.com/s/zenkurenaido/v13/3XFsEr0515BK2u6UUptu_gWJZfz22PRLd0U.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zenkurenaido/v13/3XFsEr0515BK2u6UUptu_gWJVf383A.ttf" - }, - { - "family": "Zen Loop", - "variants": [ "regular", "italic" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v7", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/zenloop/v7/h0GrssK16UsnJwHsEK9zqwzX5vOG.ttf", - "italic": "http://fonts.gstatic.com/s/zenloop/v7/h0GtssK16UsnJwHsEJ9xoQj14-OGJ0w.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zenloop/v7/h0GrssK16UsnJwHsEJ9yoQg.ttf" - }, - { - "family": "Zen Maru Gothic", - "variants": [ "300", "regular", "500", "700", "900" ], - "subsets": [ - "cyrillic", - "greek", - "japanese", - "latin", - "latin-ext" - ], - "version": "v13", - "lastModified": "2023-03-21", - "files": { - "300": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cQWpCPJqa_ajlvw.ttf", - "500": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cGWtCPJqa_ajlvw.ttf", - "700": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cUW1CPJqa_ajlvw.ttf", - "900": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-caW9CPJqa_ajlvw.ttf", - "regular": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0SIpIxzW5b-RxT-6A8jWAtCp-k7UJmNLGG9A.ttf" - }, - "category": "sans-serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0SIpIxzW5b-RxT-6A8jWAtCp-U7Ehi.ttf" - }, - { - "family": "Zen Old Mincho", - "variants": [ "regular", "500", "600", "700", "900" ], - "subsets": [ - "cyrillic", - "greek", - "japanese", - "latin", - "latin-ext" - ], - "version": "v11", - "lastModified": "2023-01-06", - "files": { - "500": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4Dqlla8dMgPgBu.ttf", - "600": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4vrVla8dMgPgBu.ttf", - "700": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5LrFla8dMgPgBu.ttf", - "900": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5zrlla8dMgPgBu.ttf", - "regular": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss0ApVaYytLwxTqcxfMyBveyYb3g31S2s8p.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss0ApVaYytLwxTqcxfMyBveybb2iXk.ttf" - }, - { - "family": "Zen Tokyo Zoo", - "variants": [ "regular" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v7", - "lastModified": "2023-01-06", - "files": { - "regular": "http://fonts.gstatic.com/s/zentokyozoo/v7/NGSyv5ffC0J_BK6aFNtr6sRv8a1uRWe9amg.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zentokyozoo/v7/NGSyv5ffC0J_BK6aFNtr6sRvwaxkQQ.ttf" - }, - { - "family": "Zeyada", - "variants": [ "regular" ], - "subsets": [ "latin" ], - "version": "v15", - "lastModified": "2022-09-22", - "files": { - "regular": "http://fonts.gstatic.com/s/zeyada/v15/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yomogi/v8/VuJwdNrS2ZL7rpoPWIz5NIh-YA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yomogi" + } + ] + }, + { + "name": "Yrsa", + "fontFamily": "Yrsa, serif", + "slug": "yrsa", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCjASNNV9rRPfrKu.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCieSNNV9rRPfrKu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCisSNNV9rRPfrKu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaChAT9NV9rRPfrKu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCh5T9NV9rRPfrKu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCzsW_LBte6KuGEo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC9wR_LBte6KuGEo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Yrsa" + } + ] + }, + { + "name": "Ysabeau", + "fontFamily": "Ysabeau, sans-serif", + "slug": "ysabeau", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCTYwI8Gcw6Oi.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWCDYwI8Gcw6Oi.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7PICDYwI8Gcw6Oi.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCDYwI8Gcw6Oi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OkCDYwI8Gcw6Oi.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NIDzYwI8Gcw6Oi.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NxDzYwI8Gcw6Oi.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWDzYwI8Gcw6Oi.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7M_DzYwI8Gcw6Oi.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95yKcW-xrOiIUw.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS15zKcW-xrOiIUw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS4BzKcW-xrOiIUw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95zKcW-xrOiIUw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS-xzKcW-xrOiIUw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSwB0KcW-xrOiIUw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSzl0KcW-xrOiIUw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS150KcW-xrOiIUw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS3d0KcW-xrOiIUw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + } + ] + }, + { + "name": "Yuji Boku", + "fontFamily": "Yuji Boku, serif", + "slug": "yuji-boku", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yujiboku/v5/P5sAzZybeNzXsA9xj1Fkjb2r2dgvJA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yuji Boku" + } + ] + }, + { + "name": "Yuji Mai", + "fontFamily": "Yuji Mai, serif", + "slug": "yuji-mai", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yujimai/v5/ZgNQjPxdJ7DEHrS0gC38hmHmNpCO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yuji Mai" + } + ] + }, + { + "name": "Yuji Syuku", + "fontFamily": "Yuji Syuku, serif", + "slug": "yuji-syuku", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yujisyuku/v5/BngNUXdTV3vO6Lw5ApOPqPfgwqiA-Rk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yuji Syuku" + } + ] + }, + { + "name": "Yusei Magic", + "fontFamily": "Yusei Magic, sans-serif", + "slug": "yusei-magic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yuseimagic/v12/yYLt0hbAyuCmoo5wlhPkpjHR-tdfcIT_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yusei Magic" + } + ] + }, + { + "name": "ZCOOL KuaiLe", + "fontFamily": "ZCOOL KuaiLe, sans-serif", + "slug": "zcool-kuaile", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zcoolkuaile/v19/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "ZCOOL KuaiLe" + } + ] + }, + { + "name": "ZCOOL QingKe HuangYou", + "fontFamily": "ZCOOL QingKe HuangYou, sans-serif", + "slug": "zcool-qingke-huangyou", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zcoolqingkehuangyou/v15/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "ZCOOL QingKe HuangYou" + } + ] + }, + { + "name": "ZCOOL XiaoWei", + "fontFamily": "ZCOOL XiaoWei, sans-serif", + "slug": "zcool-xiaowei", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zcoolxiaowei/v14/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "ZCOOL XiaoWei" + } + ] + }, + { + "name": "Zen Antique", + "fontFamily": "Zen Antique, serif", + "slug": "zen-antique", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenantique/v12/AYCPpXPnd91Ma_Zf-Ri2JXJq7PKP5Z_G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Antique" + } + ] + }, + { + "name": "Zen Antique Soft", + "fontFamily": "Zen Antique Soft, serif", + "slug": "zen-antique-soft", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenantiquesoft/v12/DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwBmkui5HNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Antique Soft" + } + ] + }, + { + "name": "Zen Dots", + "fontFamily": "Zen Dots, system-ui", + "slug": "zen-dots", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zendots/v10/XRXX3ICfm00IGoesQeaETM_FcCIG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Dots" + } + ] + }, + { + "name": "Zen Kaku Gothic Antique", + "fontFamily": "Zen Kaku Gothic Antique, sans-serif", + "slug": "zen-kaku-gothic-antique", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cM9TarWJtyZyGU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-g3RKjc4d7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22dU9DarWJtyZyGU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cc8jarWJtyZyGU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22ck8DarWJtyZyGU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + } + ] + }, + { + "name": "Zen Kaku Gothic New", + "fontFamily": "Zen Kaku Gothic New, sans-serif", + "slug": "zen-kaku-gothic-new", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqpdKaWTSTGlMyd8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMYW2drQpDw0GjzrVNFf_valaDBcznOkjtiTWz5UGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqs9LaWTSTGlMyd8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqodNaWTSTGlMyd8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqr9PaWTSTGlMyd8.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + } + ] + }, + { + "name": "Zen Kurenaido", + "fontFamily": "Zen Kurenaido, sans-serif", + "slug": "zen-kurenaido", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenkurenaido/v13/3XFsEr0515BK2u6UUptu_gWJZfz22PRLd0U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Kurenaido" + } + ] + }, + { + "name": "Zen Loop", + "fontFamily": "Zen Loop, system-ui", + "slug": "zen-loop", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenloop/v7/h0GrssK16UsnJwHsEK9zqwzX5vOG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Loop" + }, + { + "src": "http://fonts.gstatic.com/s/zenloop/v7/h0GtssK16UsnJwHsEJ9xoQj14-OGJ0w.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Zen Loop" + } + ] + }, + { + "name": "Zen Maru Gothic", + "fontFamily": "Zen Maru Gothic, sans-serif", + "slug": "zen-maru-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cQWpCPJqa_ajlvw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0SIpIxzW5b-RxT-6A8jWAtCp-k7UJmNLGG9A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cGWtCPJqa_ajlvw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cUW1CPJqa_ajlvw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-caW9CPJqa_ajlvw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + } + ] + }, + { + "name": "Zen Old Mincho", + "fontFamily": "Zen Old Mincho, serif", + "slug": "zen-old-mincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss0ApVaYytLwxTqcxfMyBveyYb3g31S2s8p.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4Dqlla8dMgPgBu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4vrVla8dMgPgBu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5LrFla8dMgPgBu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5zrlla8dMgPgBu.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + } + ] + }, + { + "name": "Zen Tokyo Zoo", + "fontFamily": "Zen Tokyo Zoo, system-ui", + "slug": "zen-tokyo-zoo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zentokyozoo/v7/NGSyv5ffC0J_BK6aFNtr6sRv8a1uRWe9amg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Tokyo Zoo" + } + ] + }, + { + "name": "Zeyada", + "fontFamily": "Zeyada, cursive", + "slug": "zeyada", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zeyada/v15/11hAGpPTxVPUbgZzNWyp.ttf" - }, - { - "family": "Zhi Mang Xing", - "variants": [ "regular" ], - "subsets": [ "chinese-simplified", "latin" ], - "version": "v17", - "lastModified": "2022-09-27", - "files": { - "regular": "http://fonts.gstatic.com/s/zhimangxing/v17/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf" - }, + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zeyada/v15/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zeyada" + } + ] + }, + { + "name": "Zhi Mang Xing", + "fontFamily": "Zhi Mang Xing, cursive", + "slug": "zhi-mang-xing", "category": "handwriting", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zhimangxing/v17/f0Xw0ey79sErYFtWQ9a2rq-g4aYneQ.ttf" - }, - { - "family": "Zilla Slab", - "variants": [ - "300", - "300italic", - "regular", - "italic", - "500", - "500italic", - "600", - "600italic", - "700", - "700italic" - ], - "subsets": [ "latin", "latin-ext" ], - "version": "v11", - "lastModified": "2022-09-22", - "files": { - "300": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf", - "500": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf", - "600": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf", - "700": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf", - "300italic": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf", - "regular": "http://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf", - "italic": "http://fonts.gstatic.com/s/zillaslab/v11/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf", - "500italic": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf", - "600italic": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf", - "700italic": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf" - }, - "category": "serif", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFajw6-A.ttf" - }, - { - "family": "Zilla Slab Highlight", - "variants": [ "regular", "700" ], - "subsets": [ "latin", "latin-ext" ], - "version": "v17", - "lastModified": "2022-09-22", - "files": { - "700": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf", - "regular": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf" - }, - "category": "display", - "kind": "webfonts#webfont", - "menu": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxitJaWQ.ttf" + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zhimangxing/v17/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zhi Mang Xing" + } + ] + }, + { + "name": "Zilla Slab", + "fontFamily": "Zilla Slab, serif", + "slug": "zilla-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + } + ] + }, + { + "name": "Zilla Slab Highlight", + "fontFamily": "Zilla Slab Highlight, system-ui", + "slug": "zilla-slab-highlight", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zilla Slab Highlight" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zilla Slab Highlight" + } + ] } + ], + "categories": [ + "sans-serif", + "serif", + "display", + "handwriting", + "monospace" ] } From e076fc5dbb096d60743ccbd36d84f62a21496d5b Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 16 May 2023 13:35:24 -0300 Subject: [PATCH 010/116] More UI Work --- .../components/global-styles/font-families.js | 19 +++--- .../font-library-modal/context.js | 31 ++++++++-- .../font-library-modal/font-card.js | 26 +++++--- .../font-library-modal/font-demo.js | 62 +++++++++++++++++++ .../font-library-modal/font-variant.js | 18 +++--- .../font-library-modal/google-font-card.js | 2 + .../font-library-modal/google-font-details.js | 6 +- .../font-library-modal/google-font-variant.js | 19 ++---- .../font-library-modal/google-fonts.js | 38 +++++------- .../global-styles/font-library-modal/index.js | 9 ++- .../font-library-modal/installed-fonts.js | 18 +----- .../font-library-modal/library-font-card.js | 3 +- .../library-font-variant.js | 4 +- .../font-library-modal/resolvers.js | 4 +- .../global-styles/font-library-modal/utils.js | 15 +++++ 15 files changed, 177 insertions(+), 97 deletions(-) create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js diff --git a/packages/edit-site/src/components/global-styles/font-families.js b/packages/edit-site/src/components/global-styles/font-families.js index 6ba86f2474562..835b64b8845ad 100644 --- a/packages/edit-site/src/components/global-styles/font-families.js +++ b/packages/edit-site/src/components/global-styles/font-families.js @@ -28,16 +28,16 @@ const { useGlobalSetting } = unlock( blockEditorPrivateApis ); function FontFamiliesMenu ({ onToggle, toggleFontLibrary }) { - const displayFontLibrary = () => { + const displayFontLibrary = ( tabName ) => { onToggle(); // Close the dropdown - toggleFontLibrary(); // Open the modal + toggleFontLibrary( tabName ); // Open the modal }; return ( - { __( 'Manage Font Library' ) } - { __( 'Install Google Fonts' ) } - { __( 'Install Local Fonts' ) } + displayFontLibrary( 'installed-fonts' ) }>{ __( 'Manage Font Library' ) } + displayFontLibrary( 'google-fonts' ) }>{ __( 'Install Google Fonts' ) } + displayFontLibrary( 'local-fonts' ) }>{ __( 'Install Local Fonts' ) } ) } @@ -49,17 +49,18 @@ function FontFamilies() { ? fontFamilies?.custom : fontFamilies?.theme || []; - const [ isFontLibraryModalOpen, setIsFontLibraryModalOpen ] = useState( false ); + const [ tabOpen, setTabOpen ] = useState( null ); - const toggleFontLibrary = () => { - setIsFontLibraryModalOpen( !isFontLibraryModalOpen ); + const toggleFontLibrary = ( tabName ) => { + setTabOpen( !!tabOpen ? null : tabName ); }; return ( <> - { isFontLibraryModalOpen && ( + { !!tabOpen && ( )} diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 381d8bf0fd863..02ba68f047ba4 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -43,16 +43,18 @@ function FontLibraryProvider( { children } ) { // Google Fonts const [ googleFonts, setGoogleFonts ] = useState( [] ); const [ googleFontsCategories, setGoogleFontsCategories ] = useState( [] ); - + // Demo + const loadedFontUrls = new Set(); const [ demoText, setDemoText ] = useState( DEMO_TEXT ); useEffect( () => { getFontLibrary().then( ( response ) => { setLibraryFonts( response ); } ); - getGoogleFonts().then( ( { items, categories } ) => { - setGoogleFonts( items ); + getGoogleFonts().then( ( { fontFamilies, categories } ) => { + setGoogleFonts( fontFamilies ); + console.log("googleFonts", fontFamilies, "categories", categories); setGoogleFontsCategories( categories ); } ); }, [] ); @@ -74,10 +76,8 @@ function FontLibraryProvider( { children } ) { return [ ...libraryFonts, newFontFamily ]; } - async function updateLibrary ( newLibrary ) { const newFontFamilies = await updateFontsLibrary( newLibrary ); - console.log( 'newFontFamilies', newFontFamilies ); setLibraryFonts( newFontFamilies ); } @@ -130,6 +130,24 @@ function FontLibraryProvider( { children } ) { } ); } + // Load a font asset from a url + const loadFontFaceAsset = async ( fontFace ) => { + const src = Array.isArray( fontFace.src ) ? fontFace.src[ 0 ] : fontFace.src; + + if ( loadedFontUrls.has( src ) ) { + return; + } + + const newFont = new FontFace( fontFace.fontFamily, `url( ${ src } )`, { + style: fontFace.fontStyle, + weight: fontFace.fontWeight, + } ); + + const loadedFace = await newFont.load(); + loadedFontUrls.add( src ); + document.fonts.add( loadedFace ); + } + return ( face.fontStyle === 'normal' && face.fontWeight === '400') || font.fontFace[0] + : fakeFontFace; + + const variantsCount = font.fontFace?.length || 1; + return (
- + { font.name } { !!actionHandler && (actionHandler) } - {font.variantsCount} { _n( "variant", "variants", font.variantsCount ) } - { DEMO_TEXT } + {variantsCount} { _n( "variant", "variants", variantsCount ) } + diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js new file mode 100644 index 0000000000000..96bc29e15a7b8 --- /dev/null +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js @@ -0,0 +1,62 @@ +/** + * WordPress dependencies + */ +import { __ } from '@wordpress/i18n'; +import { + __experimentalText as Text, +} from '@wordpress/components'; +import { useContext, useEffect, useState, useRef } from '@wordpress/element'; + + +/** + * Internal dependencies + */ +import { FontLibraryContext } from './context'; + + +function FontFaceDemo ( { fontFace, style={} } ) { + + console.log("fontFace::::", fontFace); + const ref = useRef(null); + const [isIntersecting, setIsIntersecting] = useState(false); + const [ isAssetLoaded, setIsAssetLoaded ] = useState( false ); + const { demoText, loadFontFaceAsset } = useContext( FontLibraryContext ); + const { fontFamily, fontStyle, fontWeight } = fontFace; + + const demoStyle = { + fontWeight, + fontStyle, + fontFamily, + fontSize: 'large', + opacity: isAssetLoaded ? '1' : '0', + transition: 'opacity 0.3s ease-in-out', + ...style, + }; + + useEffect(() => { + const observer = new IntersectionObserver( + ( [ entry ] ) => { + setIsIntersecting( entry.isIntersecting ); + }, + { } + ); + observer.observe(ref.current); + return () => observer.disconnect(); + }, [ref]); + + useEffect( () => { + const loadAsset = async () => { + if ( isIntersecting ) { + await loadFontFaceAsset( fontFace ); + setIsAssetLoaded( true ); + } + } + loadAsset(); + }, [ fontFace, isIntersecting ] ); + + return ( + { demoText } + ); +} + +export default FontFaceDemo; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js index 429858c5f0c11..6cd283b4875cc 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js @@ -9,25 +9,27 @@ import { __experimentalHStack as HStack, CheckboxControl, } from '@wordpress/components'; -import { useContext } from '@wordpress/element'; +import { useContext, useEffect, useState } from '@wordpress/element'; + /** * Internal dependencies */ import { FontLibraryContext } from './context'; +import FontFaceDemo from './font-demo'; -function FontVariant ( { variantName, checked, onClick } ) { - - const { demoText } = useContext( FontLibraryContext ); +function FontVariant ( { fontFace, variantName, checked, onClick } ) { + const { fontStyle, fontWeight } = fontFace; + const displayVariantName = variantName || `${fontWeight} ${fontStyle}`; return (
- - - {variantName} + + + { displayVariantName } - { demoText } +
diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js index 5459545ea1fb8..d1feabad49412 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js @@ -22,6 +22,7 @@ function GoogleFontCard ( { font, onClick } ) { addToLibrary, updateLibrary, installedFontNames, + demoText, } = useContext( FontLibraryContext ); const handleDonwloadFont = async ( event, name ) => { @@ -37,6 +38,7 @@ function GoogleFontCard ( { font, onClick } ) { return ( onClick( font.name ) } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-details.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-details.js index 7607d3ee8f7a9..df62039707b5e 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-details.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-details.js @@ -17,11 +17,11 @@ function GoolgeFontDetails ({ font }) { <> - { font.variants.map( ( variantName ) => ( + { font.fontFace.map( ( face, i ) => ( ) ) } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-variant.js index 5e21981ca21ce..0895fb362d067 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-variant.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-variant.js @@ -7,34 +7,25 @@ import { useContext } from '@wordpress/element'; /** * Internal dependencies */ -import { - googleVariantToFullVariant, -} from './utils'; import { FontLibraryContext } from './context'; -import { getWeightFromGoogleVariant, getStyleFromGoogleVariant } from './utils'; import FontVariant from './font-variant'; -function GoogleFontVariant ({ font, variantName }) { - +function GoogleFontVariant ({ font, fontFace }) { const { installedFontNames, libraryFonts } = useContext( FontLibraryContext ); - const style = getStyleFromGoogleVariant( variantName ); - const weight = getWeightFromGoogleVariant( variantName ); - const displayVariantName = googleVariantToFullVariant( variantName ); - const isIstalled = () => { - const isFontInstalled = installedFontNames.has( font.family ); + const isFontInstalled = installedFontNames.has( font.name ); if ( ! isFontInstalled ) { return false; } - const libraryFont = libraryFonts.find(libFont => libFont.name === font.family || libFont.name === font.family ); - return !!libraryFont?.fontFace.find( face => face.fontStyle === style && face.fontWeight === weight ); + const libraryFont = libraryFonts.find( libFont => libFont.name === font.family || libFont.name === font.family ); + return !!libraryFont?.fontFace.find( face => face.fontStyle === fontFace.fontStyle && face.fontWeight === fontFace.fontWeight ); } return ( ); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index 778c169853ffa..14c29cfc4a434 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -19,14 +19,10 @@ import { */ import TabLayout from './tab-layout'; import FontsGrid from './fonts-grid'; -import { DEMO_TEXT } from './constants'; -import { - googleFontToCardFont, - googleVariantToFullVariant, -} from './utils'; import { FontLibraryContext } from './context'; import GoogleFontCard from './google-font-card'; import GoolgeFontDetails from './google-font-details'; +import { useEffect } from 'react'; function GoogleFonts() { const { @@ -34,12 +30,16 @@ function GoogleFonts() { googleFontsCategories, } = useContext( FontLibraryContext ); const [ fontSelected, setFontSelected ] = useState( null ); - const [ filters, setFilters ] = useState( { - category: googleFontsCategories[ 0 ], - } ); + const [ filters, setFilters ] = useState( {} ); + + useEffect( () => { + if ( googleFontsCategories.length > 0 ) { + setFilters( { category: googleFontsCategories[ 0 ] } ); + } + }, [ googleFontsCategories ] ); const handleSelectFont = ( name ) => { - const font = googleFonts.find( ( font ) => font.family === name ); + const font = googleFonts.find( font => font.name === name ); setFontSelected( font ); }; @@ -47,21 +47,15 @@ function GoogleFonts() { setFontSelected( null ); }; - const fonts = useMemo( - () => - googleFonts.reduce( ( acc, font ) => { + const fonts = googleFonts.reduce( ( acc, font ) => { if ( filters.category === font.category ) { - acc.push( googleFontToCardFont( font ) ); + return [...acc, font]; } return acc; - }, [] ), - [ googleFonts, filters ] - ); - - // console.log( 'filtered fonts', fonts, filters ); + }, [] ); const tabDescription = fontSelected - ? __( `Select ${ fontSelected.family } variants you want to install` ) + ? __( `Select ${ fontSelected.name } variants you want to install` ) : __( 'Select a font to install' ); const handleCategoryFilter = ( category ) => { @@ -70,14 +64,14 @@ function GoogleFonts() { return ( { fonts.length === 0 && ( - + { __( 'Loading fonts...' ) } @@ -104,7 +98,7 @@ function GoogleFonts() { { fonts.map( ( font ) => ( diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/index.js b/packages/edit-site/src/components/global-styles/font-library-modal/index.js index 8e5e4a63694ed..c0d96685f25b8 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/index.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/index.js @@ -34,10 +34,6 @@ function FontLibraryModal( { onRequestClose, initialTabName = "installed-fonts" > { ( tab ) => { switch ( tab.name ) { - case 'installed-fonts': - return ( - - ); case 'google-fonts': return ( @@ -46,8 +42,11 @@ function FontLibraryModal( { onRequestClose, initialTabName = "installed-fonts" return ( ); + case 'installed-fonts': default: - return null; + return ( + + ); } } } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index d1369fd30f0fe..bd4a6dad9f47c 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -25,15 +25,6 @@ function InstalledFonts () { const { installedFonts } = useContext( FontLibraryContext ); const [ fontSelected, setFontSelected ] = useState( null ); - // const fonts = [ - // ...libraryFonts.map( family => fontFamilyToCardFont( family, false ) ), - // ...themeFonts.map( family => fontFamilyToCardFont( family, true ) ), - // ].sort( ( a, b ) => a.name.localeCompare( b.name ) ); - const fonts = useMemo( - () => installedFonts.map( fontFamilyToCardFont ), - [ installedFonts ] - ); - const handleUnselectFont = () => { setFontSelected( null ); }; @@ -51,14 +42,7 @@ function InstalledFonts () { > {!fontSelected && ( - {fonts.map( font => ( - { handleSelectFont( font.name ) } } - /> - ) )} - {fonts.map( font => ( + {installedFonts.map( font => ( family.name === font.name ); const handleToggleFontActivation = () => { @@ -25,6 +25,7 @@ function LibraryFontCard ({ font, onClick }) { { onClick( font.name ) } } font={ font } + demoText={ demoText } actionHandler={ { const activeFont = customFonts.find( family => family.name === font.name ); if ( ! activeFont ) { @@ -27,7 +25,7 @@ function LibraryFontVariant ({ face, font }) { return ( toggleActivateFont( font.name, face.fontStyle, face.fontWeight ) } /> diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js b/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js index 4372ad560b7ae..18a041c8c278c 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js @@ -17,9 +17,9 @@ export async function getGoogleFonts() { const config = { path: '/wp/v2/fonts_library/google_fonts', }; - const { items, categories } = await apiFetch( config ); + const { fontFamilies, categories } = await apiFetch( config ); return { - items, + fontFamilies, categories, }; } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/utils.js b/packages/edit-site/src/components/global-styles/font-library-modal/utils.js index da60de8460404..a16c6fce2a8b0 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/utils.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/utils.js @@ -88,3 +88,18 @@ export function fontFamilyFromGoogleFont ( googleFont, variantsSelected=[] ) { }; return fontFamily; } + +export function getFontFamilyFromGoogleFont ( font ) { + return { + name: font.family, + fontFamily: `${font.family}, ${ getFallbackForGoogleFont( font.category ) }`, + slug: font.family.replace( /\s+/g, '-' ).toLowerCase(), + fontFace: font.variants.map( variant => ( + { + src: font.files?.[ variant ], + fontWeight: getWeightFromGoogleVariant( variant ), + fontStyle: getStyleFromGoogleVariant( variant ), + } + ) ), + }; +} \ No newline at end of file From f8f736df37bed0132cc04a55a2838541690f7986 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 16 May 2023 15:38:35 -0300 Subject: [PATCH 011/116] More UI Work --- .../global-styles/font-library-modal/font-card.js | 2 +- .../global-styles/font-library-modal/font-demo.js | 4 +++- .../font-library-modal/installed-fonts.js | 13 +++++++------ .../font-library-modal/library-font-details.js | 10 ++++++---- 4 files changed, 17 insertions(+), 12 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js index e93d33261bf10..5bb326aab01b2 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js @@ -23,7 +23,7 @@ function FontCard ( { font, onClick, actionHandler, demoText } ) { const fakeFontFace = { fontStyle: 'normal', fontWeight: '400', - fontFamily: font.name, + fontFamily: font.fontFamily, }; const displayFontFace = (font.fontFace && font.fontFace.length) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js index 96bc29e15a7b8..365fa9f8021b7 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js @@ -47,7 +47,9 @@ function FontFaceDemo ( { fontFace, style={} } ) { useEffect( () => { const loadAsset = async () => { if ( isIntersecting ) { - await loadFontFaceAsset( fontFace ); + if ( fontFace.src ) { + await loadFontFaceAsset( fontFace ); + } setIsAssetLoaded( true ); } } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index bd4a6dad9f47c..1d4681934accb 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -14,7 +14,6 @@ import { */ import TabLayout from './tab-layout'; import { FontLibraryContext } from './context'; -import { fontFamilyToCardFont } from './utils'; import FontsGrid from './fonts-grid'; import LibraryFontCard from './library-font-card'; import LibraryFontDetails from './library-font-details'; @@ -29,13 +28,13 @@ function InstalledFonts () { setFontSelected( null ); }; - const handleSelectFont = ( name ) => { - setFontSelected( name ); + const handleSelectFont = ( font ) => { + setFontSelected( font ); }; return ( } @@ -46,14 +45,16 @@ function InstalledFonts () { { handleSelectFont( font.name ) } } + onClick={ () => { handleSelectFont( font ) } } /> ) )} )} {fontSelected && ( - + )} diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js index c6fe3e0fd3e42..d48ec2261c2ac 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js @@ -18,15 +18,17 @@ import { FontLibraryContext } from './context'; import LibraryFontVariant from './library-font-variant'; -function LibraryFontDetails ({ fontName }) { - const { installedFonts } = useContext( FontLibraryContext ); - const font = installedFonts.find( family => family.name === fontName ); +function LibraryFontDetails ({ font }) { + + const fontFaces = ( font.fontFace && font.fontFace.length ) + ? font.fontFace + : [ { fontFamily: font.name, fontStyle: 'normal', fontWeight: 'normal' } ]; return ( <> - { font.fontFace.map( ( face, i ) => ( + { fontFaces.map( ( face, i ) => ( Date: Wed, 17 May 2023 13:26:37 -0300 Subject: [PATCH 012/116] implementing toggleInstallFont and installedFontsOutline --- .../font-library-modal/context.js | 129 +++++++++++++----- 1 file changed, 98 insertions(+), 31 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 02ba68f047ba4..f3853c8a21f7b 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -12,6 +12,7 @@ import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor'; import { getFontLibrary, getGoogleFonts, updateFontsLibrary } from './resolvers'; import { unlock } from '../../../private-apis'; import { DEMO_TEXT } from './constants'; +import { use } from '@wordpress/data'; const { useGlobalSetting } = unlock( blockEditorPrivateApis ); export const FontLibraryContext = createContext( {} ); @@ -23,15 +24,6 @@ function FontLibraryProvider( { children } ) { const themeFonts = fontFamilies.theme || []; const customFonts = fontFamilies.custom || []; - // // Fonts added by theme - // const [ { theme: themeFonts = [] } = baseFonts ] = useGlobalSetting( 'typography.fontFamilies', null, 'base' ); - // // Active fonts ( global styles ) - // const [ { custom: customFonts = [] } = baseFonts, setCustomFonts ] = useGlobalSetting( 'typography.fontFamilies', null, 'user' ); - - console.log("fontFamilies", fontFamilies); - console.log("themeFonts", themeFonts); - console.log("customFonts", customFonts); - // Library Fonts const [ libraryFonts, setLibraryFonts ] = useState( [] ); @@ -54,32 +46,109 @@ function FontLibraryProvider( { children } ) { } ); getGoogleFonts().then( ( { fontFamilies, categories } ) => { setGoogleFonts( fontFamilies ); - console.log("googleFonts", fontFamilies, "categories", categories); setGoogleFontsCategories( categories ); } ); }, [] ); - // Set used to check if a font is already installed on the Google Fonts Tab of the modal - const installedFontNames = useMemo( () => { - const names = new Set(); - themeFonts.forEach( ( font ) => { - if ( font.name || font.fontFamily ) names.add( font.name || font.fontFamily ); - } ); - libraryFonts.forEach( ( font ) => { - if ( font.name || font.fontFamily ) names.add( font.name || font.fontFamily ); - } ); - return names; - }, [ themeFonts, libraryFonts ] ); + const getAvailableFontsOutline = ( fontFamilies ) => { + const outline = fontFamilies.reduce( ( acc, font ) => { + if ( !font.shouldBeRemoved ) { + const availableFontFaces = (font?.fontFace || []).reduce( (faces, face) => ( + !face.shouldBeRemoved ? [...faces, face.fontStyle + face.fontWeight] : faces + ), [] ); + if ( availableFontFaces.length ) { + acc[ font.name ] = availableFontFaces; + } + } + return acc; + } + , {} ); + return outline; + } + const installedFontsOutline = useMemo( () => { + return getAvailableFontsOutline( installedFonts ); + }, [ installedFonts ] ); + + const isFontInstalled = ( name, style, weight ) => { + if (!style && !weight) { + return !!installedFontsOutline[ name ]; + } + return installedFontsOutline[ name ]?.includes( style + weight ); + } - const addToLibrary = ( newFontFamily ) => { - return [ ...libraryFonts, newFontFamily ]; + async function updateLibrary () { + const newLibraryFonts = await updateFontsLibrary( libraryFonts ); + setLibraryFonts( newLibraryFonts ); + } + + const toggleInstallFont = ( name, fontFace ) => { + console.log("libraryFonts", libraryFonts); + const libraryFont = libraryFonts.find( ( font ) => font.name === name ); + const font = googleFonts.find( ( font ) => font.name === name ); + let newLibraryFonts; + let newFontFaces; + + if ( !fontFace ) { // Entire font family + if ( libraryFont ){ // If the font is already installed + newLibraryFonts = libraryFonts.map( font => { + if ( font.name === name ) { + // This logic handles several sucesive install/remove calls for a font family in the client + const { shouldBeRemoved, fontFace: familyFaces, ...restFont } = font; + const newFont = { + ...restFont, + fontFace: familyFaces.map( face => { + const { shouldBeRemoved, ...restFace } = face; + return { ...restFace, ...(!shouldBeRemoved ? { shouldBeRemoved: true } : {}) }; + } ), + ...(!shouldBeRemoved ? { shouldBeRemoved: true } : {}), + }; + return newFont; + } + return font; + }); + } else { // If the font is not installed + newLibraryFonts = [ ...libraryFonts, font ]; + } + + } else { // Single font variant + const libraryFontFace = (libraryFont?.fontFace || []).find( ( face ) => face.fontStyle === fontFace.fontStyle && face.fontWeight === fontFace.fontWeight ); + + if ( !libraryFont ) { // If the font is not installed the fontface should be missing so we add it to the library + newLibraryFonts = [ ...libraryFonts, { ...font, fontFace: [ fontFace ] } ]; + } else { + //If the font is already installed the fontface the font face could be installed or not + if ( libraryFontFace ) { + const { shouldBeRemoved, ...restFontFace } = libraryFontFace; + newFontFaces = libraryFont.fontFace.map( face => ( + face.fontStyle === fontFace.fontStyle && face.fontWeight === fontFace.fontWeight + ? { ...restFontFace, ...(!shouldBeRemoved ? { shouldBeRemoved: true } : {}) } + : face + )); + } else { + newFontFaces = [ ...libraryFont.fontFace, fontFace ]; + } + // Update the font face of a existing font + newLibraryFonts = libraryFonts.map( font => { + if ( font.name === name ) { + const { shouldBeRemoved, ...restFont } = font; + return { + ...restFont, + fontFace: newFontFaces, + ...(!shouldBeRemoved ? { shouldBeRemoved: true } : {}) + }; + } + return font; + }); + + } + + } + console.log("newLibraryFonts", newLibraryFonts); + setLibraryFonts( newLibraryFonts ); } - async function updateLibrary ( newLibrary ) { - const newFontFamilies = await updateFontsLibrary( newLibrary ); - setLibraryFonts( newFontFamilies ); - } + const toggleActivateFont = ( name, style, weight ) => { console.log("toggleActivateFont", name, style, weight); @@ -121,9 +190,7 @@ function FontLibraryProvider( { children } ) { // set the newFontFaces in the newCustomFonts newCustomFonts = customFonts.map( font => font.name === name ? { ...font, fontFace: newFontFaces } : font); } - - console.log("toggleActivateFont", newCustomFonts); setFontFamilies( { theme: themeFonts, custom: newCustomFonts, @@ -156,13 +223,13 @@ function FontLibraryProvider( { children } ) { customFonts, libraryFonts, installedFonts, - installedFontNames, + isFontInstalled, googleFonts, googleFontsCategories, loadFontFaceAsset, - addToLibrary, updateLibrary, toggleActivateFont, + toggleInstallFont, } } > { children } From 5f1b2489804581837cb1e331dbe7b14111ec44e6 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 17 May 2023 13:27:56 -0300 Subject: [PATCH 013/116] UI implementation work --- .../font-library-modal/font-card.js | 17 +++-- .../font-library-modal/font-demo.js | 2 - .../font-library-modal/google-font-card.js | 64 ++++++++++--------- .../font-library-modal/google-font-details.js | 1 + .../font-library-modal/google-font-variant.js | 17 ++--- .../font-library-modal/google-fonts.js | 36 +++++++++++ .../font-library-modal/library-font-card.js | 30 +++++---- .../library-font-details.js | 34 ++++++---- .../library-font-variant.js | 3 + .../font-library-modal/style.scss | 8 +++ 10 files changed, 141 insertions(+), 71 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js index 5bb326aab01b2..16d412db47421 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js @@ -18,7 +18,7 @@ import FontFaceDemo from "./font-demo"; -function FontCard ( { font, onClick, actionHandler, demoText } ) { +function FontCard ( { font, onClick, actionHandler } ) { const fakeFontFace = { fontStyle: 'normal', @@ -31,17 +31,24 @@ function FontCard ( { font, onClick, actionHandler, demoText } ) { : fakeFontFace; const variantsCount = font.fontFace?.length || 1; + + const style = { + cursor: !!onClick ? 'pointer' : 'default', + opacity: !!font.shouldBeRemoved ? 0.5 : 1, + }; return ( -
+
- + - { font.name } + + { font.name } + {variantsCount} { _n( "variant", "variants", variantsCount ) } + { !!actionHandler && (actionHandler) } - {variantsCount} { _n( "variant", "variants", variantsCount ) } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js index 365fa9f8021b7..5a5e204f92184 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js @@ -15,8 +15,6 @@ import { FontLibraryContext } from './context'; function FontFaceDemo ( { fontFace, style={} } ) { - - console.log("fontFace::::", fontFace); const ref = useRef(null); const [isIntersecting, setIsIntersecting] = useState(false); const [ isAssetLoaded, setIsAssetLoaded ] = useState( false ); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js index d1feabad49412..bc0750585e19b 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js @@ -4,6 +4,7 @@ import { __ } from '@wordpress/i18n'; import { Button, + CheckboxControl, } from '@wordpress/components'; import { download, check } from '@wordpress/icons'; import { useContext } from '@wordpress/element'; @@ -13,27 +14,40 @@ import { useContext } from '@wordpress/element'; */ import { FontLibraryContext } from './context'; import FontCard from './font-card'; -import { fontFamilyFromGoogleFont } from './utils'; function GoogleFontCard ( { font, onClick } ) { const { - googleFonts, - addToLibrary, - updateLibrary, - installedFontNames, + isFontInstalled, demoText, + toggleInstallFont, } = useContext( FontLibraryContext ); - const handleDonwloadFont = async ( event, name ) => { - event.stopPropagation(); - const googleFont = googleFonts.find( ( font ) => font.family === name ); - const fontFamily = fontFamilyFromGoogleFont( googleFont ); - const newLibrary = addToLibrary( fontFamily ); - updateLibrary(newLibrary); - }; + const isInstalled = isFontInstalled( font.name ); - const isInstalled = installedFontNames.has(font.name) || installedFontNames.has(font.fontFamily); + const handleClick = ( event, fontName ) => { + event.stopPropagation(); + toggleInstallFont( fontName ); + }; + + + const alternativeButtton = !isInstalled + ? ( + + + ); + } + return ( } > diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js index 2e9060351d74e..1bd3f2fe8df38 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js @@ -13,26 +13,34 @@ import { FontLibraryContext } from './context'; function LibraryFontCard ({ font, onClick }) { - const { customFonts, toggleActivateFont, demoText } = useContext( FontLibraryContext ); + const { customFonts, toggleActivateFont } = useContext( FontLibraryContext ); const isActive = !!customFonts.find( family => family.name === font.name ); const handleToggleFontActivation = () => { - console.log("handleActivateFont"); toggleActivateFont( font.name ); } + const handleClick = font.shouldBeRemoved + ? null + : () => { onClick( font.name ) }; + + const actionHandler = ( + font.shouldBeRemoved + ? null + : ( + e.stopPropagation() } + onChange={ handleToggleFontActivation } + /> + ) + ); + return ( { onClick( font.name ) } } + onClick={ handleClick } font={ font } - demoText={ demoText } - actionHandler={ - e.stopPropagation() } - onChange={ handleToggleFontActivation } - /> - } + actionHandler={ actionHandler } /> ); } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js index d48ec2261c2ac..74b66f80e50fa 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js @@ -8,6 +8,8 @@ import { __experimentalHStack as HStack, __experimentalVStack as VStack, __experimentalSpacer as Spacer, + __experimentalHeading as Heading, + __experimentalText as Text, } from '@wordpress/components'; @@ -20,22 +22,32 @@ import LibraryFontVariant from './library-font-variant'; function LibraryFontDetails ({ font }) { + const { toggleInstallFont } = useContext( FontLibraryContext ); + const fontFaces = ( font.fontFace && font.fontFace.length ) ? font.fontFace : [ { fontFamily: font.name, fontStyle: 'normal', fontWeight: 'normal' } ]; return ( - <> - - - { fontFaces.map( ( face, i ) => ( - - ) ) } - + <> + + + + + { fontFaces.map( ( face, i ) => ( + + ) ) } + + + + + + + ); } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js index b2af0b3aa7300..6060e3e2a7a42 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js @@ -16,6 +16,9 @@ function LibraryFontVariant ({ face, font }) { const { customFonts, toggleActivateFont } = useContext( FontLibraryContext ); const isIstalled = () => { + if ( font.shouldBeRemoved ) { + return false; + } const activeFont = customFonts.find( family => family.name === font.name ); if ( ! activeFont ) { return false; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss index 6892f7874abae..6a5b44dd18b32 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss +++ b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss @@ -7,3 +7,11 @@ width: 100%; background-color: #fff; } + +.font-library-modal__font-card__name { + font-weight: bold; +} + +.font-library-modal__font-card__count { + color: #6e6e6e; +} From fffbfa0c197428dbed5293a4b5905d34e66fb1b2 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 17 May 2023 14:38:54 -0300 Subject: [PATCH 014/116] google fonts search --- .../font-library-modal/context.js | 7 +- .../font-library-modal/google-fonts.js | 112 ++++++++++++------ 2 files changed, 79 insertions(+), 40 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index f3853c8a21f7b..0199aaa1abdf7 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -12,7 +12,6 @@ import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor'; import { getFontLibrary, getGoogleFonts, updateFontsLibrary } from './resolvers'; import { unlock } from '../../../private-apis'; import { DEMO_TEXT } from './constants'; -import { use } from '@wordpress/data'; const { useGlobalSetting } = unlock( blockEditorPrivateApis ); export const FontLibraryContext = createContext( {} ); @@ -33,8 +32,8 @@ function FontLibraryProvider( { children } ) { ), [ themeFonts, libraryFonts ] ); // Google Fonts - const [ googleFonts, setGoogleFonts ] = useState( [] ); - const [ googleFontsCategories, setGoogleFontsCategories ] = useState( [] ); + const [ googleFonts, setGoogleFonts ] = useState( null ); + const [ googleFontsCategories, setGoogleFontsCategories ] = useState( null ); // Demo const loadedFontUrls = new Set(); @@ -46,7 +45,7 @@ function FontLibraryProvider( { children } ) { } ); getGoogleFonts().then( ( { fontFamilies, categories } ) => { setGoogleFonts( fontFamilies ); - setGoogleFontsCategories( categories ); + setGoogleFontsCategories( ['all', ...categories] ); } ); }, [] ); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index 88e916a45203a..3700ae2bf2b98 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -11,8 +11,10 @@ import { __experimentalHStack as HStack, __experimentalSpacer as Spacer, CheckboxControl, + __experimentalInputControl as InputControl, Button, } from '@wordpress/components'; +import { debounce } from '@wordpress/compose'; /** * Internal dependencies @@ -24,6 +26,25 @@ import GoogleFontCard from './google-font-card'; import GoolgeFontDetails from './google-font-details'; import { useEffect } from 'react'; +const filterFonts = ( fonts, filters ) => { + const { category, search } = filters; + let filteredFonts = fonts || []; + + if ( category && category !== 'all' ) { + filteredFonts = filteredFonts.filter( ( font ) => + font.category === category + ); + } + + if ( search ) { + filteredFonts = filteredFonts.filter( ( font ) => + font.name.toLowerCase().includes( search.toLowerCase() ) + ); + } + + return filteredFonts.slice(0,96); +} + function GoogleFonts() { const { libraryFonts, @@ -33,6 +54,7 @@ function GoogleFonts() { } = useContext( FontLibraryContext ); const [ fontSelected, setFontSelected ] = useState( null ); const [ filters, setFilters ] = useState( {} ); + const [ initialLibraryFonts, setInitialLibraryFonts ] = useState( [] ); const [ hasChanges,setHasChanges ] = useState( false ); @@ -52,7 +74,7 @@ function GoogleFonts() { }, [ libraryFonts ] ); useEffect( () => { - if ( googleFontsCategories.length > 0 ) { + if ( googleFontsCategories && googleFontsCategories.length > 0 ) { setFilters( { category: googleFontsCategories[ 0 ] } ); } }, [ googleFontsCategories ] ); @@ -66,12 +88,14 @@ function GoogleFonts() { setFontSelected( null ); }; - const fonts = googleFonts.reduce( ( acc, font ) => { - if ( filters.category === font.category ) { - return [...acc, font]; - } - return acc; - }, [] ); + const handleUpdateSearchInput = ( value ) => { + setFilters( { ...filters, search: value } ); + }; + const debouncedUpdateSearchInput = debounce( handleUpdateSearchInput, 300 ); + + const fonts = useMemo( () => filterFonts( googleFonts, filters ), + [googleFonts, filters] + ); const tabDescription = fontSelected ? __( `Select ${ fontSelected.name } variants you want to install` ) @@ -104,43 +128,59 @@ function GoogleFonts() { handleBack={ !! fontSelected && handleUnselectFont } footer={
} > - - - { fonts.length === 0 && ( + { fonts === null && ( { __( 'Loading fonts...' ) } ) } - { fonts.length > 0 && ( + { fonts && fonts.length >= 0 && ( + <> + + + + + + { __( 'Categories:' ) } + { googleFontsCategories && googleFontsCategories.map( ( category ) => ( + + ) ) } + + + + + + )} + + { fonts && fonts.length === 0 && ( + + { __( 'No fonts found try another search term' ) } + + )} + + { fonts && fonts.length > 0 && ( <> { ! fontSelected && ( - <> - - { __( 'Categories:' ) } - { googleFontsCategories.map( ( category ) => ( - - ) ) } - - - - - - { fonts.map( ( font ) => ( - - ) ) } - - + + { fonts.map( ( font ) => ( + + ) ) } + ) } { fontSelected && ( From 052f54ce606fd033e610ae08a1498bdaf4c4255b Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 17 May 2023 15:08:09 -0300 Subject: [PATCH 015/116] font variant styles --- .../global-styles/font-library-modal/font-variant.js | 9 ++++----- .../global-styles/font-library-modal/style.scss | 5 +++++ 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js index 6cd283b4875cc..a5d0f4f696de6 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js @@ -23,17 +23,16 @@ function FontVariant ( { fontFace, variantName, checked, onClick } ) { const displayVariantName = variantName || `${fontWeight} ${fontStyle}`; return ( -
- - +
+ + { displayVariantName }
- - ) + ); } export default FontVariant; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss index 6a5b44dd18b32..09ca3f743e8ac 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss +++ b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss @@ -15,3 +15,8 @@ .font-library-modal__font-card__count { color: #6e6e6e; } + +.font-library-modal__font-variant { + border-bottom: 1px solid #e5e5e5; + padding-bottom: 1rem; +} From e12f9d183c73155fed3cf6920bf04f91da8195f9 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 17 May 2023 15:08:27 -0300 Subject: [PATCH 016/116] select control for categories --- .../font-library-modal/google-fonts.js | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index 3700ae2bf2b98..41e6d6f8186a0 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -13,6 +13,7 @@ import { CheckboxControl, __experimentalInputControl as InputControl, Button, + SelectControl, } from '@wordpress/components'; import { debounce } from '@wordpress/compose'; @@ -135,7 +136,7 @@ function GoogleFonts() {
) } - { fonts && fonts.length >= 0 && ( + { ( fonts && fonts.length >= 0 && !fontSelected ) && ( <> @@ -145,17 +146,17 @@ function GoogleFonts() { label={ __( 'Search' ) } onChange={ debouncedUpdateSearchInput } /> - - - { __( 'Categories:' ) } - { googleFontsCategories && googleFontsCategories.map( ( category ) => ( - - ) ) } + + { googleFontsCategories && googleFontsCategories.map( ( category ) => ( + + ) ) } + From 919927e2e0f80f83b2f01f0d31e74f2cc2aeb8ad Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 17 May 2023 15:40:55 -0300 Subject: [PATCH 017/116] discard font library changes when switching tabs in the font library modal --- .../font-library-modal/context.js | 9 ++- .../global-styles/font-library-modal/index.js | 76 +++++++++++-------- 2 files changed, 52 insertions(+), 33 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 0199aaa1abdf7..77f43c2d859bb 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -25,6 +25,7 @@ function FontLibraryProvider( { children } ) { // Library Fonts const [ libraryFonts, setLibraryFonts ] = useState( [] ); + const [ libraryFontsBackup, setLibraryFontsBackup ] = useState( [] ); // Installed fonts const installedFonts = useMemo( () => ( @@ -42,6 +43,7 @@ function FontLibraryProvider( { children } ) { useEffect( () => { getFontLibrary().then( ( response ) => { setLibraryFonts( response ); + setLibraryFontsBackup( response ); } ); getGoogleFonts().then( ( { fontFamilies, categories } ) => { setGoogleFonts( fontFamilies ); @@ -79,8 +81,13 @@ function FontLibraryProvider( { children } ) { async function updateLibrary () { const newLibraryFonts = await updateFontsLibrary( libraryFonts ); setLibraryFonts( newLibraryFonts ); + setLibraryFontsBackup( newLibraryFonts ); } + const discardLibraryFontsChanges = () => { + setLibraryFonts( libraryFontsBackup ); + } + const toggleInstallFont = ( name, fontFace ) => { console.log("libraryFonts", libraryFonts); const libraryFont = libraryFonts.find( ( font ) => font.name === name ); @@ -148,7 +155,6 @@ function FontLibraryProvider( { children } ) { } - const toggleActivateFont = ( name, style, weight ) => { console.log("toggleActivateFont", name, style, weight); const installedFont = installedFonts.find( ( font ) => font.name === name ); @@ -229,6 +235,7 @@ function FontLibraryProvider( { children } ) { updateLibrary, toggleActivateFont, toggleInstallFont, + discardLibraryFontsChanges } } > { children } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/index.js b/packages/edit-site/src/components/global-styles/font-library-modal/index.js index c0d96685f25b8..bef52e5bd5db3 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/index.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/index.js @@ -7,11 +7,12 @@ import { TabPanel, Button, } from '@wordpress/components'; +import { useContext } from '@wordpress/element'; /** * Internal dependencies */ -import FontLibraryProvider from './context'; +import FontLibraryProvider, { FontLibraryContext } from './context'; import InstalledFonts from './installed-fonts'; import GoogleFonts from './google-fonts'; import LocalFonts from './local-fonts'; @@ -20,39 +21,50 @@ import { MODAL_TABS } from './constants'; function FontLibraryModal( { onRequestClose, initialTabName = "installed-fonts" } ) { + const { discardLibraryFontsChanges } = useContext( FontLibraryContext ); + + const handleSelectTab = (tabName ) => { + if( tabName != "google-fonts" ) { + discardLibraryFontsChanges(); + } + } + return ( - - + - - { ( tab ) => { - switch ( tab.name ) { - case 'google-fonts': - return ( - - ); - case 'local-fonts': - return ( - - ); - case 'installed-fonts': - default: - return ( - - ); - } - } } - - - + { ( tab ) => { + switch ( tab.name ) { + case 'google-fonts': + return ( + + ); + case 'local-fonts': + return ( + + ); + case 'installed-fonts': + default: + return ( + + ); + } + } } + + ); } -export default FontLibraryModal; +export default ({ ...props }) => ( + + + +); From bbf66849ebad467b872704646b66166c10781068 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 18 May 2023 12:01:31 -0300 Subject: [PATCH 018/116] activated fonts --- .../font-library-modal/context.js | 32 ++++++++++++---- .../font-library-modal/google-fonts.js | 38 +++++++++---------- .../font-library-modal/installed-fonts.js | 4 +- .../font-library-modal/library-font-card.js | 4 +- 4 files changed, 46 insertions(+), 32 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 77f43c2d859bb..b10c3cac819ee 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -20,8 +20,8 @@ function FontLibraryProvider( { children } ) { // Global settings fonts const [ fontFamilies, setFontFamilies ] = useGlobalSetting( 'typography.fontFamilies' ); - const themeFonts = fontFamilies.theme || []; - const customFonts = fontFamilies.custom || []; + let themeFonts = fontFamilies.theme || null; + let customFonts = fontFamilies.custom || null; // Library Fonts const [ libraryFonts, setLibraryFonts ] = useState( [] ); @@ -29,7 +29,7 @@ function FontLibraryProvider( { children } ) { // Installed fonts const installedFonts = useMemo( () => ( - [ ...themeFonts, ...libraryFonts ] + [ ...( themeFonts || [] ), ...( libraryFonts || [] ) ] ), [ themeFonts, libraryFonts ] ); // Google Fonts @@ -77,6 +77,17 @@ function FontLibraryProvider( { children } ) { } return installedFontsOutline[ name ]?.includes( style + weight ); } + + const activatedFontsOutline = useMemo( () => { + return getAvailableFontsOutline( customFonts === null ? themeFonts : customFonts ); + }, [ customFonts ] ); + + const isFontActivated = ( name, style, weight ) => { + if (!style && !weight) { + return !!activatedFontsOutline[ name ]; + } + return activatedFontsOutline[ name ]?.includes( style + weight ); + } async function updateLibrary () { const newLibraryFonts = await updateFontsLibrary( libraryFonts ); @@ -156,19 +167,23 @@ function FontLibraryProvider( { children } ) { const toggleActivateFont = ( name, style, weight ) => { - console.log("toggleActivateFont", name, style, weight); + + // If the user doesn't have custom fonts defined, include as custom fonts all the theme fonts + // We want to save as active all the theme fonts at the beginning + const initialCustomFonts = customFonts !== null ? customFonts : themeFonts; + const installedFont = installedFonts.find( ( font ) => font.name === name ); - const activatedFont = customFonts.find( ( font ) => font.name === name ); + const activatedFont = initialCustomFonts.find( ( font ) => font.name === name ); let newCustomFonts; // Entire font family if ( !style || !weight ) { if ( !activatedFont ) { // If the font is not active, activate the entire font family - newCustomFonts = [ ...customFonts, installedFont ]; + newCustomFonts = [ ...initialCustomFonts, installedFont ]; } else { // If the font is already active, deactivate the entire font family - newCustomFonts = customFonts.filter( ( font ) => font.name !== name ); + newCustomFonts = initialCustomFonts.filter( ( font ) => font.name !== name ); } } else { //single font variant let newFontFaces; @@ -193,7 +208,7 @@ function FontLibraryProvider( { children } ) { } // set the newFontFaces in the newCustomFonts - newCustomFonts = customFonts.map( font => font.name === name ? { ...font, fontFace: newFontFaces } : font); + newCustomFonts = initialCustomFonts.map( font => font.name === name ? { ...font, fontFace: newFontFaces } : font); } setFontFamilies( { @@ -229,6 +244,7 @@ function FontLibraryProvider( { children } ) { libraryFonts, installedFonts, isFontInstalled, + isFontActivated, googleFonts, googleFontsCategories, loadFontFaceAsset, diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index 41e6d6f8186a0..00f04bffe1304 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -138,26 +138,24 @@ function GoogleFonts() { { ( fonts && fonts.length >= 0 && !fontSelected ) && ( <> - - - - - { googleFontsCategories && googleFontsCategories.map( ( category ) => ( - - ) ) } - - + + + + { googleFontsCategories && googleFontsCategories.map( ( category ) => ( + + ) ) } + diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index 1d4681934accb..e1bff4275c895 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -21,7 +21,7 @@ import SaveButton from '../../save-button'; function InstalledFonts () { - const { installedFonts } = useContext( FontLibraryContext ); + const { installedFonts, customFonts } = useContext( FontLibraryContext ); const [ fontSelected, setFontSelected ] = useState( null ); const handleUnselectFont = () => { @@ -31,7 +31,7 @@ function InstalledFonts () { const handleSelectFont = ( font ) => { setFontSelected( font ); }; - + return ( family.name === font.name ); + const { toggleActivateFont, isFontActivated } = useContext( FontLibraryContext ); + const isActive = isFontActivated( font.name ); const handleToggleFontActivation = () => { toggleActivateFont( font.name ); From 1c2bbe1325a1d7ffe09053a4cb1b69a62afd24bf Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 18 May 2023 14:11:54 -0300 Subject: [PATCH 019/116] load theme fonts assets --- .../font-library-modal/context.js | 30 +++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index b10c3cac819ee..a3b03d333c54e 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -4,6 +4,7 @@ */ import { createContext, useState, useEffect, useMemo } from '@wordpress/element'; import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor'; +import { useSelect } from '@wordpress/data'; /** * Internal dependencies @@ -40,6 +41,17 @@ function FontLibraryProvider( { children } ) { const loadedFontUrls = new Set(); const [ demoText, setDemoText ] = useState( DEMO_TEXT ); + // Theme data + const { site, currentTheme } = useSelect( (select) => { + const site = select( 'core' ).getSite(); + const currentTheme = select( 'core' ).getCurrentTheme(); + return { + site, + currentTheme, + }; + }); + const themeUrl = site?.url + '/wp-content/themes/' + currentTheme?.stylesheet; + useEffect( () => { getFontLibrary().then( ( response ) => { setLibraryFonts( response ); @@ -217,9 +229,23 @@ function FontLibraryProvider( { children } ) { } ); } - // Load a font asset from a url + + const loadFontFaceAsset = async ( fontFace ) => { - const src = Array.isArray( fontFace.src ) ? fontFace.src[ 0 ] : fontFace.src; + + if ( !fontFace.src ) { + return; + } + + let src = fontFace.src; + if ( Array.isArray( src ) ) { + src = src[ 0 ]; + } + + // If it is a theme font, we need to make the url absolute + if ( src.startsWith( "file:." ) ) { + src = src.replace( "file:.", themeUrl ); + } if ( loadedFontUrls.has( src ) ) { return; From 3eca1d66240a195b0456f41ac1441392178dc31d Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 18 May 2023 17:06:31 -0300 Subject: [PATCH 020/116] UI work for font previews --- .../font-library-modal/constants.js | 5 ++ .../font-library-modal/context.js | 22 ++++++- .../font-library-modal/font-demo.js | 6 +- .../font-library-modal/google-font-card.js | 3 +- .../font-library-modal/google-fonts.js | 8 ++- .../global-styles/font-library-modal/index.js | 3 +- .../font-library-modal/installed-fonts.js | 6 +- .../library-font-details.js | 11 ++-- .../library-font-variant.js | 15 +---- .../font-library-modal/preview-controls.js | 66 +++++++++++++++++++ .../font-library-modal/style.scss | 43 +++++++++--- 11 files changed, 151 insertions(+), 37 deletions(-) create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/preview-controls.js diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/constants.js b/packages/edit-site/src/components/global-styles/font-library-modal/constants.js index a0d5f3167167c..7ce0c73e701ec 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/constants.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/constants.js @@ -31,4 +31,9 @@ export const GOOGLE_FONT_FALLBACKS = { 'serif': 'serif', 'handwriting': 'cursive', 'monospace': 'monospace', +}; + +export const DEFAULT_DEMO_CONFIG = { + text: DEMO_TEXT, + fontSize: 18, }; \ No newline at end of file diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index a3b03d333c54e..21691f4324537 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -5,6 +5,7 @@ import { createContext, useState, useEffect, useMemo } from '@wordpress/element'; import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor'; import { useSelect } from '@wordpress/data'; +import { debounce } from '@wordpress/compose'; /** * Internal dependencies @@ -12,7 +13,7 @@ import { useSelect } from '@wordpress/data'; */ import { getFontLibrary, getGoogleFonts, updateFontsLibrary } from './resolvers'; import { unlock } from '../../../private-apis'; -import { DEMO_TEXT } from './constants'; +import { DEFAULT_DEMO_CONFIG } from './constants'; const { useGlobalSetting } = unlock( blockEditorPrivateApis ); export const FontLibraryContext = createContext( {} ); @@ -39,7 +40,20 @@ function FontLibraryProvider( { children } ) { // Demo const loadedFontUrls = new Set(); - const [ demoText, setDemoText ] = useState( DEMO_TEXT ); + const [ demoConfig, setDemoConfig ] = useState( DEFAULT_DEMO_CONFIG ); + const updateDemoConfig = ( key, value ) => { + setDemoConfig( { + ...demoConfig, + [ key ]: value, + } ) + }; + const setDefaultDemoConfig = ( key ) => { + if ( key ) { + setDemoConfig( { ...demoConfig, [ key ]: DEFAULT_DEMO_CONFIG[ key ] } ); + } else { + setDemoConfig( DEFAULT_DEMO_CONFIG ); + } + }; // Theme data const { site, currentTheme } = useSelect( (select) => { @@ -264,7 +278,9 @@ function FontLibraryProvider( { children } ) { return ( { demoText } + { demoConfig.text } ); } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js index bc0750585e19b..1c53c7efe222a 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js @@ -19,7 +19,7 @@ function GoogleFontCard ( { font, onClick } ) { const { isFontInstalled, - demoText, + demoConfig, toggleInstallFont, } = useContext( FontLibraryContext ); @@ -52,7 +52,6 @@ function GoogleFontCard ( { font, onClick } ) { return ( onClick( font.name ) } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index 00f04bffe1304..8af46ee238995 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -2,7 +2,7 @@ * WordPress dependencies */ import { __ } from '@wordpress/i18n'; -import { useMemo, useState, useContext } from '@wordpress/element'; +import { useMemo, useState, useContext, useEffect } from '@wordpress/element'; import { Spinner, __experimentalHeading as Heading, @@ -25,7 +25,8 @@ import FontsGrid from './fonts-grid'; import { FontLibraryContext } from './context'; import GoogleFontCard from './google-font-card'; import GoolgeFontDetails from './google-font-details'; -import { useEffect } from 'react'; +import PreviewControls from './preview-controls'; + const filterFonts = ( fonts, filters ) => { const { category, search } = filters; @@ -156,6 +157,9 @@ function GoogleFonts() { ) ) } + + + diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/index.js b/packages/edit-site/src/components/global-styles/font-library-modal/index.js index bef52e5bd5db3..c2b7b4b3f6588 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/index.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/index.js @@ -34,9 +34,10 @@ function FontLibraryModal( { onRequestClose, initialTabName = "installed-fonts" title={ __("Fonts Library") } onRequestClose={ onRequestClose } isFullScreen={ true } + className='font-library-modal' > } > diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js index 74b66f80e50fa..eb7a86097a608 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js @@ -10,6 +10,7 @@ import { __experimentalSpacer as Spacer, __experimentalHeading as Heading, __experimentalText as Text, + __experimentalGrid as Grid, } from '@wordpress/components'; @@ -26,11 +27,11 @@ function LibraryFontDetails ({ font }) { const fontFaces = ( font.fontFace && font.fontFace.length ) ? font.fontFace - : [ { fontFamily: font.name, fontStyle: 'normal', fontWeight: 'normal' } ]; + : [ { fontFamily: font.fontFamily, fontStyle: 'normal', fontWeight: '400' } ]; return ( - <> - +
+ @@ -47,8 +48,8 @@ function LibraryFontDetails ({ font }) { - - + +
); } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js index 6060e3e2a7a42..11b92a0a586b3 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js @@ -13,23 +13,14 @@ import FontVariant from './font-variant'; function LibraryFontVariant ({ face, font }) { - const { customFonts, toggleActivateFont } = useContext( FontLibraryContext ); + const { isFontActivated, toggleActivateFont } = useContext( FontLibraryContext ); - const isIstalled = () => { - if ( font.shouldBeRemoved ) { - return false; - } - const activeFont = customFonts.find( family => family.name === font.name ); - if ( ! activeFont ) { - return false; - } - return !!activeFont?.fontFace.find( ff => ff.fontStyle === face.fontStyle && ff.fontWeight === face.fontWeight ); - } + const isIstalled = isFontActivated( font.name, face.fontStyle, face.fontWeight ); return ( toggleActivateFont( font.name, face.fontStyle, face.fontWeight ) } /> ); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/preview-controls.js b/packages/edit-site/src/components/global-styles/font-library-modal/preview-controls.js new file mode 100644 index 0000000000000..56aca1001c506 --- /dev/null +++ b/packages/edit-site/src/components/global-styles/font-library-modal/preview-controls.js @@ -0,0 +1,66 @@ +/** + * WordPress dependencies + */ +import { __ } from '@wordpress/i18n'; +import { useContext } from '@wordpress/element'; +import { + RangeControl, + __experimentalInputControl as InputControl, + Button, + __experimentalVStack as VStack, +} from '@wordpress/components'; +import { update } from '@wordpress/icons'; + +/** + * Internal dependencies + */ +import { FontLibraryContext } from './context'; + +function PreviewControls () { + + const { + demoConfig, + updateDemoConfig, + setDefaultDemoConfig + } = useContext( FontLibraryContext ); + + const onDemoTextBlur = ( event ) => { + if ( !event.target.value ) { + setDefaultDemoConfig('text'); + } + } + + return ( + <> + updateDemoConfig( 'text', value ) } + onBlur={ onDemoTextBlur } + /> + +
+ updateDemoConfig( 'fontSize', value ) } + min={ 8 } + max={ 72 } + /> +
+ + + + + ) +} + +export default PreviewControls; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss index 09ca3f743e8ac..237090c1df6f8 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss +++ b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss @@ -1,13 +1,27 @@ -.font-library-modal__tab-layout footer{ - border-top: 1px solid #e5e5e5; - margin: 0 -32px -32px; - padding: 16px 32px; - position: absolute; - bottom: 32px; - width: 100%; - background-color: #fff; +.font-library-modal { + .components-modal__header { + border-bottom: none; + } } +.font-library-modal__tab-layout{ + + main { + padding-bottom: 4rem; + } + + footer{ + border-top: 1px solid #e5e5e5; + margin: 0 -32px -32px; + padding: 16px 32px; + position: absolute; + bottom: 32px; + width: 100%; + background-color: #fff; + } + +} + .font-library-modal__font-card__name { font-weight: bold; } @@ -20,3 +34,16 @@ border-bottom: 1px solid #e5e5e5; padding-bottom: 1rem; } + +.font-library-modal__tab-panel { + [role="tablist"] { + position: sticky; + top: 0; + width: calc(100% + 64px); + border-bottom: 1px solid #e6e6e6; + z-index: 99; + background: #fff; + margin: 0 -32px; + padding: 0 16px; + } +} From ed7de77503680a952182b6461fdd7927d29984b9 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 19 May 2023 12:08:56 -0300 Subject: [PATCH 021/116] fixing logic for select/unselect variants to install --- .../global-styles/font-library-modal/context.js | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 21691f4324537..49403f22761c8 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -134,21 +134,21 @@ function FontLibraryProvider( { children } ) { if ( !fontFace ) { // Entire font family if ( libraryFont ){ // If the font is already installed - newLibraryFonts = libraryFonts.map( font => { - if ( font.name === name ) { + newLibraryFonts = libraryFonts.map( f => { + if ( f.name === name ) { // This logic handles several sucesive install/remove calls for a font family in the client - const { shouldBeRemoved, fontFace: familyFaces, ...restFont } = font; + const { shouldBeRemoved: fontFamilyShouldBeRemoved, fontFace: familyFaces, ...restFont } = f; const newFont = { ...restFont, - fontFace: familyFaces.map( face => { + fontFace: (font?.fontFace || []).map( face => { const { shouldBeRemoved, ...restFace } = face; - return { ...restFace, ...(!shouldBeRemoved ? { shouldBeRemoved: true } : {}) }; + return { ...restFace, ...(!fontFamilyShouldBeRemoved ? { shouldBeRemoved: true } : {}) }; } ), - ...(!shouldBeRemoved ? { shouldBeRemoved: true } : {}), + ...(!fontFamilyShouldBeRemoved ? { shouldBeRemoved: true } : {}), }; return newFont; } - return font; + return f; }); } else { // If the font is not installed newLibraryFonts = [ ...libraryFonts, font ]; @@ -178,7 +178,6 @@ function FontLibraryProvider( { children } ) { return { ...restFont, fontFace: newFontFaces, - ...(!shouldBeRemoved ? { shouldBeRemoved: true } : {}) }; } return font; From b3715e3a8bcce78c1d96f95d7ed7285987bfe121 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 19 May 2023 12:10:05 -0300 Subject: [PATCH 022/116] UI work --- .../font-library-modal/constants.js | 8 +++---- .../font-library-modal/google-font-details.js | 1 - .../font-library-modal/google-fonts.js | 2 +- .../library-font-details.js | 2 +- .../library-font-variant.js | 2 +- .../font-library-modal/local-fonts.js | 23 ++++++++++++++++++- 6 files changed, 29 insertions(+), 9 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/constants.js b/packages/edit-site/src/components/global-styles/font-library-modal/constants.js index 7ce0c73e701ec..f350b4aaf233b 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/constants.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/constants.js @@ -7,17 +7,17 @@ import { __ } from '@wordpress/i18n'; export const MODAL_TABS = [ { name: 'installed-fonts', - title: __('Installed Fonts'), + title: __('Activate Fonts'), className: 'installed-fonts', }, { name: 'google-fonts', - title: __('Add Google Fonts'), + title: __('Install Google Fonts'), className: 'google-fonts', }, { name: 'local-fonts', - title: __('Add Local Fonts'), + title: __('Install Local Fonts'), className: 'local-fonts', }, ]; @@ -35,5 +35,5 @@ export const GOOGLE_FONT_FALLBACKS = { export const DEFAULT_DEMO_CONFIG = { text: DEMO_TEXT, - fontSize: 18, + fontSize: 24, }; \ No newline at end of file diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-details.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-details.js index 7d70557f466e1..df62039707b5e 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-details.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-details.js @@ -13,7 +13,6 @@ import { import GoogleFontVariant from './google-font-variant'; function GoolgeFontDetails ({ font }) { - console.log("GoolgeFontDetails", font); return ( <> diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index 8af46ee238995..2e7a3d88a2356 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -117,7 +117,7 @@ function GoogleFonts() { return ( ); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js index eb7a86097a608..2932133cd66d7 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js @@ -28,7 +28,7 @@ function LibraryFontDetails ({ font }) { const fontFaces = ( font.fontFace && font.fontFace.length ) ? font.fontFace : [ { fontFamily: font.fontFamily, fontStyle: 'normal', fontWeight: '400' } ]; - + return (
diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js index 11b92a0a586b3..5e1d8d5fef711 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js @@ -16,7 +16,7 @@ function LibraryFontVariant ({ face, font }) { const { isFontActivated, toggleActivateFont } = useContext( FontLibraryContext ); const isIstalled = isFontActivated( font.name, face.fontStyle, face.fontWeight ); - + return ( { + return ( + + + + ); + } + + return ( - + } + > + ); } From 42e300ffc75425c13e5c8aba14c7ed28f4e53902 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 22 May 2023 16:45:44 -0300 Subject: [PATCH 023/116] saving google fonts working --- .../fonts-api/class-wp-fonts-library.php | 214 +++++++++++++++--- .../font-library-modal/constants.js | 6 +- .../font-library-modal/context.js | 64 +----- .../font-library-modal/google-font-card.js | 35 +-- .../font-library-modal/google-font-details.js | 4 +- .../font-library-modal/google-font-variant.js | 9 +- .../font-library-modal/google-fonts.js | 93 ++++++-- .../global-styles/font-library-modal/index.js | 14 +- .../library-font-details.js | 21 +- .../font-library-modal/resolvers.js | 12 +- .../font-library-modal/style.scss | 12 + .../font-library-modal/styles.css | 0 12 files changed, 319 insertions(+), 165 deletions(-) delete mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/styles.css diff --git a/lib/experimental/fonts-api/class-wp-fonts-library.php b/lib/experimental/fonts-api/class-wp-fonts-library.php index 736223bfbb63e..dc3b91694610e 100644 --- a/lib/experimental/fonts-api/class-wp-fonts-library.php +++ b/lib/experimental/fonts-api/class-wp-fonts-library.php @@ -1,8 +1,14 @@ wp_fonts_dir = path_join( WP_CONTENT_DIR, 'fonts' ); + $this->relative_fonts_path = site_url('/wp-content/fonts/', 'relative'); + $this->rest_base = 'fonts_library'; $this->namespace = 'wp/v2'; @@ -15,6 +21,9 @@ public function __construct() { 'post_type' => $this->post_type, 'post_title' => $this->post_title, 'post_status' => $this->post_status, + 'post_name' => $this->post_name, + 'name' => $this->post_name, + 'posts_per_page' => 1, ); } @@ -28,19 +37,19 @@ function register_routes () { array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_fonts_library' ), - 'permission_callback' => array( $this, 'get_fonts_library_permissions_check' ), + 'permission_callback' => array( $this, 'fonts_library_permissions_check' ), ), ) ); register_rest_route( $this->namespace, - '/' . $this->rest_base, + '/' . $this->rest_base . '/install', array( array( 'methods' => WP_REST_Server::EDITABLE, - 'callback' => array( $this, 'update_fonts_library' ), - 'permission_callback' => array( $this, 'update_fonts_library_permissions_check' ), + 'callback' => array( $this, 'install_fonts' ), + 'permission_callback' => array( $this, 'fonts_library_permissions_check' ), ), ) ); @@ -52,59 +61,51 @@ function register_routes () { array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_google_fonts' ), - 'permission_callback' => array( $this, 'get_fonts_library_permissions_check' ), + 'permission_callback' => array( $this, 'fonts_library_permissions_check' ), ), ) ); } - function get_fonts_library_permissions_check () { - return true; - // return current_user_can( 'edit_posts' ); - } - - function update_fonts_library_permissions_check () { + function fonts_library_permissions_check () { return true; // return current_user_can( 'edit_posts' ); } function get_fonts_library () { - $post = $this->get_fonts_library_post(); - $post_content = json_decode( $post->post_content ); - return new WP_REST_Response( $post_content ); + $post = $this->query_fonts_library(); + return new WP_REST_Response( $post->post_content ); } - private function get_fonts_library_post () { + private function query_fonts_library () { // Try to get the fonts library post - $args = $this->base_post_query; - $args['posts_per_page'] = 1; - $args['name'] = $this->post_name; - - $wp_fonts_library_query = new WP_Query( $args ); + $wp_fonts_library_query = new WP_Query( $this->base_post_query ); if ( $wp_fonts_library_query->have_posts() ) { $post = $wp_fonts_library_query->posts[0]; return $post; } // Create empty post if there are no post - $post_data = $this->base_post_query; - $post_data['post_name'] = $this->post_name; - $post = wp_insert_post( $post_data ); + $args = $this->base_post_query; + $args['post_content'] = '{"fontFamilies":[]}'; + $post_id = wp_insert_post( $args ); + $post = get_post( $post_id ); return $post; } - function update_fonts_library ( $request ) { - $post = $this->get_fonts_library_post(); - $new_content = $request->get_json_params(); + function update_fonts_library ( $new_fonts_families ) { + $post = $this->query_fonts_library(); + $new_fonts_library = array ( + 'fontFamilies' => $new_fonts_families, + ); $updated_post_data = array ( 'ID' => $post->ID, - 'post_content' => json_encode( $new_content ), + 'post_content' => wp_json_encode( $new_fonts_library ), ); $updated_post = wp_update_post( $updated_post_data ); - $new_post = $this->get_fonts_library_post(); - $post_content = json_decode( $new_post->post_content ); - return new WP_REST_Response( $post_content ); + $new_post = $this->query_fonts_library(); + return new WP_REST_Response( $new_post->post_content ); } function get_google_fonts () { @@ -115,4 +116,157 @@ function get_google_fonts () { return new WP_REST_Response( $data ); } + function prepare_item_for_database ( $font_families ) { + $new_font_families = array(); + foreach ( $font_families as $font_family ) { + + // Remove the entire family and all its font faces if it is marked for removal + if ( isset( $font_family['shouldBeRemoved'] ) ) { + if( isset( $font_family['fontFace'] ) ){ + foreach ( $font_family['fontFace'] as $font_face ) { + delete_font_face_asset( $font_face ); + } + } + // Update the family if it is not marked for removal + } else { + $new_font_family = $font_family; + if( isset( $font_family['fontFace'] ) ){ + $new_font_faces = array(); + foreach( $font_family['fontFace'] as $font_face ) { + $new_font_face = $this->prepare_font_face_for_database( $font_face ); + if ( $new_font_face ) { + $new_font_faces[] = $new_font_face; + } + } + $new_font_family['fontFace'] = $new_font_faces; + } + $new_font_families[] = $new_font_family; + } + + } + + return $new_font_families; + } + + function prepare_font_face_for_database ( $font_face ) { + if ( isset( $font_face['shouldBeRemoved'] ) ) { + $this->delete_font_face_asset( $font_face ); + return null; + } else { + if ( isset( $font_face['shouldBeDownloaded'] ) ){ + $prepared_font_face = $this->download_font_face_asset( $font_face ); + return $prepared_font_face; + } + return $font_face; + } + } + + function delete_asset( $src ) { + $filename = basename( $src ); + $file_path = path_join( $this->wp_fonts_dir, $filename ); + return wp_delete_file( $file_path ); + } + + function delete_font_face_assets ( $font_face ) { + if ( is_array( $font_face['src'] ) ) { + foreach ( $font_face['src'] as $src ) { + $this->delete_asset($src); + } + } else { + $this->delete_asset( $font_face['src'] ); + } + } + + function download_asset( $src, $filename ) { + wp_mkdir_p( $this->wp_fonts_dir ); + $file_path = path_join( $this->wp_fonts_dir, $filename ); + $file = download_url( $src ); + rename( $file, $file_path ); + return "{$this->relative_fonts_path}{$filename}"; + } + + function get_filename_from_font_face ( $font_face, $url, $i=0 ) { + $extension = pathinfo( $url, PATHINFO_EXTENSION ); + $family = sanitize_title( $font_face['fontFamily'] ); + $style = sanitize_title( $font_face['fontStyle'] ); + $weight = sanitize_title( $font_face['fontWeight'] ); + $filename = "{$family}_{$style}_{$weight}"; + if ($i > 0) { + $filename = "{$filename}_{$i}"; + } + return "{$filename}.{$extension}"; + } + + function download_font_face_asset ( $font_face ) { + $new_font_face = $font_face; + if ( is_array( $font_face['src'] ) ) { + $new_font_face['src'] = array(); + $i; + foreach ( $font_face['src'] as $src ) { + !$i ? $i = 0 : $i++; + $filename = $this->get_filename_from_font_face( $font_face, $src, $i ); + $new_src = $this->download_asset($src, $filename); + $new_font_face['src'][] = $new_src; + } + } else { + $filename = $this->get_filename_from_font_face( $font_face, $font_face['src'] ); + $new_font_face['src'] = $this->download_asset( $font_face['src'], $filename ); + } + return $new_font_face; + } + + function install_fonts ( $request ) { + $post = $this->query_fonts_library(); + $post_content = $post->post_content; + $library = json_decode( $post_content, true ); + $font_families = $library['fontFamilies']; + + $fonts_to_install = $request->get_json_params(); + $new_fonts = $this->install_new_fonts( $fonts_to_install ); + $new_library_fonts = $this->merge_fonts( $font_families, $new_fonts ); + return $this->update_fonts_library( $new_library_fonts ); + } + + function install_new_fonts ( $fonts ) { + $new_fonts = array(); + foreach ( $fonts as $font ) { + $new_font = $font; + if ( isset( $font['fontFace'] ) ) { + $new_font_faces = array(); + foreach ( $font['fontFace'] as $font_face ) { + $new_font_face = $this->download_font_face_asset( $font_face ); + $new_font_faces[] = $new_font_face; + } + $new_font['fontFace'] = $new_font_faces; + } + $new_fonts[] = $new_font; + } + return $new_fonts; + } + + function merge_fonts ( $current_fonts, $add_fonts ) { + $new_fonts = $current_fonts; + // Search if there is a font family with the same slug in the current fonts. If there is, add the new fontFace definitions to the current font face and if there is not, add the new font family to the current fonts. + foreach ( $add_fonts as $add_font ) { + $existing_font = array_search( $add_font['slug'], array_column( $new_fonts, 'slug' ) ); + + if ( $existing_font === false ) { + $new_fonts[] = $add_font; + } else { + $current_font_faces = $new_fonts[$existing_font]['fontFace']; + $add_font_faces = $add_font['fontFace']; + + if ( $add_font['fontFace'] ){ + $new_font_faces = array_merge($current_font_faces, $add_font_faces); + $new_font_faces = array_map("unserialize", array_unique(array_map("serialize", $new_font_faces))); + $new_fonts[$existing_font]['fontFace'] = $new_font_faces; + } else { + $new_fonts[] = $current_fonts[ $existing_font ]; + } + } + + } + return $new_fonts; + } + } \ No newline at end of file diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/constants.js b/packages/edit-site/src/components/global-styles/font-library-modal/constants.js index f350b4aaf233b..09194030ee8fc 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/constants.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/constants.js @@ -7,17 +7,17 @@ import { __ } from '@wordpress/i18n'; export const MODAL_TABS = [ { name: 'installed-fonts', - title: __('Activate Fonts'), + title: __('Installed Fonts'), className: 'installed-fonts', }, { name: 'google-fonts', - title: __('Install Google Fonts'), + title: __('Google Fonts'), className: 'google-fonts', }, { name: 'local-fonts', - title: __('Install Local Fonts'), + title: __('Local Fonts'), className: 'local-fonts', }, ]; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 49403f22761c8..47036b34aa58c 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -11,7 +11,7 @@ import { debounce } from '@wordpress/compose'; * Internal dependencies * */ -import { getFontLibrary, getGoogleFonts, updateFontsLibrary } from './resolvers'; +import { getFontLibrary, getGoogleFonts, postInstallFonts } from './resolvers'; import { unlock } from '../../../private-apis'; import { DEFAULT_DEMO_CONFIG } from './constants'; const { useGlobalSetting } = unlock( blockEditorPrivateApis ); @@ -27,7 +27,6 @@ function FontLibraryProvider( { children } ) { // Library Fonts const [ libraryFonts, setLibraryFonts ] = useState( [] ); - const [ libraryFontsBackup, setLibraryFontsBackup ] = useState( [] ); // Installed fonts const installedFonts = useMemo( () => ( @@ -69,7 +68,6 @@ function FontLibraryProvider( { children } ) { useEffect( () => { getFontLibrary().then( ( response ) => { setLibraryFonts( response ); - setLibraryFontsBackup( response ); } ); getGoogleFonts().then( ( { fontFamilies, categories } ) => { setGoogleFonts( fontFamilies ); @@ -93,17 +91,6 @@ function FontLibraryProvider( { children } ) { return outline; } - const installedFontsOutline = useMemo( () => { - return getAvailableFontsOutline( installedFonts ); - }, [ installedFonts ] ); - - const isFontInstalled = ( name, style, weight ) => { - if (!style && !weight) { - return !!installedFontsOutline[ name ]; - } - return installedFontsOutline[ name ]?.includes( style + weight ); - } - const activatedFontsOutline = useMemo( () => { return getAvailableFontsOutline( customFonts === null ? themeFonts : customFonts ); }, [ customFonts ] ); @@ -115,58 +102,34 @@ function FontLibraryProvider( { children } ) { return activatedFontsOutline[ name ]?.includes( style + weight ); } - async function updateLibrary () { - const newLibraryFonts = await updateFontsLibrary( libraryFonts ); + async function installFonts ( libraryFonts ) { + const newLibraryFonts = await postInstallFonts( libraryFonts ); setLibraryFonts( newLibraryFonts ); - setLibraryFontsBackup( newLibraryFonts ); } - const discardLibraryFontsChanges = () => { - setLibraryFonts( libraryFontsBackup ); - } - const toggleInstallFont = ( name, fontFace ) => { - console.log("libraryFonts", libraryFonts); const libraryFont = libraryFonts.find( ( font ) => font.name === name ); - const font = googleFonts.find( ( font ) => font.name === name ); + const googleFont = googleFonts.find( ( font ) => font.name === name ); let newLibraryFonts; let newFontFaces; if ( !fontFace ) { // Entire font family if ( libraryFont ){ // If the font is already installed - newLibraryFonts = libraryFonts.map( f => { - if ( f.name === name ) { - // This logic handles several sucesive install/remove calls for a font family in the client - const { shouldBeRemoved: fontFamilyShouldBeRemoved, fontFace: familyFaces, ...restFont } = f; - const newFont = { - ...restFont, - fontFace: (font?.fontFace || []).map( face => { - const { shouldBeRemoved, ...restFace } = face; - return { ...restFace, ...(!fontFamilyShouldBeRemoved ? { shouldBeRemoved: true } : {}) }; - } ), - ...(!fontFamilyShouldBeRemoved ? { shouldBeRemoved: true } : {}), - }; - return newFont; - } - return f; - }); + newLibraryFonts = libraryFonts.filter( ( font ) => font.name !== name ); } else { // If the font is not installed - newLibraryFonts = [ ...libraryFonts, font ]; + newLibraryFonts = [ ...libraryFonts, googleFont ]; } } else { // Single font variant const libraryFontFace = (libraryFont?.fontFace || []).find( ( face ) => face.fontStyle === fontFace.fontStyle && face.fontWeight === fontFace.fontWeight ); if ( !libraryFont ) { // If the font is not installed the fontface should be missing so we add it to the library - newLibraryFonts = [ ...libraryFonts, { ...font, fontFace: [ fontFace ] } ]; + newLibraryFonts = [ ...libraryFonts, { ...googleFont, fontFace: [ fontFace ] } ]; } else { //If the font is already installed the fontface the font face could be installed or not if ( libraryFontFace ) { - const { shouldBeRemoved, ...restFontFace } = libraryFontFace; - newFontFaces = libraryFont.fontFace.map( face => ( - face.fontStyle === fontFace.fontStyle && face.fontWeight === fontFace.fontWeight - ? { ...restFontFace, ...(!shouldBeRemoved ? { shouldBeRemoved: true } : {}) } - : face + newFontFaces = libraryFont.fontFace.filter( face => ( + face.fontStyle !== fontFace.fontStyle && face.fontWeight !== fontFace.fontWeight )); } else { newFontFaces = [ ...libraryFont.fontFace, fontFace ]; @@ -174,9 +137,8 @@ function FontLibraryProvider( { children } ) { // Update the font face of a existing font newLibraryFonts = libraryFonts.map( font => { if ( font.name === name ) { - const { shouldBeRemoved, ...restFont } = font; return { - ...restFont, + ...font, fontFace: newFontFaces, }; } @@ -186,7 +148,6 @@ function FontLibraryProvider( { children } ) { } } - console.log("newLibraryFonts", newLibraryFonts); setLibraryFonts( newLibraryFonts ); } @@ -284,15 +245,14 @@ function FontLibraryProvider( { children } ) { customFonts, libraryFonts, installedFonts, - isFontInstalled, isFontActivated, googleFonts, googleFontsCategories, loadFontFaceAsset, - updateLibrary, + installFonts, toggleActivateFont, toggleInstallFont, - discardLibraryFontsChanges + getAvailableFontsOutline, } } > { children } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js index 1c53c7efe222a..68e51bc18d548 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js @@ -15,40 +15,17 @@ import { useContext } from '@wordpress/element'; import { FontLibraryContext } from './context'; import FontCard from './font-card'; -function GoogleFontCard ( { font, onClick } ) { +function GoogleFontCard ( { font, onClick, toggleAddFont, isAdded } ) { const { - isFontInstalled, - demoConfig, - toggleInstallFont, } = useContext( FontLibraryContext ); - const isInstalled = isFontInstalled( font.name ); - - const handleClick = ( event, fontName ) => { + const handleClick = ( event, font ) => { event.stopPropagation(); - toggleInstallFont( fontName ); + // toggleInstallFont( fontName ); + toggleAddFont( font ); }; - - const alternativeButtton = !isInstalled - ? ( - @@ -181,13 +226,19 @@ function GoogleFonts() { key={ font.name } font={ font } onClick={ handleSelectFont } + toggleAddFont={ toggleAddFont } + isAdded={ !!newFontsOutline[font.name] } /> ) ) } ) } { fontSelected && ( - + ) } ) } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/index.js b/packages/edit-site/src/components/global-styles/font-library-modal/index.js index c2b7b4b3f6588..5728d685f004a 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/index.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/index.js @@ -5,14 +5,12 @@ import { __ } from '@wordpress/i18n'; import { Modal, TabPanel, - Button, } from '@wordpress/components'; -import { useContext } from '@wordpress/element'; /** * Internal dependencies */ -import FontLibraryProvider, { FontLibraryContext } from './context'; +import FontLibraryProvider from './context'; import InstalledFonts from './installed-fonts'; import GoogleFonts from './google-fonts'; import LocalFonts from './local-fonts'; @@ -20,15 +18,6 @@ import { MODAL_TABS } from './constants'; function FontLibraryModal( { onRequestClose, initialTabName = "installed-fonts" } ) { - - const { discardLibraryFontsChanges } = useContext( FontLibraryContext ); - - const handleSelectTab = (tabName ) => { - if( tabName != "google-fonts" ) { - discardLibraryFontsChanges(); - } - } - return ( { ( tab ) => { switch ( tab.name ) { diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js index 2932133cd66d7..597a808209b4c 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js @@ -30,9 +30,8 @@ function LibraryFontDetails ({ font }) { : [ { fontFamily: font.fontFamily, fontStyle: 'normal', fontWeight: '400' } ]; return ( -
- - +
+
{ fontFaces.map( ( face, i ) => ( @@ -43,12 +42,22 @@ function LibraryFontDetails ({ font }) { /> ) ) } +
- - + +
); } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js b/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js index 18a041c8c278c..c0240d71e31cc 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js @@ -9,7 +9,8 @@ export async function getFontLibrary() { const config = { path: '/wp/v2/fonts_library', }; - const { fontFamilies } = await apiFetch( config ); + const response = await apiFetch( config ); + const { fontFamilies } = await JSON.parse( response ); return fontFamilies; } @@ -24,12 +25,13 @@ export async function getGoogleFonts() { }; } -export async function updateFontsLibrary( data ) { +export async function postInstallFonts( data ) { const config = { - path: '/wp/v2/fonts_library', + path: '/wp/v2/fonts_library/install', method: 'POST', - data: { fontFamilies: data }, + data: data, }; - const { fontFamilies } = await apiFetch( config ); + const response = await apiFetch( config ); + const { fontFamilies } = await JSON.parse( response ); return fontFamilies; } \ No newline at end of file diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss index 237090c1df6f8..6af60faebd664 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss +++ b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss @@ -47,3 +47,15 @@ padding: 0 16px; } } + +.font-library-modal__font_details { + display: grid; + grid-template-columns: 4fr 1fr; + column-gap: 2rem; + + aside { + display: flex; + flex-direction: column; + justify-content: space-between; + } +} \ No newline at end of file diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/styles.css b/packages/edit-site/src/components/global-styles/font-library-modal/styles.css deleted file mode 100644 index e69de29bb2d1d..0000000000000 From 1a5c60f3b18661b5fb5527be454f01d052163501 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 23 May 2023 11:46:24 -0300 Subject: [PATCH 024/116] handling font uninstall --- .../font-library-modal/context.js | 15 ++- .../font-library-modal/installed-fonts.js | 2 +- .../library-font-details.js | 94 +++++++++++++------ .../font-library-modal/resolvers.js | 19 +++- 4 files changed, 90 insertions(+), 40 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 47036b34aa58c..ff563eefd7a74 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -11,7 +11,7 @@ import { debounce } from '@wordpress/compose'; * Internal dependencies * */ -import { getFontLibrary, getGoogleFonts, postInstallFonts } from './resolvers'; +import { fetchFontLibrary, fetchGoogleFonts, fetchInstallFonts, fetchUninstallFonts } from './resolvers'; import { unlock } from '../../../private-apis'; import { DEFAULT_DEMO_CONFIG } from './constants'; const { useGlobalSetting } = unlock( blockEditorPrivateApis ); @@ -66,10 +66,10 @@ function FontLibraryProvider( { children } ) { const themeUrl = site?.url + '/wp-content/themes/' + currentTheme?.stylesheet; useEffect( () => { - getFontLibrary().then( ( response ) => { + fetchFontLibrary().then( ( response ) => { setLibraryFonts( response ); } ); - getGoogleFonts().then( ( { fontFamilies, categories } ) => { + fetchGoogleFonts().then( ( { fontFamilies, categories } ) => { setGoogleFonts( fontFamilies ); setGoogleFontsCategories( ['all', ...categories] ); } ); @@ -103,10 +103,16 @@ function FontLibraryProvider( { children } ) { } async function installFonts ( libraryFonts ) { - const newLibraryFonts = await postInstallFonts( libraryFonts ); + const newLibraryFonts = await fetchInstallFonts( libraryFonts ); setLibraryFonts( newLibraryFonts ); } + async function uninstallFont ( fontFamily ) { + console.log ( "uninstallFont", fontFamily ); + const newLibraryFonts = await fetchUninstallFonts( fontFamily ); + setLibraryFonts( newLibraryFonts ); + } + const toggleInstallFont = ( name, fontFace ) => { const libraryFont = libraryFonts.find( ( font ) => font.name === name ); const googleFont = googleFonts.find( ( font ) => font.name === name ); @@ -250,6 +256,7 @@ function FontLibraryProvider( { children } ) { googleFontsCategories, loadFontFaceAsset, installFonts, + uninstallFont, toggleActivateFont, toggleInstallFont, getAvailableFontsOutline, diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index daf536b4784f7..55e71ec421597 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -8,7 +8,6 @@ import { __experimentalHStack as HStack, } from '@wordpress/components'; - /** * Internal dependencies */ @@ -58,6 +57,7 @@ function InstalledFonts () { {fontSelected && ( )} diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js index 597a808209b4c..7bd7726164d09 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js @@ -2,16 +2,16 @@ * WordPress dependencies */ import { __ } from '@wordpress/i18n'; -import { useContext, useMemo } from '@wordpress/element'; +import { useContext, useState } from '@wordpress/element'; import { Button, - __experimentalHStack as HStack, __experimentalVStack as VStack, __experimentalSpacer as Spacer, - __experimentalHeading as Heading, __experimentalText as Text, - __experimentalGrid as Grid, + __experimentalConfirmDialog as ConfirmDialog, } from '@wordpress/components'; +import { store as noticesStore } from '@wordpress/notices'; +import { useDispatch } from '@wordpress/data'; /** @@ -21,44 +21,76 @@ import { FontLibraryContext } from './context'; import LibraryFontVariant from './library-font-variant'; -function LibraryFontDetails ({ font }) { +function LibraryFontDetails ({ font, handleUnselectFont }) { + + const { uninstallFont } = useContext( FontLibraryContext ); + const [ isConfirmOpen, setIsConfirmOpen ] = useState( false ); + const { createErrorNotice, createSuccessNotice } = useDispatch( noticesStore ); - const { toggleInstallFont } = useContext( FontLibraryContext ); const fontFaces = ( font.fontFace && font.fontFace.length ) ? font.fontFace : [ { fontFamily: font.fontFamily, fontStyle: 'normal', fontWeight: '400' } ]; + const handleConfirmUninstall = async () => { + try { + await uninstallFont( font ); + createSuccessNotice( __(`${font?.name || font.fontFamily} was uninstalled.`), { type: 'snackbar' } ); + } catch (e) { + createErrorNotice( __(`Error deleting font. ${font?.name || font.fontFamily} could not be uninstalled.`), { type: 'snackbar' } ); + } + handleUnselectFont(); + } + + const handleUninstallClick = async () => { + setIsConfirmOpen( true ); + }; + + const handleCancelUninstall = () => { + setIsConfirmOpen( false ); + }; + return ( -
-
- - - { fontFaces.map( ( face, i ) => ( - - ) ) } - -
+ <> + + { __( `Would you like to remove ${font.name || font.fontFamily} and all its variants and assets?`) } + +
+
+ + + { fontFaces.map( ( face, i ) => ( + + ) ) } + +
- -
+
+ ); } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js b/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js index c0240d71e31cc..583eb8380db1a 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js @@ -5,7 +5,7 @@ import apiFetch from '@wordpress/api-fetch'; -export async function getFontLibrary() { +export async function fetchFontLibrary() { const config = { path: '/wp/v2/fonts_library', }; @@ -14,7 +14,7 @@ export async function getFontLibrary() { return fontFamilies; } -export async function getGoogleFonts() { +export async function fetchGoogleFonts() { const config = { path: '/wp/v2/fonts_library/google_fonts', }; @@ -25,13 +25,24 @@ export async function getGoogleFonts() { }; } -export async function postInstallFonts( data ) { +export async function fetchInstallFonts( data ) { const config = { - path: '/wp/v2/fonts_library/install', + path: '/wp/v2/fonts_library', method: 'POST', data: data, }; const response = await apiFetch( config ); const { fontFamilies } = await JSON.parse( response ); return fontFamilies; +} + +export async function fetchUninstallFonts( data ) { + const config = { + path: '/wp/v2/fonts_library', + method: 'DELETE', + data: data, + }; + const response = await apiFetch( config ); + const { fontFamilies } = await JSON.parse( response ); + return fontFamilies; } \ No newline at end of file From ad40519a0c7ec7762de68847c441afa2cc6d2128 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 23 May 2023 12:22:38 -0300 Subject: [PATCH 025/116] toggle activation for system fonts (fonts without font faces) --- .../font-library-modal/context.js | 14 +++++--------- .../font-library-modal/library-font-card.js | 18 ++++++------------ .../font-library-modal/library-font-variant.js | 14 ++++++++++++-- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index ff563eefd7a74..aa8a9b80247e9 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -77,17 +77,13 @@ function FontLibraryProvider( { children } ) { const getAvailableFontsOutline = ( fontFamilies ) => { const outline = fontFamilies.reduce( ( acc, font ) => { - if ( !font.shouldBeRemoved ) { - const availableFontFaces = (font?.fontFace || []).reduce( (faces, face) => ( - !face.shouldBeRemoved ? [...faces, face.fontStyle + face.fontWeight] : faces - ), [] ); - if ( availableFontFaces.length ) { - acc[ font.name ] = availableFontFaces; - } - } + const availableFontFaces = (font?.fontFace || []).map( (face) => ( + `${face.fontStyle + face.fontWeight}` + )); + acc[ font.name ] = availableFontFaces; return acc; } - , {} ); + , {}); return outline; } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js index 5b7e8308c3771..9338f96d8c10c 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js @@ -20,20 +20,14 @@ function LibraryFontCard ({ font, onClick }) { toggleActivateFont( font.name ); } - const handleClick = font.shouldBeRemoved - ? null - : () => { onClick( font.name ) }; + const handleClick = () => { onClick( font.name ) }; const actionHandler = ( - font.shouldBeRemoved - ? null - : ( - e.stopPropagation() } - onChange={ handleToggleFontActivation } - /> - ) + e.stopPropagation() } + onChange={ handleToggleFontActivation } + /> ); return ( diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js index 5e1d8d5fef711..2d2ec9b2f9760 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js @@ -15,13 +15,23 @@ function LibraryFontVariant ({ face, font }) { const { isFontActivated, toggleActivateFont } = useContext( FontLibraryContext ); - const isIstalled = isFontActivated( font.name, face.fontStyle, face.fontWeight ); + const isIstalled = font?.fontFace + ? isFontActivated( font.name, face.fontStyle, face.fontWeight ) + : isFontActivated( font.name ); + + const handleToggleActivation = () => { + if ( font?.fontFace ) { + toggleActivateFont( font.name, face.fontStyle, face.fontWeight ); + return; + } + toggleActivateFont( font.name ); + } return ( toggleActivateFont( font.name, face.fontStyle, face.fontWeight ) } + onClick={ handleToggleActivation } /> ); } From 92eee6c87555e86b0d7b4ae0ee3e16f1d197117c Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 23 May 2023 12:36:29 -0300 Subject: [PATCH 026/116] adding preview controls to installed fonts tab --- .../font-library-modal/installed-fonts.js | 31 ++++++++++++------- .../font-library-modal/preview-controls.js | 12 +++---- 2 files changed, 23 insertions(+), 20 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index 55e71ec421597..57f59008994a8 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -2,10 +2,10 @@ * WordPress dependencies */ import { __ } from '@wordpress/i18n'; -import { useContext, useMemo, useState } from '@wordpress/element'; +import { useContext, useState } from '@wordpress/element'; import { - Button, __experimentalHStack as HStack, + __experimentalSpacer as Spacer, } from '@wordpress/components'; /** @@ -17,10 +17,11 @@ import FontsGrid from './fonts-grid'; import LibraryFontCard from './library-font-card'; import LibraryFontDetails from './library-font-details'; import SaveButton from '../../save-button'; +import PreviewControls from './preview-controls'; function InstalledFonts () { - const { installedFonts, customFonts } = useContext( FontLibraryContext ); + const { installedFonts } = useContext( FontLibraryContext ); const [ fontSelected, setFontSelected ] = useState( null ); const handleUnselectFont = () => { @@ -42,16 +43,22 @@ function InstalledFonts () { handleBack={ !! fontSelected && handleUnselectFont } footer={
} > + + {!fontSelected && ( - - {installedFonts.map( font => ( - { handleSelectFont( font ) } } - /> - ) )} - + <> + + + + {installedFonts.map( font => ( + { handleSelectFont( font ) } } + /> + ) )} + + )} {fontSelected && ( diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/preview-controls.js b/packages/edit-site/src/components/global-styles/font-library-modal/preview-controls.js index 56aca1001c506..ab3a5747f128f 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/preview-controls.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/preview-controls.js @@ -6,6 +6,7 @@ import { useContext } from '@wordpress/element'; import { RangeControl, __experimentalInputControl as InputControl, + __experimentalHStack as HStack, Button, __experimentalVStack as VStack, } from '@wordpress/components'; @@ -31,7 +32,7 @@ function PreviewControls () { } return ( - <> +
- - - + /> + ) } From 5e22396e2b11157a2305c1956b0226ac9af95d45 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 00:18:39 -0300 Subject: [PATCH 027/116] fixing toogle activate fonts and font faces --- .../font-library-modal/context.js | 39 +++++++++++-------- .../font-library-modal/library-font-card.js | 3 +- .../library-font-variant.js | 4 +- 3 files changed, 27 insertions(+), 19 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index aa8a9b80247e9..19a36d8accd50 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -30,7 +30,7 @@ function FontLibraryProvider( { children } ) { // Installed fonts const installedFonts = useMemo( () => ( - [ ...( themeFonts || [] ), ...( libraryFonts || [] ) ] + [ ...( themeFonts || [] ), ...( libraryFonts || [] ) ].sort( ( a, b ) => (a.name || a.slug).localeCompare( b.name || b.slug ) ) ), [ themeFonts, libraryFonts ] ); // Google Fonts @@ -95,6 +95,7 @@ function FontLibraryProvider( { children } ) { if (!style && !weight) { return !!activatedFontsOutline[ name ]; } + console.log(activatedFontsOutline); return activatedFontsOutline[ name ]?.includes( style + weight ); } @@ -154,49 +155,55 @@ function FontLibraryProvider( { children } ) { } - const toggleActivateFont = ( name, style, weight ) => { + const toggleActivateFont = ( font, face ) => { // If the user doesn't have custom fonts defined, include as custom fonts all the theme fonts // We want to save as active all the theme fonts at the beginning const initialCustomFonts = customFonts !== null ? customFonts : themeFonts; - const installedFont = installedFonts.find( ( font ) => font.name === name ); - const activatedFont = initialCustomFonts.find( ( font ) => font.name === name ); + const installedFont = installedFonts.find( ( f ) => f.slug === font.slug ); + const activatedFont = initialCustomFonts.find( ( f ) => f.slug === font.slug ); let newCustomFonts; // Entire font family - if ( !style || !weight ) { + if ( !face ) { if ( !activatedFont ) { // If the font is not active, activate the entire font family newCustomFonts = [ ...initialCustomFonts, installedFont ]; } else { // If the font is already active, deactivate the entire font family - newCustomFonts = initialCustomFonts.filter( ( font ) => font.name !== name ); + newCustomFonts = initialCustomFonts.filter( ( f ) => f.slug !== font.slug ); } } else { //single font variant let newFontFaces; - const activatedFontFace = (activatedFont.fontFace || []).find(face => face.fontWeight === weight && face.fontStyle === style); - // If the font family is active if ( activatedFont ) { + const activatedFontFace = (activatedFont.fontFace || []).find(f => f.fontWeight === face.fontWeight && f.fontStyle === face.fontStyle); // If the font variant is active if ( activatedFontFace ) { // Deactivate the font variant - newFontFaces = activatedFont.fontFace.filter( ( face ) => face.fontWeight !== weight || face.fontStyle !== style ); + newFontFaces = activatedFont.fontFace.filter( ( f ) => !(f.fontWeight === face.fontWeight && f.fontStyle === face.fontStyle) ); + // If there are no more font faces, deactivate the font family + if ( newFontFaces?.length === 0 ) { + newCustomFonts = initialCustomFonts.filter( ( f ) => f.slug !== font.slug ); + } else { + // set the newFontFaces in the newCustomFonts + newCustomFonts = initialCustomFonts.map( f => f.slug === font.slug ? { ...f, fontFace: newFontFaces } : f); + } } else { // Activate the font variant - const fontFaceToAdd = installedFont.fontFace.find( ( face ) => face.fontWeight === weight && face.fontStyle === style ); - newFontFaces = [ ...activatedFont.fontFace, fontFaceToAdd ]; + newFontFaces = [ ...activatedFont.fontFace, face ]; + // set the newFontFaces in the newCustomFonts + newCustomFonts = initialCustomFonts.map( f => f.slug === font.slug ? { ...f, fontFace: newFontFaces } : f); } + } else { // If the font family is not active, activate the font family with the font variant - const fontFaceToAdd = installedFont.fontFace.find( ( face ) => face.fontWeight === weight && face.fontStyle === style ); - newFontFaces = [ fontFaceToAdd ]; + newFontFaces = [ face ]; + newCustomFonts = [ ...initialCustomFonts, { ...font, fontFace: newFontFaces } ]; } - - // set the newFontFaces in the newCustomFonts - newCustomFonts = initialCustomFonts.map( font => font.name === name ? { ...font, fontFace: newFontFaces } : font); + } setFontFamilies( { diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js index 9338f96d8c10c..7bb7a35edbc63 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js @@ -17,7 +17,7 @@ function LibraryFontCard ({ font, onClick }) { const isActive = isFontActivated( font.name ); const handleToggleFontActivation = () => { - toggleActivateFont( font.name ); + toggleActivateFont( font ); } const handleClick = () => { onClick( font.name ) }; @@ -32,6 +32,7 @@ function LibraryFontCard ({ font, onClick }) { return ( { if ( font?.fontFace ) { - toggleActivateFont( font.name, face.fontStyle, face.fontWeight ); + toggleActivateFont( font, face ); return; } - toggleActivateFont( font.name ); + toggleActivateFont( font ); } return ( From dfa88c9a9695246a77e031bb437aeadb75589bc1 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 00:45:32 -0300 Subject: [PATCH 028/116] fix available fonts logic --- .../global-styles/font-library-modal/context.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 19a36d8accd50..e30b47272873a 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -80,7 +80,7 @@ function FontLibraryProvider( { children } ) { const availableFontFaces = (font?.fontFace || []).map( (face) => ( `${face.fontStyle + face.fontWeight}` )); - acc[ font.name ] = availableFontFaces; + acc[ font.slug ] = availableFontFaces; return acc; } , {}); @@ -91,12 +91,11 @@ function FontLibraryProvider( { children } ) { return getAvailableFontsOutline( customFonts === null ? themeFonts : customFonts ); }, [ customFonts ] ); - const isFontActivated = ( name, style, weight ) => { + const isFontActivated = ( slug, style, weight ) => { if (!style && !weight) { - return !!activatedFontsOutline[ name ]; + return !!activatedFontsOutline[ slug ]; } - console.log(activatedFontsOutline); - return activatedFontsOutline[ name ]?.includes( style + weight ); + return !!activatedFontsOutline[ slug ]?.includes( style + weight ); } async function installFonts ( libraryFonts ) { @@ -213,7 +212,6 @@ function FontLibraryProvider( { children } ) { } - const loadFontFaceAsset = async ( fontFace ) => { if ( !fontFace.src ) { From 00a3da32b260889201ca05bd29218f637c74aa43 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 00:59:00 -0300 Subject: [PATCH 029/116] UI work --- .../components/global-styles/font-families.js | 2 +- .../font-library-modal/constants.js | 2 +- .../font-library-modal/font-card.js | 8 ++++--- .../font-library-modal/font-demo.js | 4 +++- .../font-library-modal/google-font-card.js | 23 ++++++++++++------- .../font-library-modal/google-fonts.js | 14 +++++++---- .../font-library-modal/library-font-card.js | 2 +- .../library-font-details.js | 3 +++ .../library-font-variant.js | 4 ++-- 9 files changed, 40 insertions(+), 22 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-families.js b/packages/edit-site/src/components/global-styles/font-families.js index 835b64b8845ad..51d7fb6f7ff84 100644 --- a/packages/edit-site/src/components/global-styles/font-families.js +++ b/packages/edit-site/src/components/global-styles/font-families.js @@ -67,7 +67,7 @@ function FontFamilies() { - { __( 'Fonts Available' ) } + { __( 'Fonts' ) } ( - + diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js index 40ee33e64a102..bf1e6bc5f2b15 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js @@ -8,10 +8,12 @@ import { import { useContext, useEffect, useState, useRef } from '@wordpress/element'; + /** * Internal dependencies */ import { FontLibraryContext } from './context'; +import { DEMO_TEXT } from './constants'; function FontFaceDemo ( { fontFace, style={} } ) { @@ -55,7 +57,7 @@ function FontFaceDemo ( { fontFace, style={} } ) { }, [ fontFace, isIntersecting ] ); return ( - { demoConfig.text } + { demoConfig.text || DEMO_TEXT } ); } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js index 68e51bc18d548..5f87acab163ae 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js @@ -6,7 +6,7 @@ import { Button, CheckboxControl, } from '@wordpress/components'; -import { download, check } from '@wordpress/icons'; +import { download, check, plus, reset } from '@wordpress/icons'; import { useContext } from '@wordpress/element'; /** @@ -28,18 +28,25 @@ function GoogleFontCard ( { font, onClick, toggleAddFont, isAdded } ) { return ( onClick( font.name ) } actionHandler={ - {} } - checked={ isAdded } - onClick={ ( event ) => - handleClick( event, font ) - } - /> + + // {} } + // checked={ isAdded } + // onClick={ ( event ) => + // handleClick( event, font ) + // } + // /> } /> ) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index 2a0ee2a382ec8..f755da9860e3e 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -234,11 +234,15 @@ function GoogleFonts() { ) } { fontSelected && ( - + <> + + + + ) } ) } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js index 7bb7a35edbc63..9164d68c082e9 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js @@ -14,7 +14,7 @@ import { FontLibraryContext } from './context'; function LibraryFontCard ({ font, onClick }) { const { toggleActivateFont, isFontActivated } = useContext( FontLibraryContext ); - const isActive = isFontActivated( font.name ); + const isActive = isFontActivated( font.slug ); const handleToggleFontActivation = () => { toggleActivateFont( font ); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js index 7bd7726164d09..125cd8bdbafe6 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js @@ -19,6 +19,7 @@ import { useDispatch } from '@wordpress/data'; */ import { FontLibraryContext } from './context'; import LibraryFontVariant from './library-font-variant'; +import PreviewControls from './preview-controls'; function LibraryFontDetails ({ font, handleUnselectFont }) { @@ -62,6 +63,8 @@ function LibraryFontDetails ({ font, handleUnselectFont }) { { __( `Would you like to remove ${font.name || font.fontFamily} and all its variants and assets?`) }
+ +
diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js index 4d5b3ef1a47c5..80e03031d5e45 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js @@ -16,8 +16,8 @@ function LibraryFontVariant ({ face, font }) { const { isFontActivated, toggleActivateFont } = useContext( FontLibraryContext ); const isIstalled = font?.fontFace - ? isFontActivated( font.name, face.fontStyle, face.fontWeight ) - : isFontActivated( font.name ); + ? isFontActivated( font.slug, face.fontStyle, face.fontWeight ) + : isFontActivated( font.slug ); const handleToggleActivation = () => { if ( font?.fontFace ) { From b7353483c3ec0764fda53e9870f227703c745a09 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 01:00:09 -0300 Subject: [PATCH 030/116] avoid the uninstall button if the font was added by a theme --- .../font-library-modal/installed-fonts.js | 1 + .../library-font-details.js | 61 +++++++++---------- 2 files changed, 30 insertions(+), 32 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index 57f59008994a8..2883614c8abf3 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -65,6 +65,7 @@ function InstalledFonts () { )} diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js index 125cd8bdbafe6..b2ad1a8bfe8fa 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js @@ -22,9 +22,9 @@ import LibraryFontVariant from './library-font-variant'; import PreviewControls from './preview-controls'; -function LibraryFontDetails ({ font, handleUnselectFont }) { +function LibraryFontDetails ({ font, handleUnselectFont, canBeRemoved }) { - const { uninstallFont } = useContext( FontLibraryContext ); + const { uninstallFont, isFontActivated } = useContext( FontLibraryContext ); const [ isConfirmOpen, setIsConfirmOpen ] = useState( false ); const { createErrorNotice, createSuccessNotice } = useDispatch( noticesStore ); @@ -51,6 +51,8 @@ function LibraryFontDetails ({ font, handleUnselectFont }) { setIsConfirmOpen( false ); }; + const isActive = isFontActivated( font.slug ); + return ( <> { __( `Would you like to remove ${font.name || font.fontFamily} and all its variants and assets?`) } -
- + + + + + -
- - - { fontFaces.map( ( face, i ) => ( - - ) ) } - -
- - - -
+ { fontFaces.map( ( face, i ) => ( + + ) ) } +
+ + + + {(!isActive && !!canBeRemoved) && ( + + )} + ); } From 1b3f29076b847641e1f97d7810db03153fd0f405 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 01:04:24 -0300 Subject: [PATCH 031/116] adding a flag to the theme installed fonts to avoid being removed --- .../src/components/global-styles/font-library-modal/context.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index e30b47272873a..2f3ee0e708e6e 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -30,7 +30,8 @@ function FontLibraryProvider( { children } ) { // Installed fonts const installedFonts = useMemo( () => ( - [ ...( themeFonts || [] ), ...( libraryFonts || [] ) ].sort( ( a, b ) => (a.name || a.slug).localeCompare( b.name || b.slug ) ) + [ ...( themeFonts.map(f=>({...f, source:"theme"})) || [] ), ...( libraryFonts || [] ) ] + .sort( ( a, b ) => (a.name || a.slug).localeCompare( b.name || b.slug ) ) ), [ themeFonts, libraryFonts ] ); // Google Fonts From 18912e6545ab4b0ea45884387fea15a9898c38f9 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 12:10:07 -0300 Subject: [PATCH 032/116] fixing is selected logic for google fonts --- .../global-styles/font-library-modal/google-font-card.js | 4 +++- .../global-styles/font-library-modal/google-fonts.js | 7 +++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js index 5f87acab163ae..8d23680e7fc03 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js @@ -15,7 +15,7 @@ import { useContext } from '@wordpress/element'; import { FontLibraryContext } from './context'; import FontCard from './font-card'; -function GoogleFontCard ( { font, onClick, toggleAddFont, isAdded } ) { +function GoogleFontCard ( { font, onClick, toggleAddFont, isFontAdded } ) { const { } = useContext( FontLibraryContext ); @@ -26,6 +26,8 @@ function GoogleFontCard ( { font, onClick, toggleAddFont, isAdded } ) { toggleAddFont( font ); }; + const isAdded = isFontAdded( font ); + return ( getAvailableFontsOutline( newFonts ), [ newFonts ] ); - const isFontAdded = ( font, fontFace ) => { if ( !fontFace ) { - return !!newFontsOutline[font.name]; + return !!newFontsOutline[font.slug]; } - return !!(newFontsOutline[font.name] || []).includes(fontFace.fontStyle + fontFace.fontWeight) + return !!(newFontsOutline[font.slug] || []).includes(fontFace.fontStyle + fontFace.fontWeight) } const handleSelectFont = ( name ) => { @@ -227,7 +226,7 @@ function GoogleFonts() { font={ font } onClick={ handleSelectFont } toggleAddFont={ toggleAddFont } - isAdded={ !!newFontsOutline[font.name] } + isFontAdded={ isFontAdded } /> ) ) } From 9bd78bb6b8dfe106f7edd0cb872b717bbec169a5 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 12:27:16 -0300 Subject: [PATCH 033/116] uninstall fonts api endpoint --- .../fonts-api/class-wp-fonts-library.php | 86 +++++++++---------- 1 file changed, 40 insertions(+), 46 deletions(-) diff --git a/lib/experimental/fonts-api/class-wp-fonts-library.php b/lib/experimental/fonts-api/class-wp-fonts-library.php index dc3b91694610e..1445ed9720714 100644 --- a/lib/experimental/fonts-api/class-wp-fonts-library.php +++ b/lib/experimental/fonts-api/class-wp-fonts-library.php @@ -44,7 +44,7 @@ function register_routes () { register_rest_route( $this->namespace, - '/' . $this->rest_base . '/install', + '/' . $this->rest_base, array( array( 'methods' => WP_REST_Server::EDITABLE, @@ -54,6 +54,18 @@ function register_routes () { ) ); + register_rest_route( + $this->namespace, + '/' . $this->rest_base, + array( + array( + 'methods' => WP_REST_Server::DELETABLE, + 'callback' => array( $this, 'uninstall_font_family' ), + 'permission_callback' => array( $this, 'fonts_library_permissions_check' ), + ), + ) + ); + register_rest_route( $this->namespace, '/' . $this->rest_base . '/google_fonts', @@ -116,51 +128,6 @@ function get_google_fonts () { return new WP_REST_Response( $data ); } - function prepare_item_for_database ( $font_families ) { - $new_font_families = array(); - foreach ( $font_families as $font_family ) { - - // Remove the entire family and all its font faces if it is marked for removal - if ( isset( $font_family['shouldBeRemoved'] ) ) { - if( isset( $font_family['fontFace'] ) ){ - foreach ( $font_family['fontFace'] as $font_face ) { - delete_font_face_asset( $font_face ); - } - } - // Update the family if it is not marked for removal - } else { - $new_font_family = $font_family; - if( isset( $font_family['fontFace'] ) ){ - $new_font_faces = array(); - foreach( $font_family['fontFace'] as $font_face ) { - $new_font_face = $this->prepare_font_face_for_database( $font_face ); - if ( $new_font_face ) { - $new_font_faces[] = $new_font_face; - } - } - $new_font_family['fontFace'] = $new_font_faces; - } - $new_font_families[] = $new_font_family; - } - - } - - return $new_font_families; - } - - function prepare_font_face_for_database ( $font_face ) { - if ( isset( $font_face['shouldBeRemoved'] ) ) { - $this->delete_font_face_asset( $font_face ); - return null; - } else { - if ( isset( $font_face['shouldBeDownloaded'] ) ){ - $prepared_font_face = $this->download_font_face_asset( $font_face ); - return $prepared_font_face; - } - return $font_face; - } - } - function delete_asset( $src ) { $filename = basename( $src ); $file_path = path_join( $this->wp_fonts_dir, $filename ); @@ -215,6 +182,33 @@ function download_font_face_asset ( $font_face ) { return $new_font_face; } + function uninstall_font_family ( $request ) { + $post = $this->query_fonts_library(); + $post_content = $post->post_content; + $library = json_decode( $post_content, true ); + $font_families = $library['fontFamilies']; + + $font_to_uninstall = $request->get_json_params(); + $new_font_families = $this->remove_font_family( $font_families, $font_to_uninstall ); + return $this->update_fonts_library( $new_font_families ); + } + + function remove_font_family ( $font_families, $font_to_uninstall ) { + $new_font_families = array(); + foreach ( $font_families as $font_family ) { + if ( $font_family['slug'] !== $font_to_uninstall['slug'] ) { + $new_font_families[] = $font_family; + } else { + if ( isset ( $font_family['fontFace'] ) ){ + foreach( $font_family['fontFace'] as $font_face ) { + $this->delete_font_face_assets( $font_face ); + } + } + } + } + return $new_font_families; + } + function install_fonts ( $request ) { $post = $this->query_fonts_library(); $post_content = $post->post_content; From 9bc215849e24696a9e79355f091b90499bc35e03 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 14:07:01 -0300 Subject: [PATCH 034/116] dealing with fonts without name --- .../src/components/global-styles/font-families.js | 2 +- .../global-styles/font-library-modal/context.js | 13 ++++++++++--- .../font-library-modal/installed-fonts.js | 2 +- .../font-library-modal/library-font-details.js | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-families.js b/packages/edit-site/src/components/global-styles/font-families.js index 51d7fb6f7ff84..98a5e5805f6a0 100644 --- a/packages/edit-site/src/components/global-styles/font-families.js +++ b/packages/edit-site/src/components/global-styles/font-families.js @@ -84,7 +84,7 @@ function FontFamilies() { {fonts.map( family => ( - { family.name } + { family.name || family.fontFamily } ))} diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 2f3ee0e708e6e..d1ee5adafefe2 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -29,10 +29,17 @@ function FontLibraryProvider( { children } ) { const [ libraryFonts, setLibraryFonts ] = useState( [] ); // Installed fonts - const installedFonts = useMemo( () => ( - [ ...( themeFonts.map(f=>({...f, source:"theme"})) || [] ), ...( libraryFonts || [] ) ] + const installedFonts = useMemo( () => { + const fromTheme = themeFonts.map( f =>({ + ...f, + source:"theme", + ...( !f.name ? { name: f.fontFamily } : {} ), + })) || []; + const fromLibrary = libraryFonts || []; + + return [ ...fromTheme, ...fromLibrary ] .sort( ( a, b ) => (a.name || a.slug).localeCompare( b.name || b.slug ) ) - ), [ themeFonts, libraryFonts ] ); + }, [ themeFonts, libraryFonts ] ); // Google Fonts const [ googleFonts, setGoogleFonts ] = useState( null ); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index 2883614c8abf3..d627a17d08ec1 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -53,7 +53,7 @@ function InstalledFonts () { {installedFonts.map( font => ( { handleSelectFont( font ) } } /> ) )} diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js index b2ad1a8bfe8fa..90de8941f5d12 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js @@ -62,7 +62,7 @@ function LibraryFontDetails ({ font, handleUnselectFont, canBeRemoved }) { onCancel={ handleCancelUninstall } onConfirm={ handleConfirmUninstall } > - { __( `Would you like to remove ${font.name || font.fontFamily} and all its variants and assets?`) } + { __( `Would you like to remove ${font.name} and all its variants and assets?`) } From 2f285cf1f0997bf07c137f6940c9d253f9c1369e Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 14:11:05 -0300 Subject: [PATCH 035/116] avoid mixing custom and theme fonts --- lib/experimental/fonts-api/class-wp-fonts-library.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/experimental/fonts-api/class-wp-fonts-library.php b/lib/experimental/fonts-api/class-wp-fonts-library.php index 1445ed9720714..e29ea9e974a38 100644 --- a/lib/experimental/fonts-api/class-wp-fonts-library.php +++ b/lib/experimental/fonts-api/class-wp-fonts-library.php @@ -81,8 +81,7 @@ function register_routes () { } function fonts_library_permissions_check () { - return true; - // return current_user_can( 'edit_posts' ); + return current_user_can( 'edit_posts' ); } function get_fonts_library () { From abe450a8bb66df2fb324a9c3e1b3eaade00534ab Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 14:11:41 -0300 Subject: [PATCH 036/116] avoid mixing custom and theme fonts --- lib/class-wp-theme-json-resolver-gutenberg.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/class-wp-theme-json-resolver-gutenberg.php b/lib/class-wp-theme-json-resolver-gutenberg.php index 2c61de7c5e24c..77d63bb372be5 100644 --- a/lib/class-wp-theme-json-resolver-gutenberg.php +++ b/lib/class-wp-theme-json-resolver-gutenberg.php @@ -275,7 +275,9 @@ public static function get_theme_data( $deprecated = array(), $options = array() } // BEGIN OF EXPERIMENTAL CODE. Not to backport to core. - static::$theme = gutenberg_add_registered_fonts_to_theme_json( static::$theme ); + // I'm disabling this because it merges custom and theme fonts and we need to keep them separate. + // TODO: explore more about this change and long term fix for this. + // static::$theme = gutenberg_add_registered_fonts_to_theme_json( static::$theme ); // END OF EXPERIMENTAL CODE. } From 9a8d230cfa4a75aa5192f7a858d236ef08859c94 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 14:12:27 -0300 Subject: [PATCH 037/116] google fonts api downloader and updater --- bin/fonts/get-google-fonts.js | 119 ++++++++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 bin/fonts/get-google-fonts.js diff --git a/bin/fonts/get-google-fonts.js b/bin/fonts/get-google-fonts.js new file mode 100644 index 0000000000000..00a2adcf00904 --- /dev/null +++ b/bin/fonts/get-google-fonts.js @@ -0,0 +1,119 @@ +const fs = require( 'fs' ); +const crypto = require( 'crypto' ); + +const API_URL = 'https://www.googleapis.com/webfonts/v1/webfonts?key='; +const API_KEY = process.env.GOOGLE_FONTS_API_KEY; +const GOOGLE_FONTS_FILE_PATH = '../../lib/experimental/fonts-api/google-fonts.json'; + +function getCategories ( fonts ) { + const categories = new Set(); + fonts.forEach( ( font ) => { + categories.add( font.category ); + } ); + // Returs an array of categories + return [ ...categories ]; +} + +function calculateHash( somestring ) { + return crypto + .createHash( 'md5' ) + .update( somestring ) + .digest( 'hex' ) + .toString(); +} + +// Google Fonts API categories mappping to fallback system fonts +const GOOGLE_FONT_FALLBACKS = { + 'display': 'system-ui', + 'sans-serif': 'sans-serif', + 'serif': 'serif', + 'handwriting': 'cursive', + 'monospace': 'monospace', +}; + +function getStyleFromGoogleVariant( variant ) { + return variant.includes( 'italic' ) ? 'italic' : 'normal'; +} + +function getWeightFromGoogleVariant( variant ) { + return variant === 'regular' || variant === 'italic' + ? '400' + : variant.replace( 'italic', '' ); +} + +function getFallbackForGoogleFont ( googleFontCategory ) { + return GOOGLE_FONT_FALLBACKS[ googleFontCategory ] || "system-ui"; +} + +function getFontFamilyFromGoogleFont ( font ) { + return { + name: font.family, + fontFamily: `${font.family}, ${ getFallbackForGoogleFont( font.category ) }`, + slug: font.family.replace( /\s+/g, '-' ).toLowerCase(), + category: font.category, + fontFace: font.variants.map( variant => ( + { + src: font.files?.[ variant ], + fontWeight: getWeightFromGoogleVariant( variant ), + fontStyle: getStyleFromGoogleVariant( variant ), + fontFamily: font.family, + } + ) ), + }; +} + +async function updateFiles() { + let newApiData; + let newData; + let response; + + try { + newApiData = await fetch( `${ API_URL }${ API_KEY }` ); + response = await newApiData.json(); + const fontFamilies = response.items.map( getFontFamilyFromGoogleFont ); + const categories = getCategories( response.items ); + newData = { fontFamilies, categories }; + + } catch ( error ) { + // TODO: show in UI and remove console statement + // eslint-disable-next-line + console.error( '❎ Error fetching the Google Fonts API:', error ); + process.exit( 1 ); + } + + if ( response.items ) { + const newDataString = JSON.stringify( newData, null, 2 ); + + const oldFileData = fs.readFileSync( + GOOGLE_FONTS_FILE_PATH, + 'utf8' + ); + const oldData = JSON.parse( oldFileData ); + const oldDataString = JSON.stringify( oldData, null, 2 ); + + if ( + calculateHash( newDataString ) !== calculateHash( oldDataString ) + ) { + fs.writeFileSync( + GOOGLE_FONTS_FILE_PATH, + newDataString + ); + // TODO: show in UI and remove console statement + // eslint-disable-next-line + console.info( '✅ Google Fonts JSON file updated' ); + } else { + // TODO: show in UI and remove console statement + // eslint-disable-next-line + console.info( 'ℹ️ Google Fonts JSON file is up to date' ); + } + } else { + // TODO: show in UI and remove console statement + // eslint-disable-next-line + console.error( + '❎ No new data to check. Check the Google Fonts API key.' + ); + process.exit( 1 ); + } +} + +updateFiles(); From a4f1bfabf8b74072ac7e9f13bf2fa242c763fe50 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 14:36:45 -0300 Subject: [PATCH 038/116] fixinf card styles with DEBUG false --- .../font-library-modal/style.scss | 29 ++++++++----------- 1 file changed, 12 insertions(+), 17 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss index 6af60faebd664..9926769deb670 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss +++ b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss @@ -22,12 +22,19 @@ } -.font-library-modal__font-card__name { - font-weight: bold; -} +.font-library-modal__font-card { + + & > div { + height: 100%; + } -.font-library-modal__font-card__count { - color: #6e6e6e; + .font-library-modal__font-card__name { + font-weight: bold; + } + + .font-library-modal__font-card__count { + color: #6e6e6e; + } } .font-library-modal__font-variant { @@ -46,16 +53,4 @@ margin: 0 -32px; padding: 0 16px; } -} - -.font-library-modal__font_details { - display: grid; - grid-template-columns: 4fr 1fr; - column-gap: 2rem; - - aside { - display: flex; - flex-direction: column; - justify-content: space-between; - } } \ No newline at end of file From eee8fc264ca9bef57087ec072a081c8e49df61b8 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 21:19:53 -0300 Subject: [PATCH 039/116] removing unused function --- .../font-library-modal/context.js | 46 ------------------- .../font-library-modal/google-font-card.js | 1 - 2 files changed, 47 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index d1ee5adafefe2..d72611d937abc 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -117,51 +117,6 @@ function FontLibraryProvider( { children } ) { setLibraryFonts( newLibraryFonts ); } - const toggleInstallFont = ( name, fontFace ) => { - const libraryFont = libraryFonts.find( ( font ) => font.name === name ); - const googleFont = googleFonts.find( ( font ) => font.name === name ); - let newLibraryFonts; - let newFontFaces; - - if ( !fontFace ) { // Entire font family - if ( libraryFont ){ // If the font is already installed - newLibraryFonts = libraryFonts.filter( ( font ) => font.name !== name ); - } else { // If the font is not installed - newLibraryFonts = [ ...libraryFonts, googleFont ]; - } - - } else { // Single font variant - const libraryFontFace = (libraryFont?.fontFace || []).find( ( face ) => face.fontStyle === fontFace.fontStyle && face.fontWeight === fontFace.fontWeight ); - - if ( !libraryFont ) { // If the font is not installed the fontface should be missing so we add it to the library - newLibraryFonts = [ ...libraryFonts, { ...googleFont, fontFace: [ fontFace ] } ]; - } else { - //If the font is already installed the fontface the font face could be installed or not - if ( libraryFontFace ) { - newFontFaces = libraryFont.fontFace.filter( face => ( - face.fontStyle !== fontFace.fontStyle && face.fontWeight !== fontFace.fontWeight - )); - } else { - newFontFaces = [ ...libraryFont.fontFace, fontFace ]; - } - // Update the font face of a existing font - newLibraryFonts = libraryFonts.map( font => { - if ( font.name === name ) { - return { - ...font, - fontFace: newFontFaces, - }; - } - return font; - }); - - } - - } - setLibraryFonts( newLibraryFonts ); - } - - const toggleActivateFont = ( font, face ) => { // If the user doesn't have custom fonts defined, include as custom fonts all the theme fonts @@ -267,7 +222,6 @@ function FontLibraryProvider( { children } ) { installFonts, uninstallFont, toggleActivateFont, - toggleInstallFont, getAvailableFontsOutline, } } > diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js index 8d23680e7fc03..b4a1c2ceaebeb 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js @@ -22,7 +22,6 @@ function GoogleFontCard ( { font, onClick, toggleAddFont, isFontAdded } ) { const handleClick = ( event, font ) => { event.stopPropagation(); - // toggleInstallFont( fontName ); toggleAddFont( font ); }; From 5795db2a1c2b250d1c2f29fa93f4ae1610d0c1a1 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 21:20:42 -0300 Subject: [PATCH 040/116] remove the font families with no font faces --- .../global-styles/font-library-modal/google-fonts.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index 1ec5f58af5482..ef36babc35a54 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -135,7 +135,8 @@ function GoogleFonts() { }; } return f; - } ); + } ) + .filter( f => f.fontFace.length > 0 ); setNewFonts( fontsToAdd ); return; } From a34480eda207a1ff0bdb40fd20ee7c28086c4c8a Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 21:41:39 -0300 Subject: [PATCH 041/116] removing unused utils --- .../global-styles/font-library-modal/utils.js | 105 ------------------ 1 file changed, 105 deletions(-) delete mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/utils.js diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/utils.js b/packages/edit-site/src/components/global-styles/font-library-modal/utils.js deleted file mode 100644 index a16c6fce2a8b0..0000000000000 --- a/packages/edit-site/src/components/global-styles/font-library-modal/utils.js +++ /dev/null @@ -1,105 +0,0 @@ -/** - * Internal dependencies - */ -import { GOOGLE_FONT_FALLBACKS } from './constants'; - - -/** - * Receives a theme.json like FontFamily object and outputs a font object for a FontCard component. - * - * @param {object} fontFamily a theme.json like FontFamily object - * @return {object} font objected used by FontCard component. - */ -export function fontFamilyToCardFont ( fontFamily, isActive = false ) { - return { - name: fontFamily.name || fontFamily.fontFamily, - family: fontFamily.fontFamily, - variantsCount: fontFamily.fontFace?.length || 1, - asset: fontFamily.fontFace?.[ 0 ]?.src, - isActive, - }; -} - -/** - * Receives a Google Font api font object and outputs a font object for a FontCard component. - * - * @param {object} googleFont a Google Font api font object - * @return {object} font objected used by FontCard component. - */ -export function googleFontToCardFont ( googleFont ) { - return { - name: googleFont.family, - family: googleFont.family, - variantsCount: googleFont.variants?.length || 1, - asset: googleFont.files?.regular || googleFont.files?.[ Object.keys( googleFont.files )[ 0 ] ], - }; -} - -/** - * Receives a Google font variant name and outputs a full variant name with the font weight and style. - * - * @param {string} variantName a Google font variant name - * @return {string} a full variant name with the font weight and style. - * - * @example - * googleVariantToFullVariant( "500italic" ) // "Italic 500" - */ -export function googleVariantToFullVariant ( variant ) { - const weight = getWeightFromGoogleVariant( variant ); - const style = variant.includes( "italic" ) ? "Italic" : "Normal"; - return `${ style } ${ weight }`; -} - -export function getStyleFromGoogleVariant( variant ) { - return variant.includes( 'italic' ) ? 'italic' : 'normal'; -} - -export function getWeightFromGoogleVariant( variant ) { - return variant === 'regular' || variant === 'italic' - ? '400' - : variant.replace( 'italic', '' ); -} - -function getFallbackForGoogleFont ( googleFontCategory ) { - return GOOGLE_FONT_FALLBACKS[ googleFontCategory ] || "system-ui"; -} - -/** -* Get the font definitions for a Google font family -* @param {Object} googleFont font family object as defined by Google Fonts API -* @param {string[]} variantsSelected array of variant names selected -* @return {Object[]} array of font definitions -*/ -export function fontFamilyFromGoogleFont ( googleFont, variantsSelected=[] ) { - const fontFamily = { - name: googleFont.family, - fontFamily: `${googleFont.family}, ${ getFallbackForGoogleFont( googleFont.category ) }`, - fontFace: googleFont.variants - .filter(variant => ( - !variantsSelected.length ? true : variantsSelected.includes( variant ) - )) - .map( variant => ( - { - src: googleFont.files?.[ variant ], - fontWeight: getWeightFromGoogleVariant( variant ), - fontStyle: getStyleFromGoogleVariant( variant ), - } - ) ), - }; - return fontFamily; -} - -export function getFontFamilyFromGoogleFont ( font ) { - return { - name: font.family, - fontFamily: `${font.family}, ${ getFallbackForGoogleFont( font.category ) }`, - slug: font.family.replace( /\s+/g, '-' ).toLowerCase(), - fontFace: font.variants.map( variant => ( - { - src: font.files?.[ variant ], - fontWeight: getWeightFromGoogleVariant( variant ), - fontStyle: getStyleFromGoogleVariant( variant ), - } - ) ), - }; -} \ No newline at end of file From b3b8fc30307a9954af1487149b5eda1525df469e Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 21:43:52 -0300 Subject: [PATCH 042/116] removing unused imports --- .../components/global-styles/font-library-modal/context.js | 1 - .../components/global-styles/font-library-modal/font-card.js | 1 - .../components/global-styles/font-library-modal/font-demo.js | 2 -- .../global-styles/font-library-modal/font-variant.js | 4 +--- .../global-styles/font-library-modal/google-font-card.js | 3 +-- .../global-styles/font-library-modal/google-font-variant.js | 2 -- .../global-styles/font-library-modal/google-fonts.js | 3 --- .../global-styles/font-library-modal/library-font-card.js | 2 +- 8 files changed, 3 insertions(+), 15 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index d72611d937abc..423d74edd0955 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -5,7 +5,6 @@ import { createContext, useState, useEffect, useMemo } from '@wordpress/element'; import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor'; import { useSelect } from '@wordpress/data'; -import { debounce } from '@wordpress/compose'; /** * Internal dependencies diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js index 2d0053a7ee57f..f935b66e284d7 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js @@ -17,7 +17,6 @@ import { import FontFaceDemo from "./font-demo"; - function FontCard ( { font, onClick, actionHandler, elevation } ) { const fakeFontFace = { diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js index bf1e6bc5f2b15..925ec46279b04 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js @@ -7,8 +7,6 @@ import { } from '@wordpress/components'; import { useContext, useEffect, useState, useRef } from '@wordpress/element'; - - /** * Internal dependencies */ diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js index a5d0f4f696de6..e90c0265cf425 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js @@ -9,15 +9,13 @@ import { __experimentalHStack as HStack, CheckboxControl, } from '@wordpress/components'; -import { useContext, useEffect, useState } from '@wordpress/element'; - /** * Internal dependencies */ -import { FontLibraryContext } from './context'; import FontFaceDemo from './font-demo'; + function FontVariant ( { fontFace, variantName, checked, onClick } ) { const { fontStyle, fontWeight } = fontFace; const displayVariantName = variantName || `${fontWeight} ${fontStyle}`; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js index b4a1c2ceaebeb..8d5862b21c390 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js @@ -4,9 +4,8 @@ import { __ } from '@wordpress/i18n'; import { Button, - CheckboxControl, } from '@wordpress/components'; -import { download, check, plus, reset } from '@wordpress/icons'; +import { plus, reset } from '@wordpress/icons'; import { useContext } from '@wordpress/element'; /** diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-variant.js index 6cdac8e6427a6..40a8b3cbc97b2 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-variant.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-variant.js @@ -2,12 +2,10 @@ * WordPress dependencies */ import { __ } from '@wordpress/i18n'; -import { useContext } from '@wordpress/element'; /** * Internal dependencies */ -import { FontLibraryContext } from './context'; import FontVariant from './font-variant'; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index ef36babc35a54..4cff25f54100a 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -5,12 +5,9 @@ import { __ } from '@wordpress/i18n'; import { useMemo, useState, useContext, useEffect } from '@wordpress/element'; import { Spinner, - __experimentalHeading as Heading, __experimentalText as Text, - __experimentalVStack as VStack, __experimentalHStack as HStack, __experimentalSpacer as Spacer, - CheckboxControl, __experimentalInputControl as InputControl, Button, SelectControl, diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js index 9164d68c082e9..7f7c58fc6f507 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js @@ -3,7 +3,7 @@ */ import { __ } from '@wordpress/i18n'; import { CheckboxControl } from '@wordpress/components'; -import { useContext, useMemo } from '@wordpress/element'; +import { useContext } from '@wordpress/element'; /** * Internal dependencies From 3c08990ee0427a3692099ac4502c384cea4cfe2b Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 24 May 2023 22:03:52 -0300 Subject: [PATCH 043/116] using slug instead of name to find fonts --- .../global-styles/font-library-modal/context.js | 1 - .../global-styles/font-library-modal/google-fonts.js | 10 +++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 423d74edd0955..b9e407db24e5f 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -111,7 +111,6 @@ function FontLibraryProvider( { children } ) { } async function uninstallFont ( fontFamily ) { - console.log ( "uninstallFont", fontFamily ); const newLibraryFonts = await fetchUninstallFonts( fontFamily ); setLibraryFonts( newLibraryFonts ); } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index 4cff25f54100a..9dfeb501b343a 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -105,10 +105,10 @@ function GoogleFonts() { }; const toggleAddFont = ( font, fontFace ) => { - const existingFont = newFonts.find( f => f.name === font.name ); + const existingFont = newFonts.find( f => f.slug === font.slug ); if( !fontFace ) { if ( existingFont ) { - const fontsToAdd = newFonts.filter( f => f.name !== font.name ); + const fontsToAdd = newFonts.filter( f => f.slug !== font.slug ); setNewFonts( fontsToAdd ); return; } @@ -122,7 +122,7 @@ function GoogleFonts() { if ( existingFontFace ) { const fontsToAdd = newFonts.map( f => { - if ( f.name === font.name ) { + if ( f.slug === font.slug ) { const fontFaceToAdd = f.fontFace.filter( face => ( (face.fontStyle !== fontFace.fontStyle || face.fontWeight !== fontFace.fontWeight)) ); @@ -138,7 +138,7 @@ function GoogleFonts() { return; } const fontsToAdd = newFonts.map( f => { - if ( f.name === font.name ) { + if ( f.slug === font.slug ) { return { ...f, fontFace: [ ...f.fontFace, fontFace ], @@ -220,7 +220,7 @@ function GoogleFonts() { { fonts.map( ( font ) => ( Date: Wed, 24 May 2023 22:10:00 -0300 Subject: [PATCH 044/116] simplify function --- .../global-styles/font-library-modal/google-font-card.js | 2 +- .../global-styles/font-library-modal/google-fonts.js | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js index 8d5862b21c390..13535466b299b 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js @@ -31,7 +31,7 @@ function GoogleFontCard ( { font, onClick, toggleAddFont, isFontAdded } ) { elevation={ isAdded ? 1 : 0 } font={ font } onClick={ () => - onClick( font.name ) + onClick( font ) } actionHandler={ - // {} } - // checked={ isAdded } - // onClick={ ( event ) => - // handleClick( event, font ) - // } - // /> - } - /> - ) + return ( + onClick( font ) } + actionHandler={ + + // {} } + // checked={ isAdded } + // onClick={ ( event ) => + // handleClick( event, font ) + // } + // /> + } + /> + ); } export default GoogleFontCard; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-details.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-details.js index 93d4e201be3e4..e056391ddf921 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-details.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-details.js @@ -12,23 +12,23 @@ import { */ import GoogleFontVariant from './google-font-variant'; -function GoolgeFontDetails ({ font, toggleAddFont, isFontAdded }) { - return ( - <> - - - { font.fontFace.map( ( face, i ) => ( - - ) ) } - - - ); +function GoolgeFontDetails( { font, toggleAddFont, isFontAdded } ) { + return ( + <> + + + { font.fontFace.map( ( face, i ) => ( + + ) ) } + + + ); } export default GoolgeFontDetails; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-variant.js index 40a8b3cbc97b2..07fc9725bf595 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-variant.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-variant.js @@ -8,17 +8,16 @@ import { __ } from '@wordpress/i18n'; */ import FontVariant from './font-variant'; - -function GoogleFontVariant ({ font, fontFace, toggleAddFont, isFontAdded }) { - const isAdded = isFontAdded( font, fontFace ); - return ( - toggleAddFont( font, fontFace ) } - onChange={ () => {} } - /> - ); +function GoogleFontVariant( { font, fontFace, toggleAddFont, isFontAdded } ) { + const isAdded = isFontAdded( font, fontFace ); + return ( + toggleAddFont( font, fontFace ) } + onChange={ () => {} } + /> + ); } export default GoogleFontVariant; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index 8defe86044006..d66ffff3e174b 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -24,14 +24,13 @@ import GoogleFontCard from './google-font-card'; import GoolgeFontDetails from './google-font-details'; import PreviewControls from './preview-controls'; - const filterFonts = ( fonts, filters ) => { const { category, search } = filters; let filteredFonts = fonts || []; if ( category && category !== 'all' ) { - filteredFonts = filteredFonts.filter( ( font ) => - font.category === category + filteredFonts = filteredFonts.filter( + ( font ) => font.category === category ); } @@ -40,20 +39,20 @@ const filterFonts = ( fonts, filters ) => { font.name.toLowerCase().includes( search.toLowerCase() ) ); } - - return filteredFonts.slice(0,96); -} + + return filteredFonts.slice( 0, 96 ); +}; function GoogleFonts() { const { - googleFonts, - googleFontsCategories, + googleFonts, + googleFontsCategories, installFonts, getAvailableFontsOutline, - } = useContext( FontLibraryContext ); + } = useContext( FontLibraryContext ); const [ fontSelected, setFontSelected ] = useState( null ); const [ filters, setFilters ] = useState( {} ); - + const [ newFonts, setNewFonts ] = useState( [] ); const [ isSaving, setIsSaving ] = useState( false ); @@ -63,13 +62,18 @@ function GoogleFonts() { } }, [ googleFontsCategories ] ); - const newFontsOutline = useMemo( () => getAvailableFontsOutline( newFonts ), [ newFonts ] ); + const newFontsOutline = useMemo( + () => getAvailableFontsOutline( newFonts ), + [ newFonts ] + ); const isFontAdded = ( font, fontFace ) => { - if ( !fontFace ) { - return !!newFontsOutline[font.slug]; + if ( ! fontFace ) { + return !! newFontsOutline[ font.slug ]; } - return !!(newFontsOutline[font.slug] || []).includes(fontFace.fontStyle + fontFace.fontWeight) - } + return !! ( newFontsOutline[ font.slug ] || [] ).includes( + fontFace.fontStyle + fontFace.fontWeight + ); + }; const handleSelectFont = ( font ) => { setFontSelected( font ); @@ -84,8 +88,9 @@ function GoogleFonts() { }; const debouncedUpdateSearchInput = debounce( handleUpdateSearchInput, 300 ); - const fonts = useMemo( () => filterFonts( googleFonts, filters ), - [googleFonts, filters] + const fonts = useMemo( + () => filterFonts( googleFonts, filters ), + [ googleFonts, filters ] ); const tabDescription = fontSelected @@ -104,10 +109,12 @@ function GoogleFonts() { }; const toggleAddFont = ( font, fontFace ) => { - const existingFont = newFonts.find( f => f.slug === font.slug ); - if( !fontFace ) { + const existingFont = newFonts.find( ( f ) => f.slug === font.slug ); + if ( ! fontFace ) { if ( existingFont ) { - const fontsToAdd = newFonts.filter( f => f.slug !== font.slug ); + const fontsToAdd = newFonts.filter( + ( f ) => f.slug !== font.slug + ); setNewFonts( fontsToAdd ); return; } @@ -117,26 +124,32 @@ function GoogleFonts() { } if ( existingFont ) { - const existingFontFace = existingFont.fontFace.find( f => f.fontStyle === fontFace.fontStyle && f.fontWeight === fontFace.fontWeight ); + const existingFontFace = existingFont.fontFace.find( + ( f ) => + f.fontStyle === fontFace.fontStyle && + f.fontWeight === fontFace.fontWeight + ); if ( existingFontFace ) { - - const fontsToAdd = newFonts.map( f => { - if ( f.slug === font.slug ) { - const fontFaceToAdd = f.fontFace.filter( face => ( - (face.fontStyle !== fontFace.fontStyle || face.fontWeight !== fontFace.fontWeight)) - ); - return { - ...f, - fontFace: fontFaceToAdd, - }; - } - return f; - } ) - .filter( f => f.fontFace.length > 0 ); + const fontsToAdd = newFonts + .map( ( f ) => { + if ( f.slug === font.slug ) { + const fontFaceToAdd = f.fontFace.filter( + ( face ) => + face.fontStyle !== fontFace.fontStyle || + face.fontWeight !== fontFace.fontWeight + ); + return { + ...f, + fontFace: fontFaceToAdd, + }; + } + return f; + } ) + .filter( ( f ) => f.fontFace.length > 0 ); setNewFonts( fontsToAdd ); return; } - const fontsToAdd = newFonts.map( f => { + const fontsToAdd = newFonts.map( ( f ) => { if ( f.slug === font.slug ) { return { ...f, @@ -151,18 +164,21 @@ function GoogleFonts() { const fontsToAdd = [ ...newFonts, { ...font, fontFace: [ fontFace ] } ]; setNewFonts( fontsToAdd ); - return; - } + }; const Footer = () => { return ( - ); - } + }; return ( } > { fonts === null && ( - + - { __( 'Loading fonts...' ) } + { __( 'Loading fonts…' ) } ) } - { ( fonts && fonts.length >= 0 && !fontSelected ) && ( + { fonts && fonts.length >= 0 && ! fontSelected && ( <> - + @@ -192,26 +208,28 @@ function GoogleFonts() { value={ filters.category } onChange={ handleCategoryFilter } > - { googleFontsCategories && googleFontsCategories.map( ( category ) => ( - - ) ) } + { googleFontsCategories && + googleFontsCategories.map( ( category ) => ( + + ) ) } - - )} + ) } { fonts && fonts.length === 0 && ( - - { __( 'No fonts found try another search term' ) } + + + { __( 'No fonts found try another search term' ) } + - )} + ) } { fonts && fonts.length > 0 && ( <> diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/index.js b/packages/edit-site/src/components/global-styles/font-library-modal/index.js index 5728d685f004a..5798d4e16043c 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/index.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/index.js @@ -2,10 +2,7 @@ * WordPress dependencies */ import { __ } from '@wordpress/i18n'; -import { - Modal, - TabPanel, -} from '@wordpress/components'; +import { Modal, TabPanel } from '@wordpress/components'; /** * Internal dependencies @@ -16,44 +13,40 @@ import GoogleFonts from './google-fonts'; import LocalFonts from './local-fonts'; import { MODAL_TABS } from './constants'; - -function FontLibraryModal( { onRequestClose, initialTabName = "installed-fonts" } ) { - return ( - - - { ( tab ) => { - switch ( tab.name ) { - case 'google-fonts': - return ( - - ); - case 'local-fonts': - return ( - - ); - case 'installed-fonts': - default: - return ( - - ); - } - } } - - - ); +function FontLibraryModal( { + onRequestClose, + initialTabName = 'installed-fonts', +} ) { + return ( + + + { ( tab ) => { + switch ( tab.name ) { + case 'google-fonts': + return ; + case 'local-fonts': + return ; + case 'installed-fonts': + default: + return ; + } + } } + + + ); } -export default ({ ...props }) => ( - - - +export default ( { ...props } ) => ( + + + ); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index d627a17d08ec1..03b3c46167beb 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -3,9 +3,9 @@ */ import { __ } from '@wordpress/i18n'; import { useContext, useState } from '@wordpress/element'; -import { - __experimentalHStack as HStack, - __experimentalSpacer as Spacer, +import { + __experimentalHStack as HStack, + __experimentalSpacer as Spacer, } from '@wordpress/components'; /** @@ -19,68 +19,66 @@ import LibraryFontDetails from './library-font-details'; import SaveButton from '../../save-button'; import PreviewControls from './preview-controls'; - -function InstalledFonts () { +function InstalledFonts() { const { installedFonts } = useContext( FontLibraryContext ); - const [ fontSelected, setFontSelected ] = useState( null ); - - const handleUnselectFont = () => { - setFontSelected( null ); - }; + const [ fontSelected, setFontSelected ] = useState( null ); - const handleSelectFont = ( font ) => { - setFontSelected( font ); - }; + const handleUnselectFont = () => { + setFontSelected( null ); + }; - const tabDescription = !!fontSelected - ? __(`${fontSelected.name} variants.`) - : __("Fonts installed in your WordPress, activate them to use in your site."); + const handleSelectFont = ( font ) => { + setFontSelected( font ); + }; - return ( - } - > - + const tabDescription = !! fontSelected + ? __( `${ fontSelected.name } variants.` ) + : __( + 'Fonts installed in your WordPress, activate them to use in your site.' + ); - {!fontSelected && ( - <> - - - - {installedFonts.map( font => ( - { handleSelectFont( font ) } } - /> - ) )} - - - )} + return ( + } + > + { ! fontSelected && ( + <> + + + + { installedFonts.map( ( font ) => ( + { + handleSelectFont( font ); + } } + /> + ) ) } + + + ) } - {fontSelected && ( - - )} - - - - ); + { fontSelected && ( + + ) } + + ); } function Footer() { - return ( - - - - ); + return ( + + + + ); } - export default InstalledFonts; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js index 7f7c58fc6f507..1a68ad0be8fce 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js @@ -11,33 +11,35 @@ import { useContext } from '@wordpress/element'; import FontCard from './font-card'; import { FontLibraryContext } from './context'; - -function LibraryFontCard ({ font, onClick }) { - const { toggleActivateFont, isFontActivated } = useContext( FontLibraryContext ); - const isActive = isFontActivated( font.slug ); - - const handleToggleFontActivation = () => { - toggleActivateFont( font ); - } - - const handleClick = () => { onClick( font.name ) }; - - const actionHandler = ( - e.stopPropagation() } - onChange={ handleToggleFontActivation } - /> - ); - - return ( - - ); +function LibraryFontCard( { font, onClick } ) { + const { toggleActivateFont, isFontActivated } = + useContext( FontLibraryContext ); + const isActive = isFontActivated( font.slug ); + + const handleToggleFontActivation = () => { + toggleActivateFont( font ); + }; + + const handleClick = () => { + onClick( font.name ); + }; + + const actionHandler = ( + e.stopPropagation() } + onChange={ handleToggleFontActivation } + /> + ); + + return ( + + ); } export default LibraryFontCard; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js index 90de8941f5d12..64bb1d8c63845 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js @@ -3,17 +3,16 @@ */ import { __ } from '@wordpress/i18n'; import { useContext, useState } from '@wordpress/element'; -import { - Button, - __experimentalVStack as VStack, - __experimentalSpacer as Spacer, - __experimentalText as Text, - __experimentalConfirmDialog as ConfirmDialog, +import { + Button, + __experimentalVStack as VStack, + __experimentalSpacer as Spacer, + __experimentalText as Text, + __experimentalConfirmDialog as ConfirmDialog, } from '@wordpress/components'; import { store as noticesStore } from '@wordpress/notices'; import { useDispatch } from '@wordpress/data'; - /** * Internal dependencies */ @@ -21,77 +20,90 @@ import { FontLibraryContext } from './context'; import LibraryFontVariant from './library-font-variant'; import PreviewControls from './preview-controls'; - -function LibraryFontDetails ({ font, handleUnselectFont, canBeRemoved }) { - - const { uninstallFont, isFontActivated } = useContext( FontLibraryContext ); - const [ isConfirmOpen, setIsConfirmOpen ] = useState( false ); - const { createErrorNotice, createSuccessNotice } = useDispatch( noticesStore ); - - - const fontFaces = ( font.fontFace && font.fontFace.length ) - ? font.fontFace - : [ { fontFamily: font.fontFamily, fontStyle: 'normal', fontWeight: '400' } ]; - - const handleConfirmUninstall = async () => { - try { - await uninstallFont( font ); - createSuccessNotice( __(`${font?.name || font.fontFamily} was uninstalled.`), { type: 'snackbar' } ); - } catch (e) { - createErrorNotice( __(`Error deleting font. ${font?.name || font.fontFamily} could not be uninstalled.`), { type: 'snackbar' } ); - } - handleUnselectFont(); - } - - const handleUninstallClick = async () => { - setIsConfirmOpen( true ); - }; - - const handleCancelUninstall = () => { - setIsConfirmOpen( false ); - }; - - const isActive = isFontActivated( font.slug ); - - return ( - <> - - { __( `Would you like to remove ${font.name} and all its variants and assets?`) } - - - - - - - - { fontFaces.map( ( face, i ) => ( - - ) ) } - - - - - {(!isActive && !!canBeRemoved) && ( - - )} - - - ); +function LibraryFontDetails( { font, handleUnselectFont, canBeRemoved } ) { + const { uninstallFont, isFontActivated } = useContext( FontLibraryContext ); + const [ isConfirmOpen, setIsConfirmOpen ] = useState( false ); + const { createErrorNotice, createSuccessNotice } = + useDispatch( noticesStore ); + + const fontFaces = + font.fontFace && font.fontFace.length + ? font.fontFace + : [ + { + fontFamily: font.fontFamily, + fontStyle: 'normal', + fontWeight: '400', + }, + ]; + + const handleConfirmUninstall = async () => { + try { + await uninstallFont( font ); + createSuccessNotice( + __( `${ font?.name || font.fontFamily } was uninstalled.` ), + { type: 'snackbar' } + ); + } catch ( e ) { + createErrorNotice( + __( + `Error deleting font. ${ + font?.name || font.fontFamily + } could not be uninstalled.` + ), + { type: 'snackbar' } + ); + } + handleUnselectFont(); + }; + + const handleUninstallClick = async () => { + setIsConfirmOpen( true ); + }; + + const handleCancelUninstall = () => { + setIsConfirmOpen( false ); + }; + + const isActive = isFontActivated( font.slug ); + + return ( + <> + + { __( + `Would you like to remove ${ font.name } and all its variants and assets?` + ) } + + + + + + + + { fontFaces.map( ( face, i ) => ( + + ) ) } + + + + + { ! isActive && !! canBeRemoved && ( + + ) } + + ); } export default LibraryFontDetails; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js index 80e03031d5e45..ece3bce9f4c7f 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-variant.js @@ -10,30 +10,29 @@ import { useContext } from '@wordpress/element'; import { FontLibraryContext } from './context'; import FontVariant from './font-variant'; +function LibraryFontVariant( { face, font } ) { + const { isFontActivated, toggleActivateFont } = + useContext( FontLibraryContext ); -function LibraryFontVariant ({ face, font }) { + const isIstalled = font?.fontFace + ? isFontActivated( font.slug, face.fontStyle, face.fontWeight ) + : isFontActivated( font.slug ); - const { isFontActivated, toggleActivateFont } = useContext( FontLibraryContext ); + const handleToggleActivation = () => { + if ( font?.fontFace ) { + toggleActivateFont( font, face ); + return; + } + toggleActivateFont( font ); + }; - const isIstalled = font?.fontFace - ? isFontActivated( font.slug, face.fontStyle, face.fontWeight ) - : isFontActivated( font.slug ); - - const handleToggleActivation = () => { - if ( font?.fontFace ) { - toggleActivateFont( font, face ); - return; - } - toggleActivateFont( font ); - } - - return ( - - ); + return ( + + ); } export default LibraryFontVariant; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js index 724bb507daea7..29e6c4e9674d4 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js @@ -2,38 +2,30 @@ * WordPress dependencies */ import { __ } from '@wordpress/i18n'; -import { - Button, - __experimentalHStack as HStack, -} from '@wordpress/components'; - +import { Button, __experimentalHStack as HStack } from '@wordpress/components'; /** * Internal dependencies */ import TabLayout from './tab-layout'; -function LocalFonts () { - - const Footer = () => { +function LocalFonts() { + const Footer = () => { return ( ); - } - + }; - return ( - } - > - - - ); + return ( + } + > + ); } export default LocalFonts; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/preview-controls.js b/packages/edit-site/src/components/global-styles/font-library-modal/preview-controls.js index ab3a5747f128f..807e8c07bbc12 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/preview-controls.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/preview-controls.js @@ -4,11 +4,11 @@ import { __ } from '@wordpress/i18n'; import { useContext } from '@wordpress/element'; import { - RangeControl, + RangeControl, __experimentalInputControl as InputControl, - __experimentalHStack as HStack, - Button, - __experimentalVStack as VStack, + __experimentalHStack as HStack, + Button, + __experimentalVStack as VStack, } from '@wordpress/components'; import { update } from '@wordpress/icons'; @@ -17,46 +17,46 @@ import { update } from '@wordpress/icons'; */ import { FontLibraryContext } from './context'; -function PreviewControls () { +function PreviewControls() { + const { demoConfig, updateDemoConfig, setDefaultDemoConfig } = + useContext( FontLibraryContext ); - const { - demoConfig, - updateDemoConfig, - setDefaultDemoConfig - } = useContext( FontLibraryContext ); + const onDemoTextBlur = ( event ) => { + if ( ! event.target.value ) { + setDefaultDemoConfig( 'text' ); + } + }; - const onDemoTextBlur = ( event ) => { - if ( !event.target.value ) { - setDefaultDemoConfig('text'); - } - } + return ( + + updateDemoConfig( 'text', value ) } + onBlur={ onDemoTextBlur } + /> - return ( - - updateDemoConfig( 'text', value ) } - onBlur={ onDemoTextBlur } - /> - -
- updateDemoConfig( 'fontSize', value ) } - min={ 8 } - max={ 72 } - /> -
-
-
- { children } -
-
- { footer } -
-
-
- ); +function TabLayout( { title, description, handleBack, children, footer } ) { + return ( +
+ + +
+ + + { !! handleBack && ( +
+
{ children }
+
{ footer }
+
+
+ ); } export default TabLayout; diff --git a/packages/edit-site/src/components/global-styles/screen-typography.js b/packages/edit-site/src/components/global-styles/screen-typography.js index 17f3e9c050816..fd001d99fbfc6 100644 --- a/packages/edit-site/src/components/global-styles/screen-typography.js +++ b/packages/edit-site/src/components/global-styles/screen-typography.js @@ -2,9 +2,7 @@ * WordPress dependencies */ import { __ } from '@wordpress/i18n'; -import { - __experimentalVStack as VStack, -} from '@wordpress/components'; +import { __experimentalVStack as VStack } from '@wordpress/components'; /** * Internal dependencies diff --git a/packages/edit-site/src/components/global-styles/typogrphy-elements.js b/packages/edit-site/src/components/global-styles/typogrphy-elements.js index 3369c08f7f00b..53505b4b3cf67 100644 --- a/packages/edit-site/src/components/global-styles/typogrphy-elements.js +++ b/packages/edit-site/src/components/global-styles/typogrphy-elements.js @@ -10,7 +10,6 @@ import { } from '@wordpress/components'; import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor'; - /** * Internal dependencies */ From 7bc0c2d7d804de2418aafb8a75f5755e2e313c8c Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 25 May 2023 12:10:57 -0300 Subject: [PATCH 048/116] removing card elevation --- .../components/global-styles/font-library-modal/font-card.js | 4 ++-- .../global-styles/font-library-modal/google-font-card.js | 1 - .../global-styles/font-library-modal/library-font-card.js | 1 - 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js index 871859e93c800..858be03b634d1 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js @@ -16,7 +16,7 @@ import { */ import FontFaceDemo from './font-demo'; -function FontCard( { font, onClick, actionHandler, elevation } ) { +function FontCard( { font, onClick, actionHandler } ) { const fakeFontFace = { fontStyle: 'normal', fontWeight: '400', @@ -44,7 +44,7 @@ function FontCard( { font, onClick, actionHandler, elevation } ) { style={ style } className="font-library-modal__font-card" > - + diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js index 3dab9f8d63ce4..41f1af4ba87fd 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-font-card.js @@ -24,7 +24,6 @@ function GoogleFontCard( { font, onClick, toggleAddFont, isFontAdded } ) { return ( onClick( font ) } actionHandler={ diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js index 1a68ad0be8fce..ab72f89ae2fec 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js @@ -34,7 +34,6 @@ function LibraryFontCard( { font, onClick } ) { return ( Date: Mon, 29 May 2023 15:35:06 -0300 Subject: [PATCH 049/116] adding lib-font library to read font metadata tables --- package-lock.json | 35 ++++++++++++++++++++--------------- package.json | 1 + tools/webpack/packages.js | 6 ++++++ 3 files changed, 27 insertions(+), 15 deletions(-) diff --git a/package-lock.json b/package-lock.json index 24e57ea2f08f8..eea9cdcffb890 100644 --- a/package-lock.json +++ b/package-lock.json @@ -25536,7 +25536,7 @@ "array-ify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", - "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", + "integrity": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=", "dev": true }, "array-includes": { @@ -28899,7 +28899,7 @@ "co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", "dev": true }, "code-point-at": { @@ -30476,7 +30476,7 @@ "css.escape": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", "dev": true }, "cssesc": { @@ -30705,7 +30705,7 @@ "debuglog": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz", - "integrity": "sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==", + "integrity": "sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=", "dev": true }, "decache": { @@ -35547,7 +35547,7 @@ "git-remote-origin-url": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz", - "integrity": "sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==", + "integrity": "sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=", "dev": true, "requires": { "gitconfiglocal": "^1.0.0", @@ -35594,7 +35594,7 @@ "gitconfiglocal": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz", - "integrity": "sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==", + "integrity": "sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=", "dev": true, "requires": { "ini": "^1.3.2" @@ -36868,7 +36868,7 @@ "humanize-ms": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", "dev": true, "requires": { "ms": "^2.0.0" @@ -37884,7 +37884,7 @@ "is-text-path": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", - "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", + "integrity": "sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=", "dev": true, "requires": { "text-extensions": "^1.0.0" @@ -39657,7 +39657,7 @@ "jsonparse": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=", "dev": true }, "jsprim": { @@ -39963,6 +39963,11 @@ "type-check": "~0.3.2" } }, + "lib-font": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/lib-font/-/lib-font-2.4.0.tgz", + "integrity": "sha512-j2Hyn12JjMLe9JkFDRq40q4+tOeDg276Z9Ezxyhas8HEv0jNLbRXyzG7r7n6QdLbWRtL2RYQtgVlIt3Q4ur6nQ==" + }, "libnpmaccess": { "version": "6.0.4", "resolved": "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-6.0.4.tgz", @@ -40757,7 +40762,7 @@ "lodash.ismatch": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", - "integrity": "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==", + "integrity": "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=", "dev": true }, "lodash.isplainobject": { @@ -41037,7 +41042,7 @@ "lz-string": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz", - "integrity": "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=", + "integrity": "sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==", "dev": true }, "macos-release": { @@ -48260,7 +48265,7 @@ "promzard": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz", - "integrity": "sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw==", + "integrity": "sha1-JqXW7ox97kyxIggwWs+5O6OCqe4=", "dev": true, "requires": { "read": "1" @@ -48294,7 +48299,7 @@ "proto-list": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=", "dev": true }, "protocols": { @@ -49851,7 +49856,7 @@ "read": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", - "integrity": "sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==", + "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", "dev": true, "requires": { "mute-stream": "~0.0.4" @@ -55208,7 +55213,7 @@ "temp-dir": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", - "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==", + "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=", "dev": true }, "terminal-link": { diff --git a/package.json b/package.json index e0dcf82aca3bf..69bbe470ec367 100644 --- a/package.json +++ b/package.json @@ -87,6 +87,7 @@ "@wordpress/warning": "file:packages/warning", "@wordpress/widgets": "file:packages/widgets", "@wordpress/wordcount": "file:packages/wordcount", + "lib-font": "2.4.0", "wicg-inert": "3.1.2" }, "devDependencies": { diff --git a/tools/webpack/packages.js b/tools/webpack/packages.js index 30f73a82fa0da..9b34e2171de56 100644 --- a/tools/webpack/packages.js +++ b/tools/webpack/packages.js @@ -157,4 +157,10 @@ module.exports = { .concat( vendorsCopyConfig ), } ), ].filter( Boolean ), + resolve: { + fallback: { + zlib: false, + fs: false, + }, + }, }; From 9e16a045db02ee448a621dcc39c901669a6a4161 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 29 May 2023 15:36:34 -0300 Subject: [PATCH 050/116] implementing local fonts upload --- .../fonts-library/class-wp-fonts-library.php | 36 +++- .../font-library-modal/constants.js | 9 +- .../font-library-modal/font-card.js | 4 +- .../font-library-modal/font-demo.js | 4 +- .../font-library-modal/font-variant.js | 14 +- .../font-library-modal/google-fonts.js | 7 +- .../font-library-modal/local-font-variant.js | 127 +++++++++++++ .../font-library-modal/local-fonts.js | 167 +++++++++++++++++- .../font-library-modal/resolvers.js | 12 +- .../font-library-modal/style.scss | 19 +- 10 files changed, 378 insertions(+), 21 deletions(-) create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/local-font-variant.js diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index cd975c3288c63..4383f5b6adb0e 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -308,8 +308,16 @@ function install_fonts ( $request ) { $library = json_decode( $post_content, true ); $font_families = $library['fontFamilies']; - $fonts_to_install = $request->get_json_params(); - $new_fonts = $this->install_new_fonts( $fonts_to_install ); + + $fonts_to_install = $request->get_param('fontFamilies'); + if ( is_string( $fonts_to_install ) ) { + // If we are receiving form data (as we to upload local fonts), the font families are encoded as a string. + $fonts_to_install = json_decode( $fonts_to_install, true ); + } + + $files = $request->get_file_params(); + + $new_fonts = $this->install_new_fonts( $fonts_to_install, $files ); $new_library_fonts = $this->merge_fonts( $font_families, $new_fonts ); return $this->update_fonts_library( $new_library_fonts ); } @@ -320,14 +328,20 @@ function install_fonts ( $request ) { * @param array $fonts Fonts to install. * @return array New fonts with all assets downloaded and referenced in the font families definition. */ - function install_new_fonts ( $fonts ) { + function install_new_fonts ( $fonts, $files ) { $new_fonts = array(); foreach ( $fonts as $font ) { $new_font = $font; if ( isset( $font['fontFace'] ) ) { $new_font_faces = array(); foreach ( $font['fontFace'] as $font_face ) { - $new_font_face = $this->download_font_face_asset( $font_face ); + $new_font_face; + if ( empty($files) ){ + $new_font_face = $this->download_font_face_asset( $font_face ); + } else { + $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face[ 'file' ] ] ); + } + $new_font_faces[] = $new_font_face; } $new_font['fontFace'] = $new_font_faces; @@ -337,6 +351,20 @@ function install_new_fonts ( $fonts ) { return $new_fonts; } + function move_font_face_asset ( $font_face, $file ) { + $new_font_face = $font_face; + $filename = $this->get_filename_from_font_face( $font_face, $file['name'] ); + $filepath= path_join( $this->wp_fonts_dir, $filename ); + $success = move_uploaded_file( $file['tmp_name'], $filepath ); + + if ( $success ) { + unset($new_font_face['file']); + $new_font_face['src'] = "{$this->relative_fonts_path}{$filename}"; + return $new_font_face; + } + + } + /** * Merge new fonts with existing fonts * diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/constants.js b/packages/edit-site/src/components/global-styles/font-library-modal/constants.js index e30f91bfea1f8..83b4e01f698e4 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/constants.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/constants.js @@ -19,7 +19,7 @@ export const MODAL_TABS = [ }, { name: 'local-fonts', - title: __( 'Local Fonts' ), + title: __( 'Upload' ), className: 'local-fonts', }, ]; @@ -41,3 +41,10 @@ export const DEFAULT_DEMO_CONFIG = { text: '', fontSize: 24, }; + +export const ALLOWED_FILE_EXTENSIONS = [ + 'otf', + 'ttf', + // 'woff', + // 'woff2', +]; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js index 858be03b634d1..4ef56f5158275 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js @@ -14,7 +14,7 @@ import { /** * Internal dependencies */ -import FontFaceDemo from './font-demo'; +import FontDemo from './font-demo'; function FontCard( { font, onClick, actionHandler } ) { const fakeFontFace = { @@ -63,7 +63,7 @@ function FontCard( { font, onClick, actionHandler } ) { { !! actionHandler && actionHandler } - + diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js index ec6f8e8ae0bbe..2002d85aaae23 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-demo.js @@ -11,7 +11,7 @@ import { useContext, useEffect, useState, useRef } from '@wordpress/element'; import { FontLibraryContext } from './context'; import { DEMO_TEXT } from './constants'; -function FontFaceDemo( { fontFace, style = {} } ) { +function FontFaceDemo( { fontFace, text, style = {} } ) { const ref = useRef( null ); const [ isIntersecting, setIsIntersecting ] = useState( false ); const [ isAssetLoaded, setIsAssetLoaded ] = useState( false ); @@ -50,7 +50,7 @@ function FontFaceDemo( { fontFace, style = {} } ) { return ( - { demoConfig.text || DEMO_TEXT } + { demoConfig.text || text || DEMO_TEXT } ); } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js index 20ac0cb41c7d4..1f1a685a044d4 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-variant.js @@ -15,7 +15,7 @@ import { */ import FontFaceDemo from './font-demo'; -function FontVariant( { fontFace, variantName, checked, onClick } ) { +function FontVariant( { fontFace, variantName, checked, onClick, text, actionHandler } ) { const { fontStyle, fontWeight } = fontFace; const displayVariantName = variantName || `${ fontWeight } ${ fontStyle }`; @@ -23,10 +23,16 @@ function FontVariant( { fontFace, variantName, checked, onClick } ) {
- - { displayVariantName } + {!!actionHandler + ? actionHandler + : + } + {typeof displayVariantName === "string" + ? { displayVariantName } + : displayVariantName + } - +
); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index d66ffff3e174b..0d408adca5a34 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -13,6 +13,7 @@ import { SelectControl, } from '@wordpress/components'; import { debounce } from '@wordpress/compose'; +import { download } from '@wordpress/icons'; /** * Internal dependencies @@ -172,9 +173,11 @@ function GoogleFonts() { ); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/local-font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/local-font-variant.js new file mode 100644 index 0000000000000..14bc23ad5768c --- /dev/null +++ b/packages/edit-site/src/components/global-styles/font-library-modal/local-font-variant.js @@ -0,0 +1,127 @@ +import { Font } from "lib-font"; + +/** + * WordPress dependencies + */ +import { __ } from '@wordpress/i18n'; +import { + __experimentalHStack as HStack, + Button, +} from '@wordpress/components'; +import { useState, useEffect } from '@wordpress/element'; +import { cancelCircleFilled } from '@wordpress/icons'; + +/** + * Internal dependencies + */ +import FontVariant from "./font-variant"; + + +function LocalFontVariant ( { fontFile, onFontFaceLoad, onFontFaceRemove } ) { + + const [fontData, setFontData] = useState( null ); + + useEffect( () => { + // Use FileReader to, well, read the file + const reader = new FileReader(); + reader.readAsArrayBuffer( fontFile ); + + reader.onload = () => { + // Create a font object + const fontObj = new Font( 'Uploaded Font' ); + + // Pass the buffer, and the original filename + fontObj.fromDataBuffer( reader.result, fontFile.name ); + + fontObj.onload = async ( onloadEvent ) => { + // Map the details LibFont gathered from the font to the + // "font" variable + const font = onloadEvent.detail.font; + + // From all the OpenType tables in the font, take the "name" + // table so we can inspect it further + const { name } = font.opentype.tables; + + // the Font Family name. More info and names you can grab: + // https://docs.microsoft.com/en-us/typography/opentype/spec/name + + const fontName = name.get( 16 ) || name.get( 1 ); + const isItalic = name + .get( 2 ) + .toLowerCase() + .includes( 'italic' ); + const fontWeight = + font.opentype.tables[ 'OS/2' ].usWeightClass || 'normal'; + + // Variable fonts info + const isVariable = !! font.opentype.tables.fvar; + const weightAxis = + isVariable && + font.opentype.tables.fvar.axes.find( + ( { tag } ) => tag === 'wght' + ); + const weightRange = !! weightAxis + ? `${ weightAxis.minValue } ${ weightAxis.maxValue }` + : null; + + const fontFaceData = { + file: fontFile, + // files as base64 uri + // src: font.toBase64(), + fontFamily: fontName, + fontStyle: isItalic ? 'italic' : 'normal', + fontWeight: !! weightAxis ? weightRange : fontWeight, + }; + + const data = await fontFaceData.file.arrayBuffer(); + const newFont = new FontFace( fontFaceData.fontFamily, data, { + style: fontFaceData.fontStyle, + weight: fontFaceData.fontWeight, + } ); + + newFont + .load() + .then( function ( loadedFace ) { + document.fonts.add( loadedFace ); + } ) + .catch( function ( error ) { + // TODO: show error in the UI + // eslint-disable-next-line + console.error( error ); + } ); + + setFontData( fontFaceData ); + onFontFaceLoad( fontFaceData ); + }; + }; + }, [ fontFile ]); + + const handleRemove = () => { + onFontFaceRemove( fontData ); + }; + + return ( + !!fontData && ( + + {fontData?.fontFamily} + {fontData?.fontStyle} {fontData?.fontWeight} + {fontData?.file.name} + + } + actionHandler={ + ); }; + const SelectFilesButton = ( props ) => { + return ( + ( +
); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/fonts-grid.js b/packages/edit-site/src/components/global-styles/font-library-modal/fonts-grid.js index d4bcd09c6e383..f4368a96777d3 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/fonts-grid.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/fonts-grid.js @@ -2,13 +2,12 @@ * WordPress dependencies */ import { __ } from '@wordpress/i18n'; -import { __experimentalGrid as Grid } from '@wordpress/components'; -function FontsGrid( { children, columns = 4 } ) { +function FontsGrid( { children } ) { return ( - +
{ children } - +
); } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss index 45c794eab9599..4067c14d96891 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss +++ b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss @@ -20,10 +20,16 @@ background-color: #fff; } -} +} + +.font-library-modal__font-card-grid { + display: grid; + grid-template-columns: repeat(4, minmax(100px, auto)); + gap: 4px * 4; +} .font-library-modal__font-card { - + overflow-wrap: break-word; & > div { height: 100%; } @@ -51,6 +57,7 @@ background: #fff; margin: 0 -32px; padding: 0 16px; + z-index: 1; } } @@ -70,4 +77,21 @@ .font-library-modal__font-filename { color: #6e6e6e; +} + +.font-library-modal__font-variant_demo-wrapper { + white-space: nowrap; + overflow: hidden; + width: 100%; + position: relative; + + &:after{ + content: ''; + position: absolute; + bottom: 0; + right: 0; + width: 30vw; + height: 100%; + background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1)); + } } \ No newline at end of file From f9998c7f08466e339f69d2b0a20a81c033c194f7 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 30 May 2023 12:55:34 -0300 Subject: [PATCH 052/116] add partial selection state for font cards --- .../global-styles/font-library-modal/context.js | 5 +++++ .../global-styles/font-library-modal/library-font-card.js | 8 ++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index de86dc2382e84..a45a69fe9e651 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -131,6 +131,10 @@ function FontLibraryProvider( { children } ) { return !! activatedFontsOutline[ slug ]?.includes( style + weight ); }; + const getFontFacesActivated = ( slug ) => { + return activatedFontsOutline[ slug ] || []; + }; + async function installFonts( libraryFonts ) { const newLibraryFonts = await fetchInstallFonts( libraryFonts ); setLibraryFonts( newLibraryFonts ); @@ -266,6 +270,7 @@ function FontLibraryProvider( { children } ) { libraryFonts, installedFonts, isFontActivated, + getFontFacesActivated, googleFonts, googleFontsCategories, loadFontFaceAsset, diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js index ab72f89ae2fec..d114071de3e88 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js @@ -12,10 +12,13 @@ import FontCard from './font-card'; import { FontLibraryContext } from './context'; function LibraryFontCard( { font, onClick } ) { - const { toggleActivateFont, isFontActivated } = + const { toggleActivateFont, isFontActivated, getFontFacesActivated } = useContext( FontLibraryContext ); - const isActive = isFontActivated( font.slug ); + const isActive = isFontActivated( font.slug ); + const facesActivated = getFontFacesActivated( font.slug ); + const isPartiallyActivated = !!facesActivated.length && facesActivated.length < font?.fontFace?.length; + const handleToggleFontActivation = () => { toggleActivateFont( font ); }; @@ -29,6 +32,7 @@ function LibraryFontCard( { font, onClick } ) { checked={ isActive } onClick={ ( e ) => e.stopPropagation() } onChange={ handleToggleFontActivation } + indeterminate={ isPartiallyActivated } /> ); From 2f2924676812bad300eb26a6d23c5a8c66be67ca Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 31 May 2023 11:54:37 -0300 Subject: [PATCH 053/116] Updating endpoints permissions checks --- .../fonts-library/class-wp-fonts-library.php | 49 +++++++++++++++---- 1 file changed, 40 insertions(+), 9 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 4383f5b6adb0e..dc76470e319c8 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -37,7 +37,7 @@ function register_routes () { array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_fonts_library' ), - 'permission_callback' => array( $this, 'fonts_library_permissions_check' ), + 'permission_callback' => array( $this, 'read_fonts_library_permissions_check' ), ), ) ); @@ -49,7 +49,7 @@ function register_routes () { array( 'methods' => WP_REST_Server::EDITABLE, 'callback' => array( $this, 'install_fonts' ), - 'permission_callback' => array( $this, 'fonts_library_permissions_check' ), + 'permission_callback' => array( $this, 'update_fonts_library_permissions_check' ), ), ) ); @@ -61,7 +61,7 @@ function register_routes () { array( 'methods' => WP_REST_Server::DELETABLE, 'callback' => array( $this, 'uninstall_font_family' ), - 'permission_callback' => array( $this, 'fonts_library_permissions_check' ), + 'permission_callback' => array( $this, 'update_fonts_library_permissions_check' ), ), ) ); @@ -73,7 +73,7 @@ function register_routes () { array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_google_fonts' ), - 'permission_callback' => array( $this, 'fonts_library_permissions_check' ), + 'permission_callback' => array( $this, 'read_fonts_library_permissions_check' ), ), ) ); @@ -81,12 +81,43 @@ function register_routes () { } /** - * Check if user has permissions to use fonts library + * Check if user has permissions to update the fonts library * - * @return bool - */ - function fonts_library_permissions_check () { - return current_user_can( 'edit_posts' ); + * @param WP_REST_Request $request Full details about the request. + * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise. + */ + function update_fonts_library_permissions_check ( $request ) { + if ( ! current_user_can( 'edit_theme_options' ) ) { + return new WP_Error( + 'rest_cannot_update_fonts_library', + __( 'Sorry, you are not allowed to update the fonts library on this site.' ), + array( + 'status' => rest_authorization_required_code(), + ) + ); + } + + return true; + } + + /** + * Check if user has permissions to read the fonts library + * + * @param WP_REST_Request $request Full details about the request. + * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise. + */ + function read_fonts_library_permissions_check ( $request ) { + if ( ! current_user_can( 'edit_posts' ) ) { + return new WP_Error( + 'rest_cannot_read_fonts_library', + __( 'Sorry, you are not allowed to read the fonts library on this site.' ), + array( + 'status' => rest_authorization_required_code(), + ) + ); + } + + return true; } /** From 67dbd7b80f754f9a4006b4ae9a948a4750fcfd2c Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 31 May 2023 14:03:29 -0300 Subject: [PATCH 054/116] Adding some error handling on api endpoints --- .../fonts-library/class-wp-fonts-library.php | 44 +++++++++++++++---- 1 file changed, 36 insertions(+), 8 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index dc76470e319c8..b946a7167e567 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -84,7 +84,7 @@ function register_routes () { * Check if user has permissions to update the fonts library * * @param WP_REST_Request $request Full details about the request. - * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise. + * @return true|WP_Error True if the request has write access for the item, WP_Error object otherwise. */ function update_fonts_library_permissions_check ( $request ) { if ( ! current_user_can( 'edit_theme_options' ) ) { @@ -107,7 +107,7 @@ function update_fonts_library_permissions_check ( $request ) { * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise. */ function read_fonts_library_permissions_check ( $request ) { - if ( ! current_user_can( 'edit_posts' ) ) { + if ( !current_user_can( 'edit_posts' ) ) { return new WP_Error( 'rest_cannot_read_fonts_library', __( 'Sorry, you are not allowed to read the fonts library on this site.' ), @@ -123,17 +123,20 @@ function read_fonts_library_permissions_check ( $request ) { /** * Gets the fonts library post content * - * @return WP_REST_Response + * @return WP_REST_Response|WP_Error */ function get_fonts_library () { $post = $this->query_fonts_library(); + if ( is_wp_error( $post ) ) { + return $post; + } return new WP_REST_Response( $post->post_content ); } - /** + /** * Query fonts library post * - * @return WP_Post + * @return WP_Post|WP_Error */ private function query_fonts_library () { // Try to get the fonts library post @@ -148,6 +151,13 @@ private function query_fonts_library () { $args['post_content'] = '{"fontFamilies":[]}'; $post_id = wp_insert_post( $args ); $post = get_post( $post_id ); + if ( ! $post ) { + return new WP_Error( + 'rest_cant_create_fonts_library', + __( 'Error creating fonts library post.' ), + array( 'status' => 500 ) + ); + } return $post; } @@ -157,7 +167,7 @@ private function query_fonts_library () { * Updates the content of the fonts library post with a new list of fonts families. * * @param array $new_fonts_families The new list of fonts families to replace the current content of the fonts library post. - * @return WP_REST_Response The updated fonts library post content wrapped in a WP_REST_Response object. + * @return WP_REST_Response|WP_Error The updated fonts library post content wrapped in a WP_REST_Response object. */ function update_fonts_library ( $new_fonts_families ) { $post = $this->query_fonts_library(); @@ -169,7 +179,13 @@ function update_fonts_library ( $new_fonts_families ) { 'post_content' => wp_json_encode( $new_fonts_library ), ); $updated_post = wp_update_post( $updated_post_data ); + if ( is_wp_error( $updated_post ) ){ + return $updated_post; + } $new_post = $this->query_fonts_library(); + if ( is_wp_error( $new_post ) ){ + return $new_post; + } return new WP_REST_Response( $new_post->post_content ); } @@ -178,13 +194,20 @@ function update_fonts_library ( $new_fonts_families ) { * * Reads the "google-fonts.json" file from the file system and returns its content. * - * @return WP_REST_Response The content of the "google-fonts.json" file wrapped in a WP_REST_Response object. + * @return WP_REST_Response|WP_Error The content of the "google-fonts.json" file wrapped in a WP_REST_Response object. */ function get_google_fonts () { $file = file_get_contents( path_join ( dirname(__FILE__),"google-fonts.json" ) ); - return new WP_REST_Response( json_decode( $file ) ); + if ( $file ) { + return new WP_REST_Response( json_decode( $file ) ); + } + return new WP_Error( + 'rest_cant_read_google_fonts', + __( 'Error reading Google Fonts JSON file.' ), + array( 'status' => 500 ) + ); } /** @@ -196,6 +219,11 @@ function get_google_fonts () { function delete_asset( $src ) { $filename = basename( $src ); $file_path = path_join( $this->wp_fonts_dir, $filename ); + + if ( ! file_exists( $file_path ) ) { + return false; + } + return wp_delete_file( $file_path ); } From bf1a9eb7efc78ea34b9c65abf0748b7cab0320d9 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 31 May 2023 15:55:12 -0300 Subject: [PATCH 055/116] Adding error handling and comments in Fonts library php class methods --- .../fonts-library/class-wp-fonts-library.php | 120 ++++++++++++++---- 1 file changed, 95 insertions(+), 25 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index b946a7167e567..ec47c08df7a2e 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -235,10 +235,15 @@ function delete_asset( $src ) { function delete_font_face_assets ( $font_face ) { if ( is_array( $font_face['src'] ) ) { foreach ( $font_face['src'] as $src ) { - $this->delete_asset($src); + $was_assets_removed = $this->delete_asset($src); + if ( ! $was_assets_removed ) { + // Bail if any of the assets could not be removed + return false; + } } + return true; } else { - $this->delete_asset( $font_face['src'] ); + return $this->delete_asset( $font_face['src'] ); } } @@ -252,10 +257,12 @@ function delete_font_face_assets ( $font_face ) { * @return string The relative path to the downloaded font asset. */ function download_asset( $src, $filename ) { - wp_mkdir_p( $this->wp_fonts_dir ); $file_path = path_join( $this->wp_fonts_dir, $filename ); $file = download_url( $src ); - rename( $file, $file_path ); + $renamed_file = rename( $file, $file_path ); + if ( is_wp_error( $file ) || ! $renamed_file ) { + return false; + } return "{$this->relative_fonts_path}{$filename}"; } @@ -290,7 +297,7 @@ function get_filename_from_font_face ( $font_face, $url, $i=0 ) { * @param array $font_face The font face array containing the 'src' attribute with the source URL(s) of the assets. * @return array The modified font face array with the new source URL(s) to the downloaded assets. */ - function download_font_face_asset ( $font_face ) { + function download_font_face_assets ( $font_face ) { $new_font_face = $font_face; if ( is_array( $font_face['src'] ) ) { $new_font_face['src'] = array(); @@ -299,11 +306,16 @@ function download_font_face_asset ( $font_face ) { !$i ? $i = 0 : $i++; $filename = $this->get_filename_from_font_face( $font_face, $src, $i ); $new_src = $this->download_asset($src, $filename); - $new_font_face['src'][] = $new_src; + if ( $new_src ) { + $new_font_face['src'][] = $new_src; + } } } else { $filename = $this->get_filename_from_font_face( $font_face, $font_face['src'] ); - $new_font_face['src'] = $this->download_asset( $font_face['src'], $filename ); + $new_src = $this->download_asset( $font_face['src'], $filename ); + if ( $new_src ) { + $new_font_face['src'] = $new_src; + } } return $new_font_face; } @@ -314,16 +326,20 @@ function download_font_face_asset ( $font_face ) { * Removes a font family from the fonts library and deletes its associated font face assets. * * @param WP_REST_Request $request The request object containing the font family to uninstall in the request parameters. - * @return WP_REST_Response The updated fonts library post content. + * @return WP_REST_Response|WP_Error The updated fonts library post content. */ function uninstall_font_family ( $request ) { $post = $this->query_fonts_library(); + if ( is_wp_error( $post ) ) { + return $post; + } $post_content = $post->post_content; $library = json_decode( $post_content, true ); $font_families = $library['fontFamilies']; $font_to_uninstall = $request->get_json_params(); $new_font_families = $this->remove_font_family( $font_families, $font_to_uninstall ); + return $this->update_fonts_library( $new_font_families ); } @@ -359,35 +375,61 @@ function remove_font_family ( $font_families, $font_to_uninstall ) { * Takes a request containing new fonts to install, downloads their assets, and adds them to the fonts library. * * @param WP_REST_Request $request The request object containing the new fonts to install in the request parameters. - * @return WP_REST_Response The updated fonts library post content. + * @return WP_REST_Response|WP_Error The updated fonts library post content. */ function install_fonts ( $request ) { + // Create fonts directory if it doesn't exist + $fonts_directory = wp_mkdir_p( $this->wp_fonts_dir ); + if ( ! $fonts_directory ) { + return new WP_Error( 'fonts_directory_error', __( 'Could not create fonts directory.' ), array( 'status' => 500 ) ); + } + + // Get existing font families $post = $this->query_fonts_library(); + if ( is_wp_error( $post ) ) { + return $post; + } $post_content = $post->post_content; $library = json_decode( $post_content, true ); $font_families = $library['fontFamilies']; - + // Get new fonts to install $fonts_to_install = $request->get_param('fontFamilies'); if ( is_string( $fonts_to_install ) ) { // If we are receiving form data (as we to upload local fonts), the font families are encoded as a string. $fonts_to_install = json_decode( $fonts_to_install, true ); } + if ( empty ( $fonts_to_install ) ) { + return new WP_Error( 'no_fonts_to_install', __( 'No fonts to install' ), array( 'status' => 400 ) ); + } + + // Get uploaded files (used when installing local fonts) $files = $request->get_file_params(); - $new_fonts = $this->install_new_fonts( $fonts_to_install, $files ); - $new_library_fonts = $this->merge_fonts( $font_families, $new_fonts ); - return $this->update_fonts_library( $new_library_fonts ); + // Download or move the new fonts assets to the fonts folder + $new_fonts = $this->download_or_move_fonts( $fonts_to_install, $files ); + + if ( ! empty ( $new_fonts ) ){ + // Updates the fonts library with the new fonts succesfully downloaded + $new_library_fonts = $this->merge_fonts( $font_families, $new_fonts ); + + // Updates the fonts library post content and returns it + return $this->update_fonts_library( $new_library_fonts ); + } + + return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.' ), array( 'status' => 500 ) ); } /** - * Install new fonts in the library + * Download or move new font assets to the fonts folder * * @param array $fonts Fonts to install. - * @return array New fonts with all assets downloaded and referenced in the font families definition. + * @param array $files Uploaded files (used when installing local fonts). + * + * @return array New fonts with all assets downloaded referenced in the font families definition. */ - function install_new_fonts ( $fonts, $files ) { + function download_or_move_fonts ( $fonts, $files ) { $new_fonts = array(); foreach ( $fonts as $font ) { $new_font = $font; @@ -395,33 +437,61 @@ function install_new_fonts ( $fonts, $files ) { $new_font_faces = array(); foreach ( $font['fontFace'] as $font_face ) { $new_font_face; - if ( empty($files) ){ - $new_font_face = $this->download_font_face_asset( $font_face ); + + if ( empty( $files ) ){ + // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory + $new_font_face = $this->download_font_face_assets( $font_face ); } else { + // If we are installing google fonts, we need to download the font face assets $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face[ 'file' ] ] ); } - $new_font_faces[] = $new_font_face; + // If the font face assets were succesfully downloaded, we add the font face to the new font + // Font faces with failed downloads are not added to the new font + if ( !empty ( $new_font_face['src'] ) ){ + $new_font_faces[] = $new_font_face; + } + } + $new_font['fontFace'] = $new_font_faces; } - $new_fonts[] = $new_font; + + // If the font face assets were succesfully downloaded, we add the font to the new fonts array + // Fonts without no font faces successfully downloaded are not added to the new fonts array + if ( ! empty ( $new_font['fontFace'] ) ){ + $new_fonts[] = $new_font; + } + } return $new_fonts; } + /** + * Move an uploaded font face asset from temp folder to the wp fonts directory + * + * This is used when uploading local fonts + * + * @param array $font_face Font face to download. + * @return array New font face with all assets downloaded and referenced in the font face definition. + */ function move_font_face_asset ( $font_face, $file ) { $new_font_face = $font_face; $filename = $this->get_filename_from_font_face( $font_face, $file['name'] ); $filepath= path_join( $this->wp_fonts_dir, $filename ); - $success = move_uploaded_file( $file['tmp_name'], $filepath ); - if ( $success ) { - unset($new_font_face['file']); + // Move the uploaded font asset from the temp folder to the wp fonts directory + $file_was_moved = move_uploaded_file( $file['tmp_name'], $filepath ); + + // Remove the uploaded font asset reference from the font face definition because is not longer needed + unset( $new_font_face['file'] ); + + if ( $file_was_moved ) { + // If the file was succesfully moved, we update the font face definition to reference the new file location $new_font_face['src'] = "{$this->relative_fonts_path}{$filename}"; - return $new_font_face; } - + + return $new_font_face; } /** From 4b92a6ca864cef809f2039fc0f2718b0b39c698c Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 1 Jun 2023 13:54:34 -0300 Subject: [PATCH 056/116] Add mime type check for font file paths --- .../fonts-library/class-wp-fonts-library.php | 57 ++++++++++++++++--- 1 file changed, 48 insertions(+), 9 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index ec47c08df7a2e..6c44d69a582e8 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -3,8 +3,6 @@ include(ABSPATH . "wp-admin/includes/admin.php"); class WP_Fonts_Library { - private $wp_fonts_dir; - public function __construct() { $this->wp_fonts_dir = path_join( WP_CONTENT_DIR, 'fonts' ); $this->relative_fonts_path = site_url('/wp-content/fonts/', 'relative'); @@ -27,6 +25,12 @@ public function __construct() { ); } + const ALLOWED_FONT_MIME_TYPES = array( + 'otf' => 'font/otf', + 'ttf' => 'font/ttf', + 'woff' => 'font/woff', + 'woff2' => 'font/woff2', + ); function register_routes () { @@ -80,6 +84,17 @@ function register_routes () { } + /** + * Returns whether the given file has a font MIME type. + * + * @param string $filepath The file to check. + * @return bool True if the file has a font MIME type, false otherwise. + */ + function has_font_mime_type( $filepath ) { + $filetype = wp_check_filetype( $filepath, self::ALLOWED_FONT_MIME_TYPES ); + return in_array( $filetype['type'], self::ALLOWED_FONT_MIME_TYPES, true ); + } + /** * Check if user has permissions to update the fonts library * @@ -254,15 +269,34 @@ function delete_font_face_assets ( $font_face ) { * * @param string $src The source URL of the font asset to be downloaded. * @param string $filename The filename to save the downloaded font asset as. - * @return string The relative path to the downloaded font asset. + * @return string|bool The relative path to the downloaded font asset. False if the download failed. */ function download_asset( $src, $filename ) { $file_path = path_join( $this->wp_fonts_dir, $filename ); - $file = download_url( $src ); - $renamed_file = rename( $file, $file_path ); - if ( is_wp_error( $file ) || ! $renamed_file ) { + + // Checks if the file to be downloaded has a font mime type + if ( ! $this->has_font_mime_type( $file_path ) ) { + return false; + } + + // Downloads the font asset or returns false + $temp_file = download_url( $src ); + if ( is_wp_error( $temp_file ) ) { + @unlink( $temp_file ); + return false; + } + + // Moves the file to the fonts directory or return false + $renamed_file = rename( $temp_file, $file_path ); + if ( ! $renamed_file ) { + @unlink( $temp_file ); return false; } + + // Cleans the temp file + @unlink( $temp_file ); + + // Returns the relative path to the downloaded font asset to be used as font face src return "{$this->relative_fonts_path}{$filename}"; } @@ -480,11 +514,16 @@ function move_font_face_asset ( $font_face, $file ) { $filename = $this->get_filename_from_font_face( $font_face, $file['name'] ); $filepath= path_join( $this->wp_fonts_dir, $filename ); - // Move the uploaded font asset from the temp folder to the wp fonts directory - $file_was_moved = move_uploaded_file( $file['tmp_name'], $filepath ); - // Remove the uploaded font asset reference from the font face definition because is not longer needed unset( $new_font_face['file'] ); + + // If the filepath has not a font mime type, we don't move the file and return the font face definition without src to be ignored later + if ( ! $this->has_font_mime_type( $filepath ) ) { + return $new_font_face; + } + + // Move the uploaded font asset from the temp folder to the wp fonts directory + $file_was_moved = move_uploaded_file( $file['tmp_name'], $filepath ); if ( $file_was_moved ) { // If the file was succesfully moved, we update the font face definition to reference the new file location From 9e0a8b773f54253e01e5b26b1c0ab99a021ed261 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 1 Jun 2023 13:56:01 -0300 Subject: [PATCH 057/116] Initialize Fonts Library api from it own filee --- lib/experimental/fonts-api/fonts-api.php | 7 ------- .../fonts-library/class-wp-fonts-library.php | 9 ++++++++- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/experimental/fonts-api/fonts-api.php b/lib/experimental/fonts-api/fonts-api.php index 4ba4e3f566e82..348ae2dc875e2 100644 --- a/lib/experimental/fonts-api/fonts-api.php +++ b/lib/experimental/fonts-api/fonts-api.php @@ -242,13 +242,6 @@ function( $mime_types ) { } ); - -function fonts_library_register_routes () { - $fonts_library = new WP_Fonts_Library(); - $fonts_library->register_routes(); -} -add_action( 'rest_api_init', 'fonts_library_register_routes' ); - /* * To make sure blocks are registered before any Theme_JSON operations take place, a priority of 21 is used. * diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 6c44d69a582e8..c1db5be176efa 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -565,4 +565,11 @@ function merge_fonts ( $current_fonts, $add_fonts ) { return $new_fonts; } -} \ No newline at end of file +} + +function fonts_library_register_routes () { + $fonts_library = new WP_Fonts_Library(); + $fonts_library->register_routes(); +} + +add_action( 'rest_api_init', 'fonts_library_register_routes' ); \ No newline at end of file From ee3890ced8629f1284ac1946c36f40295159a468 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 1 Jun 2023 15:44:49 -0300 Subject: [PATCH 058/116] Adding prefix to installed font slugs to avoid slug collisions --- bin/fonts/get-google-fonts.js | 4 +- .../fonts-library/google-fonts.json | 92952 ++++++++-------- .../font-library-modal/local-fonts.js | 2 +- 3 files changed, 46721 insertions(+), 46237 deletions(-) diff --git a/bin/fonts/get-google-fonts.js b/bin/fonts/get-google-fonts.js index 861daec8a3291..1a2d4463b787d 100644 --- a/bin/fonts/get-google-fonts.js +++ b/bin/fonts/get-google-fonts.js @@ -7,7 +7,7 @@ const crypto = require( 'crypto' ); const API_URL = 'https://www.googleapis.com/webfonts/v1/webfonts?key='; const API_KEY = process.env.GOOGLE_FONTS_API_KEY; const GOOGLE_FONTS_FILE_PATH = - '../../lib/experimental/fonts-api/google-fonts.json'; + '../../lib/experimental/fonts-library/google-fonts.json'; function getCategories( fonts ) { const categories = new Set(); @@ -55,7 +55,7 @@ function getFontFamilyFromGoogleFont( font ) { fontFamily: `${ font.family }, ${ getFallbackForGoogleFont( font.category ) }`, - slug: font.family.replace( /\s+/g, '-' ).toLowerCase(), + slug: 'wp-font-lib-' + font.family.replace( /\s+/g, '-' ).toLowerCase(), category: font.category, fontFace: font.variants.map( ( variant ) => ( { src: font.files?.[ variant ], diff --git a/lib/experimental/fonts-library/google-fonts.json b/lib/experimental/fonts-library/google-fonts.json index 20c01993a36ed..5292973bef0f7 100644 --- a/lib/experimental/fonts-library/google-fonts.json +++ b/lib/experimental/fonts-library/google-fonts.json @@ -1,46235 +1,46719 @@ { - "fontFamilies": [ - { - "name": "ABeeZee", - "fontFamily": "ABeeZee, sans-serif", - "slug": "abeezee", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN6tKukbcHCpE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "ABeeZee" - }, - { - "src": "http://fonts.gstatic.com/s/abeezee/v22/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "ABeeZee" - } - ] - }, - { - "name": "Abel", - "fontFamily": "Abel, sans-serif", - "slug": "abel", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6VhLPJp6qGI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Abel" - } - ] - }, - { - "name": "Abhaya Libre", - "fontFamily": "Abhaya Libre, serif", - "slug": "abhaya-libre", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre" - }, - { - "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre" - }, - { - "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre" - }, - { - "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre" - }, - { - "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Abhaya Libre" - } - ] - }, - { - "name": "Aboreto", - "fontFamily": "Aboreto, system-ui", - "slug": "aboreto", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8blKTeA2yuxSY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aboreto" - } - ] - }, - { - "name": "Abril Fatface", - "fontFamily": "Abril Fatface, system-ui", - "slug": "abril-fatface", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/abrilfatface/v19/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Abril Fatface" - } - ] - }, - { - "name": "Abyssinica SIL", - "fontFamily": "Abyssinica SIL, serif", - "slug": "abyssinica-sil", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/abyssinicasil/v5/oY1H8ezOqK7iI3rK_45WKoc8J6UZBFOVAXuI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Abyssinica SIL" - } - ] - }, - { - "name": "Aclonica", - "fontFamily": "Aclonica, sans-serif", - "slug": "aclonica", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aclonica/v18/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aclonica" - } - ] - }, - { - "name": "Acme", - "fontFamily": "Acme, sans-serif", - "slug": "acme", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/acme/v21/RrQfboBx-C5_bx3Lb23lzLk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Acme" - } - ] - }, - { - "name": "Actor", - "fontFamily": "Actor, sans-serif", - "slug": "actor", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO3ekXygtUMIO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Actor" - } - ] - }, - { - "name": "Adamina", - "fontFamily": "Adamina, serif", - "slug": "adamina", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Adamina" - } - ] - }, - { - "name": "Advent Pro", - "fontFamily": "Advent Pro, sans-serif", - "slug": "advent-pro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyJPTJoonw1aBA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyNPTJoonw1aBA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLHSNPTJoonw1aBA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyNPTJoonw1aBA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLcSNPTJoonw1aBA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLnSRPTJoonw1aBA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLpCRPTJoonw1aBA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyRPTJoonw1aBA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpL6iRPTJoonw1aBA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnDpAsvQhKBH4C.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnD5AsvQhKBH4C.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2D5D5AsvQhKBH4C.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnD5AsvQhKBH4C.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CVD5AsvQhKBH4C.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2B5CJAsvQhKBH4C.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2BACJAsvQhKBH4C.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnCJAsvQhKBH4C.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - }, - { - "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AOCJAsvQhKBH4C.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Advent Pro" - } - ] - }, - { - "name": "Aguafina Script", - "fontFamily": "Aguafina Script, cursive", - "slug": "aguafina-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aguafinascript/v17/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aguafina Script" - } - ] - }, - { - "name": "Akaya Kanadaka", - "fontFamily": "Akaya Kanadaka, system-ui", - "slug": "akaya-kanadaka", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/akayakanadaka/v16/N0bM2S5CPO5oOQqvazoRRb-8-PfRS5VBBSSF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Akaya Kanadaka" - } - ] - }, - { - "name": "Akaya Telivigala", - "fontFamily": "Akaya Telivigala, system-ui", - "slug": "akaya-telivigala", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/akayatelivigala/v22/lJwc-oo_iG9wXqU3rCTD395tp0uifdLdsIH0YH8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Akaya Telivigala" - } - ] - }, - { - "name": "Akronim", - "fontFamily": "Akronim, system-ui", - "slug": "akronim", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Akronim" - } - ] - }, - { - "name": "Akshar", - "fontFamily": "Akshar, sans-serif", - "slug": "akshar", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSSgFy9CY94XsnPc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Akshar" - }, - { - "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSXYFy9CY94XsnPc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Akshar" - }, - { - "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSUQFy9CY94XsnPc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Akshar" - }, - { - "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSagCy9CY94XsnPc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Akshar" - }, - { - "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSZECy9CY94XsnPc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Akshar" - } - ] - }, - { - "name": "Aladin", - "fontFamily": "Aladin, cursive", - "slug": "aladin", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aladin/v19/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aladin" - } - ] - }, - { - "name": "Alata", - "fontFamily": "Alata, sans-serif", - "slug": "alata", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alata/v9/PbytFmztEwbIofe6xKcRQEOX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alata" - } - ] - }, - { - "name": "Alatsi", - "fontFamily": "Alatsi, sans-serif", - "slug": "alatsi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alatsi/v11/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alatsi" - } - ] - }, - { - "name": "Albert Sans", - "fontFamily": "Albert Sans, sans-serif", - "slug": "albert-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5L_rI32TxAj1g.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5P_rI32TxAj1g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSH9ZP_rI32TxAj1g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_rI32TxAj1g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHmZP_rI32TxAj1g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_rI32TxAj1g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_rI32TxAj1g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5T_rI32TxAj1g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHApT_rI32TxAj1g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX7ofybRUz1r5t.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX74fybRUz1r5t.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9BJ74fybRUz1r5t.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX74fybRUz1r5t.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - }, - { - "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9C-6IfybRUz1r5t.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Albert Sans" - } - ] - }, - { - "name": "Aldrich", - "fontFamily": "Aldrich, sans-serif", - "slug": "aldrich", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aldrich/v17/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aldrich" - } - ] - }, - { - "name": "Alef", - "fontFamily": "Alef, sans-serif", - "slug": "alef", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alef/v21/FeVfS0NQpLYgrjJbC5FxxbU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alef" - }, - { - "src": "http://fonts.gstatic.com/s/alef/v21/FeVQS0NQpLYglo50L5la2bxii28.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alef" - } - ] - }, - { - "name": "Alegreya", - "fontFamily": "Alegreya, serif", - "slug": "alegreya", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI_KCisSGVrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBUI_KCisSGVrw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGKBII_KCisSGVrw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERII_KCisSGVrw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhII_KCisSGVrw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxII_KCisSGVrw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbgv6qmkySFr9V9.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbSv6qmkySFr9V9.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlY-uKqmkySFr9V9.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlYHuKqmkySFr9V9.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZguKqmkySFr9V9.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alegreya" - }, - { - "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZJuKqmkySFr9V9.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alegreya" - } - ] - }, - { - "name": "Alegreya SC", - "fontFamily": "Alegreya SC, serif", - "slug": "alegreya-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alegreya SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alegreya SC" - } - ] - }, - { - "name": "Alegreya Sans", - "fontFamily": "Alegreya Sans, sans-serif", - "slug": "alegreya-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans" - } - ] - }, - { - "name": "Alegreya Sans SC", - "fontFamily": "Alegreya Sans SC, sans-serif", - "slug": "alegreya-sans-sc", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alegreya Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alegreya Sans SC" - } - ] - }, - { - "name": "Aleo", - "fontFamily": "Aleo, serif", - "slug": "aleo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syKbr9DVDno985KM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Aleo" - }, - { - "src": "http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Aleo" - }, - { - "src": "http://fonts.gstatic.com/s/aleo/v11/c4mv1nF8G8_s8ArD0D1ogoY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aleo" - }, - { - "src": "http://fonts.gstatic.com/s/aleo/v11/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Aleo" - }, - { - "src": "http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syLbs9DVDno985KM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Aleo" - }, - { - "src": "http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Aleo" - } - ] - }, - { - "name": "Alex Brush", - "fontFamily": "Alex Brush, cursive", - "slug": "alex-brush", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alex Brush" - } - ] - }, - { - "name": "Alexandria", - "fontFamily": "Alexandria, sans-serif", - "slug": "alexandria", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alexandria" - }, - { - "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alexandria" - } - ] - }, - { - "name": "Alfa Slab One", - "fontFamily": "Alfa Slab One, system-ui", - "slug": "alfa-slab-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alfaslabone/v17/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alfa Slab One" - } - ] - }, - { - "name": "Alice", - "fontFamily": "Alice, serif", - "slug": "alice", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6FcJpA_chzJ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alice" - } - ] - }, - { - "name": "Alike", - "fontFamily": "Alike, serif", - "slug": "alike", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alike/v20/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alike" - } - ] - }, - { - "name": "Alike Angular", - "fontFamily": "Alike Angular, serif", - "slug": "alike-angular", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alikeangular/v20/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alike Angular" - } - ] - }, - { - "name": "Alkalami", - "fontFamily": "Alkalami, serif", - "slug": "alkalami", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alkalami/v7/zOL_4pfDmqRL95WXi5eLw8BMuvhH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alkalami" - } - ] - }, - { - "name": "Alkatra", - "fontFamily": "Alkatra, system-ui", - "slug": "alkatra", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medzngmu7cPrNDVemxE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alkatra" - }, - { - "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedzngUu7cPrNDVemxE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alkatra" - }, - { - "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medznj4vLcPrNDVemxE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Alkatra" - }, - { - "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedznjBvLcPrNDVemxE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alkatra" - } - ] - }, - { - "name": "Allan", - "fontFamily": "Allan, system-ui", - "slug": "allan", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/allan/v21/ea8XadU7WuTxEtb2P9SF8nZE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allan" - }, - { - "src": "http://fonts.gstatic.com/s/allan/v21/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Allan" - } - ] - }, - { - "name": "Allerta", - "fontFamily": "Allerta, sans-serif", - "slug": "allerta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allerta" - } - ] - }, - { - "name": "Allerta Stencil", - "fontFamily": "Allerta Stencil, sans-serif", - "slug": "allerta-stencil", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/allertastencil/v18/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allerta Stencil" - } - ] - }, - { - "name": "Allison", - "fontFamily": "Allison, cursive", - "slug": "allison", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/allison/v9/X7nl4b88AP2nkbvZOCaQ4MTgAgk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allison" - } - ] - }, - { - "name": "Allura", - "fontFamily": "Allura, cursive", - "slug": "allura", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/allura/v19/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Allura" - } - ] - }, - { - "name": "Almarai", - "fontFamily": "Almarai, sans-serif", - "slug": "almarai", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Almarai" - }, - { - "src": "http://fonts.gstatic.com/s/almarai/v12/tsstApxBaigK_hnnc1qPonC3vqc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Almarai" - }, - { - "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Almarai" - }, - { - "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Almarai" - } - ] - }, - { - "name": "Almendra", - "fontFamily": "Almendra, serif", - "slug": "almendra", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/almendra/v23/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Almendra" - }, - { - "src": "http://fonts.gstatic.com/s/almendra/v23/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Almendra" - }, - { - "src": "http://fonts.gstatic.com/s/almendra/v23/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Almendra" - }, - { - "src": "http://fonts.gstatic.com/s/almendra/v23/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Almendra" - } - ] - }, - { - "name": "Almendra Display", - "fontFamily": "Almendra Display, system-ui", - "slug": "almendra-display", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/almendradisplay/v26/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Almendra Display" - } - ] - }, - { - "name": "Almendra SC", - "fontFamily": "Almendra SC, serif", - "slug": "almendra-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/almendrasc/v25/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Almendra SC" - } - ] - }, - { - "name": "Alumni Sans", - "fontFamily": "Alumni Sans, sans-serif", - "slug": "alumni-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO5QqFsJ3C8qng.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uO9QqFsJ3C8qng.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Zu9QqFsJ3C8qng.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9QqFsJ3C8qng.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Cu9QqFsJ3C8qng.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd95uhQqFsJ3C8qng.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd93-hQqFsJ3C8qng.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uOhQqFsJ3C8qng.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9kehQqFsJ3C8qng.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky46lEN_io6npfB.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Alumni Sans" - } - ] - }, - { - "name": "Alumni Sans Collegiate One", - "fontFamily": "Alumni Sans Collegiate One, sans-serif", - "slug": "alumni-sans-collegiate-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhjdayDiPw2ta.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alumni Sans Collegiate One" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpD-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhgdYwjytxntaDFU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alumni Sans Collegiate One" - } - ] - }, - { - "name": "Alumni Sans Inline One", - "fontFamily": "Alumni Sans Inline One, system-ui", - "slug": "alumni-sans-inline-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpD3AZcr7xbYw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alumni Sans Inline One" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQDbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpP3ITdpz0fYxcrQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alumni Sans Inline One" - } - ] - }, - { - "name": "Alumni Sans Pinstripe", - "fontFamily": "Alumni Sans Pinstripe, sans-serif", - "slug": "alumni-sans-pinstripe", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObhezYrVIpcDA5w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Alumni Sans Pinstripe" - }, - { - "src": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNDjOFFPq_AUJD1umyS30W-Xub8zD1ObheDYL9Mh8XQ5_cY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Alumni Sans Pinstripe" - } - ] - }, - { - "name": "Amarante", - "fontFamily": "Amarante, system-ui", - "slug": "amarante", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amarante/v23/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amarante" - } - ] - }, - { - "name": "Amaranth", - "fontFamily": "Amaranth, sans-serif", - "slug": "amaranth", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zPnCF9GqwnzW.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amaranth" - }, - { - "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Amaranth" - }, - { - "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amaranth" - }, - { - "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Amaranth" - } - ] - }, - { - "name": "Amatic SC", - "fontFamily": "Amatic SC, cursive", - "slug": "amatic-sc", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amaticsc/v24/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amatic SC" - }, - { - "src": "http://fonts.gstatic.com/s/amaticsc/v24/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amatic SC" - } - ] - }, - { - "name": "Amethysta", - "fontFamily": "Amethysta, serif", - "slug": "amethysta", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amethysta" - } - ] - }, - { - "name": "Amiko", - "fontFamily": "Amiko, sans-serif", - "slug": "amiko", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amiko/v12/WwkQxPq1DFK04tqlc17MMZgJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amiko" - }, - { - "src": "http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Amiko" - }, - { - "src": "http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amiko" - } - ] - }, - { - "name": "Amiri", - "fontFamily": "Amiri, serif", - "slug": "amiri", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amiri/v27/J7aRnpd8CGxBHqUpvrIw74NL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amiri" - }, - { - "src": "http://fonts.gstatic.com/s/amiri/v27/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Amiri" - }, - { - "src": "http://fonts.gstatic.com/s/amiri/v27/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amiri" - }, - { - "src": "http://fonts.gstatic.com/s/amiri/v27/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Amiri" - } - ] - }, - { - "name": "Amiri Quran", - "fontFamily": "Amiri Quran, serif", - "slug": "amiri-quran", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amiriquran/v7/_Xmo-Hk0rD6DbUL4_vH8Zq5t7Cycsu-2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amiri Quran" - } - ] - }, - { - "name": "Amita", - "fontFamily": "Amita, cursive", - "slug": "amita", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/amita/v16/HhyaU5si9Om7PQlvAfSKEZZL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Amita" - }, - { - "src": "http://fonts.gstatic.com/s/amita/v16/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Amita" - } - ] - }, - { - "name": "Anaheim", - "fontFamily": "Anaheim, sans-serif", - "slug": "anaheim", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anaheim/v14/8vII7w042Wp87g4G0UTUEE5eK_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anaheim" - } - ] - }, - { - "name": "Andada Pro", - "fontFamily": "Andada Pro, serif", - "slug": "andada-pro", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBY8cFLzvIt2S.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DP7BY8cFLzvIt2S.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8cFLzvIt2S.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8cFLzvIt2S.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DNJAo8cFLzvIt2S.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRmdfHrjNJ82Stjw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRlVfHrjNJ82Stjw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHrjNJ82Stjw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHrjNJ82Stjw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Andada Pro" - }, - { - "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRudYHrjNJ82Stjw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Andada Pro" - } - ] - }, - { - "name": "Andika", - "fontFamily": "Andika, sans-serif", - "slug": "andika", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/andika/v24/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Andika" - }, - { - "src": "http://fonts.gstatic.com/s/andika/v24/mem9Ya6iyW-Lwqgwb7YVeLkWVNBt.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Andika" - }, - { - "src": "http://fonts.gstatic.com/s/andika/v24/mem8Ya6iyW-Lwqg40ZM1UpcaXcl0Aw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Andika" - }, - { - "src": "http://fonts.gstatic.com/s/andika/v24/mem6Ya6iyW-Lwqgwb46pV50ef8xkA76a.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Andika" - } - ] - }, - { - "name": "Anek Bangla", - "fontFamily": "Anek Bangla, sans-serif", - "slug": "anek-bangla", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9YIocg56yyvt0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9ZIocg56yyvt0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfjFZIocg56yyvt0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9ZIocg56yyvt0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofl1ZIocg56yyvt0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfrFeIocg56yyvt0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfoheIocg56yyvt0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9eIocg56yyvt0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Bangla" - } - ] - }, - { - "name": "Anek Devanagari", - "fontFamily": "Anek Devanagari, sans-serif", - "slug": "anek-devanagari", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtk-9nFk0LjZ7E.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtku9nFk0LjZ7E.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLCzku9nFk0LjZ7E.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtku9nFk0LjZ7E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDfku9nFk0LjZ7E.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAzle9nFk0LjZ7E.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAKle9nFk0LjZ7E.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtle9nFk0LjZ7E.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Devanagari" - } - ] - }, - { - "name": "Anek Gujarati", - "fontFamily": "Anek Gujarati, sans-serif", - "slug": "anek-gujarati", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5G7w0KgB7Lm7g.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5C7w0KgB7Lm7g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0SZC7w0KgB7Lm7g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5C7w0KgB7Lm7g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0JZC7w0KgB7Lm7g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0yZe7w0KgB7Lm7g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-08Je7w0KgB7Lm7g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5e7w0KgB7Lm7g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Gujarati" - } - ] - }, - { - "name": "Anek Gurmukhi", - "fontFamily": "Anek Gurmukhi, sans-serif", - "slug": "anek-gurmukhi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5ppXK41H6DjbA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95tpXK41H6DjbA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbKZtpXK41H6DjbA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5tpXK41H6DjbA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbRZtpXK41H6DjbA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbqZxpXK41H6DjbA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbkJxpXK41H6DjbA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95xpXK41H6DjbA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Gurmukhi" - } - ] - }, - { - "name": "Anek Kannada", - "fontFamily": "Anek Kannada, sans-serif", - "slug": "anek-kannada", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEAukVReA1oef.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDEQukVReA1oef.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dEdEQukVReA1oef.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEQukVReA1oef.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFxEQukVReA1oef.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGdFgukVReA1oef.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGkFgukVReA1oef.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDFgukVReA1oef.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Kannada" - } - ] - }, - { - "name": "Anek Latin", - "fontFamily": "Anek Latin, sans-serif", - "slug": "anek-latin", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7EZKdClWL3kgw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - }, - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7AZKdClWL3kgw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - }, - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuGbAZKdClWL3kgw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - }, - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7AZKdClWL3kgw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - }, - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PudbAZKdClWL3kgw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - }, - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PumbcZKdClWL3kgw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - }, - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuoLcZKdClWL3kgw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - }, - { - "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7cZKdClWL3kgw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Latin" - } - ] - }, - { - "name": "Anek Malayalam", - "fontFamily": "Anek Malayalam, sans-serif", - "slug": "anek-malayalam", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu_HMr5PDO71Qs.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu-HMr5PDO71Qs.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUcW-HMr5PDO71Qs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu-HMr5PDO71Qs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUam-HMr5PDO71Qs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUUW5HMr5PDO71Qs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUXy5HMr5PDO71Qs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu5HMr5PDO71Qs.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Malayalam" - } - ] - }, - { - "name": "Anek Odia", - "fontFamily": "Anek Odia, sans-serif", - "slug": "anek-odia", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZf63mXZAtm_es.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - }, - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZfq3mXZAtm_es.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - }, - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnnHfq3mXZAtm_es.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - }, - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZfq3mXZAtm_es.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - }, - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmrfq3mXZAtm_es.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - }, - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnlHea3mXZAtm_es.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - }, - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnl-ea3mXZAtm_es.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - }, - { - "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZea3mXZAtm_es.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Odia" - } - ] - }, - { - "name": "Anek Tamil", - "fontFamily": "Anek Tamil, sans-serif", - "slug": "anek-tamil", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQiZ6q4v4oegjOQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwid6q4v4oegjOQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNHCd6q4v4oegjOQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQid6q4v4oegjOQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNcCd6q4v4oegjOQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNnCB6q4v4oegjOQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNpSB6q4v4oegjOQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwiB6q4v4oegjOQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Tamil" - } - ] - }, - { - "name": "Anek Telugu", - "fontFamily": "Anek Telugu, sans-serif", - "slug": "anek-telugu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y-_oE2G2ep10_8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136--oE2G2ep10_8.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i133G-oE2G2ep10_8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y--oE2G2ep10_8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13x2-oE2G2ep10_8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13_G5oE2G2ep10_8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i138i5oE2G2ep10_8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136-5oE2G2ep10_8.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anek Telugu" - } - ] - }, - { - "name": "Angkor", - "fontFamily": "Angkor, system-ui", - "slug": "angkor", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/angkor/v28/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Angkor" - } - ] - }, - { - "name": "Annie Use Your Telescope", - "fontFamily": "Annie Use Your Telescope, cursive", - "slug": "annie-use-your-telescope", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/annieuseyourtelescope/v18/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Annie Use Your Telescope" - } - ] - }, - { - "name": "Anonymous Pro", - "fontFamily": "Anonymous Pro, monospace", - "slug": "anonymous-pro", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anonymous Pro" - }, - { - "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Anonymous Pro" - }, - { - "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anonymous Pro" - }, - { - "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Anonymous Pro" - } - ] - }, - { - "name": "Antic", - "fontFamily": "Antic, sans-serif", - "slug": "antic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRaZLodgzydtk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Antic" - } - ] - }, - { - "name": "Antic Didone", - "fontFamily": "Antic Didone, serif", - "slug": "antic-didone", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Antic Didone" - } - ] - }, - { - "name": "Antic Slab", - "fontFamily": "Antic Slab, serif", - "slug": "antic-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Antic Slab" - } - ] - }, - { - "name": "Anton", - "fontFamily": "Anton, sans-serif", - "slug": "anton", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anton/v23/1Ptgg87LROyAm0K08i4gS7lu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anton" - } - ] - }, - { - "name": "Antonio", - "fontFamily": "Antonio, sans-serif", - "slug": "antonio", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8BtIY2DwSXlM.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Antonio" - }, - { - "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVzx8RtIY2DwSXlM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Antonio" - }, - { - "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVwv8RtIY2DwSXlM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Antonio" - }, - { - "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtIY2DwSXlM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Antonio" - }, - { - "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxD8RtIY2DwSXlM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Antonio" - }, - { - "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyv9htIY2DwSXlM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Antonio" - }, - { - "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htIY2DwSXlM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Antonio" - } - ] - }, - { - "name": "Anuphan", - "fontFamily": "Anuphan, sans-serif", - "slug": "anuphan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9A4kGmW927Gu.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anuphan" - }, - { - "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCmY9Q4kGmW927Gu.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anuphan" - }, - { - "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZClG9Q4kGmW927Gu.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anuphan" - }, - { - "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9Q4kGmW927Gu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anuphan" - }, - { - "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkq9Q4kGmW927Gu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anuphan" - }, - { - "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCnG8g4kGmW927Gu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anuphan" - }, - { - "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCn_8g4kGmW927Gu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anuphan" - } - ] - }, - { - "name": "Anybody", - "fontFamily": "Anybody, system-ui", - "slug": "anybody", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12HPrsXD_nBPpQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2DPrsXD_nBPpQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JiWDPrsXD_nBPpQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12DPrsXD_nBPpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J5WDPrsXD_nBPpQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JCWfPrsXD_nBPpQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JMGfPrsXD_nBPpQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2fPrsXD_nBPpQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JfmfPrsXD_nBPpQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7M_H3HVfpcHY.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn7c_H3HVfpcHY.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyN57c_H3HVfpcHY.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7c_H3HVfpcHY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMV7c_H3HVfpcHY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyP56s_H3HVfpcHY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyPA6s_H3HVfpcHY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn6s_H3HVfpcHY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Anybody" - }, - { - "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOO6s_H3HVfpcHY.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Anybody" - } - ] - }, - { - "name": "Arapey", - "fontFamily": "Arapey, serif", - "slug": "arapey", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arapey" - }, - { - "src": "http://fonts.gstatic.com/s/arapey/v16/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Arapey" - } - ] - }, - { - "name": "Arbutus", - "fontFamily": "Arbutus, system-ui", - "slug": "arbutus", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arbutus/v24/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arbutus" - } - ] - }, - { - "name": "Arbutus Slab", - "fontFamily": "Arbutus Slab, serif", - "slug": "arbutus-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arbutus Slab" - } - ] - }, - { - "name": "Architects Daughter", - "fontFamily": "Architects Daughter, cursive", - "slug": "architects-daughter", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/architectsdaughter/v18/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Architects Daughter" - } - ] - }, - { - "name": "Archivo", - "fontFamily": "Archivo, sans-serif", - "slug": "archivo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDJp8B1oJ0vyVQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDNp8B1oJ0vyVQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTajNp8B1oJ0vyVQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp8B1oJ0vyVQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTBjNp8B1oJ0vyVQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp8B1oJ0vyVQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT0zRp8B1oJ0vyVQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDRp8B1oJ0vyVQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTnTRp8B1oJ0vyVQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBshdsBU7iVdxQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABsxdsBU7iVdxQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HDfsxdsBU7iVdxQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBsxdsBU7iVdxQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCzsxdsBU7iVdxQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBftBdsBU7iVdxQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBmtBdsBU7iVdxQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABtBdsBU7iVdxQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Archivo" - }, - { - "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HAotBdsBU7iVdxQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Archivo" - } - ] - }, - { - "name": "Archivo Black", - "fontFamily": "Archivo Black, sans-serif", - "slug": "archivo-black", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/archivoblack/v17/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Archivo Black" - } - ] - }, - { - "name": "Archivo Narrow", - "fontFamily": "Archivo Narrow, sans-serif", - "slug": "archivo-narrow", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFGKpHOtFCQ76Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Archivo Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvHlGKpHOtFCQ76Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Archivo Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhv8laKpHOtFCQ76Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Archivo Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKpHOtFCQ76Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Archivo Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJi53mpNiEr6T6Y.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Archivo Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJQ53mpNiEr6T6Y.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Archivo Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BK84HmpNiEr6T6Y.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Archivo Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BKF4HmpNiEr6T6Y.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Archivo Narrow" - } - ] - }, - { - "name": "Are You Serious", - "fontFamily": "Are You Serious, cursive", - "slug": "are-you-serious", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/areyouserious/v10/ll8kK2GVSSr-PtjQ5nONVcNn4306hT9nCGRayg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Are You Serious" - } - ] - }, - { - "name": "Aref Ruqaa", - "fontFamily": "Aref Ruqaa, serif", - "slug": "aref-ruqaa", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aref Ruqaa" - }, - { - "src": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Aref Ruqaa" - } - ] - }, - { - "name": "Aref Ruqaa Ink", - "fontFamily": "Aref Ruqaa Ink, serif", - "slug": "aref-ruqaa-ink", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arefruqaaink/v7/1q2fY5WOGUFlt84GTOkP6Kdx72ThVIGpgnxL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aref Ruqaa Ink" - }, - { - "src": "http://fonts.gstatic.com/s/arefruqaaink/v7/1q2cY5WOGUFlt84GTOkP6Kdx71xde6WhqWBCyxWn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Aref Ruqaa Ink" - } - ] - }, - { - "name": "Arima", - "fontFamily": "Arima, system-ui", - "slug": "arima", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTE-pQGOyYw2fw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Arima" - }, - { - "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX14TA-pQGOyYw2fw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Arima" - }, - { - "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1PzA-pQGOyYw2fw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Arima" - }, - { - "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTA-pQGOyYw2fw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arima" - }, - { - "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1UzA-pQGOyYw2fw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Arima" - }, - { - "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1vzc-pQGOyYw2fw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Arima" - }, - { - "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1hjc-pQGOyYw2fw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arima" - } - ] - }, - { - "name": "Arimo", - "fontFamily": "Arimo, sans-serif", - "slug": "arimo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsBxDAVQI4aA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arimo" - }, - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsBxDAVQI4aA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Arimo" - }, - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3M8tsBxDAVQI4aA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Arimo" - }, - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3CstsBxDAVQI4aA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arimo" - }, - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-ERBrEdwcoaKww.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Arimo" - }, - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-2RBrEdwcoaKww.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Arimo" - }, - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9aQxrEdwcoaKww.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Arimo" - }, - { - "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9jQxrEdwcoaKww.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Arimo" - } - ] - }, - { - "name": "Arizonia", - "fontFamily": "Arizonia, cursive", - "slug": "arizonia", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arizonia/v19/neIIzCemt4A5qa7mv6WGHK06UY30.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arizonia" - } - ] - }, - { - "name": "Armata", - "fontFamily": "Armata, sans-serif", - "slug": "armata", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/armata/v20/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Armata" - } - ] - }, - { - "name": "Arsenal", - "fontFamily": "Arsenal, sans-serif", - "slug": "arsenal", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arsenal" - }, - { - "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Arsenal" - }, - { - "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arsenal" - }, - { - "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Arsenal" - } - ] - }, - { - "name": "Artifika", - "fontFamily": "Artifika, serif", - "slug": "artifika", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/artifika/v21/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Artifika" - } - ] - }, - { - "name": "Arvo", - "fontFamily": "Arvo, serif", - "slug": "arvo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arvo/v20/tDbD2oWUg0MKmSAa7Lzr7vs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arvo" - }, - { - "src": "http://fonts.gstatic.com/s/arvo/v20/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Arvo" - }, - { - "src": "http://fonts.gstatic.com/s/arvo/v20/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arvo" - }, - { - "src": "http://fonts.gstatic.com/s/arvo/v20/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Arvo" - } - ] - }, - { - "name": "Arya", - "fontFamily": "Arya, sans-serif", - "slug": "arya", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/arya/v19/ga6CawNG-HJd9Ub1-beqdFE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Arya" - }, - { - "src": "http://fonts.gstatic.com/s/arya/v19/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Arya" - } - ] - }, - { - "name": "Asap", - "fontFamily": "Asap, sans-serif", - "slug": "asap", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqQsLmOXoA7Glw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqUsLmOXoA7Glw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYzKUsLmOXoA7Glw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUsLmOXoA7Glw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYoKUsLmOXoA7Glw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYTKIsLmOXoA7Glw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYdaIsLmOXoA7Glw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqIsLmOXoA7Glw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYO6IsLmOXoA7Glw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbGmTggvWl0Qn.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEbWmTggvWl0Qn.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmTggvWl0Qn.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmTggvWl0Qn.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmTggvWl0Qn.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYaammTggvWl0Qn.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammTggvWl0Qn.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEammTggvWl0Qn.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Asap" - }, - { - "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammTggvWl0Qn.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Asap" - } - ] - }, - { - "name": "Asap Condensed", - "fontFamily": "Asap Condensed, sans-serif", - "slug": "asap-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9DSWlEgGqgp-pO.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUIFFim6CovpOkXA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8nSmlEgGqgp-pO.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOVGim6CovpOkXA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8rTmlEgGqgp-pO.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOlCim6CovpOkXA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8PT2lEgGqgp-pO.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Asap Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUM1Dim6CovpOkXA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Asap Condensed" - } - ] - }, - { - "name": "Asar", - "fontFamily": "Asar, serif", - "slug": "asar", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/asar/v22/sZlLdRyI6TBIXkYQDLlTW6E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asar" - } - ] - }, - { - "name": "Asset", - "fontFamily": "Asset, system-ui", - "slug": "asset", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/asset/v24/SLXGc1na-mM4cWImRJqExst1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asset" - } - ] - }, - { - "name": "Assistant", - "fontFamily": "Assistant, sans-serif", - "slug": "assistant", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZnEGGf3qGuvM4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Assistant" - }, - { - "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtrhnEGGf3qGuvM4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Assistant" - }, - { - "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Assistant" - }, - { - "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Assistant" - }, - { - "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Assistant" - }, - { - "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Assistant" - }, - { - "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZgEGGf3qGuvM4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Assistant" - } - ] - }, - { - "name": "Astloch", - "fontFamily": "Astloch, system-ui", - "slug": "astloch", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Astloch" - }, - { - "src": "http://fonts.gstatic.com/s/astloch/v26/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Astloch" - } - ] - }, - { - "name": "Asul", - "fontFamily": "Asul, sans-serif", - "slug": "asul", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/asul/v19/VuJ-dNjKxYr46fMFXK78JIg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Asul" - }, - { - "src": "http://fonts.gstatic.com/s/asul/v19/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Asul" - } - ] - }, - { - "name": "Athiti", - "fontFamily": "Athiti, sans-serif", - "slug": "athiti", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Athiti" - }, - { - "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Athiti" - }, - { - "src": "http://fonts.gstatic.com/s/athiti/v12/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Athiti" - }, - { - "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Athiti" - }, - { - "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Athiti" - }, - { - "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Athiti" - } - ] - }, - { - "name": "Atkinson Hyperlegible", - "fontFamily": "Atkinson Hyperlegible, sans-serif", - "slug": "atkinson-hyperlegible", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE5ZgpewSSbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Atkinson Hyperlegible" - }, - { - "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt43C1KxNDXMspQ1lPyU89-1h6ONRlW45G055ItWQGCbUWn.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Atkinson Hyperlegible" - }, - { - "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt73C1KxNDXMspQ1lPyU89-1h6ONRlW45G8WbcNcy-OZFy-FA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Atkinson Hyperlegible" - }, - { - "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt93C1KxNDXMspQ1lPyU89-1h6ONRlW45G056qRdiWKRlmuFH24.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Atkinson Hyperlegible" - } - ] - }, - { - "name": "Atma", - "fontFamily": "Atma, system-ui", - "slug": "atma", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Atma" - }, - { - "src": "http://fonts.gstatic.com/s/atma/v16/uK_84rqWc-Eom25bDj8WIv4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Atma" - }, - { - "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Atma" - }, - { - "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Atma" - }, - { - "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Atma" - } - ] - }, - { - "name": "Atomic Age", - "fontFamily": "Atomic Age, system-ui", - "slug": "atomic-age", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/atomicage/v27/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Atomic Age" - } - ] - }, - { - "name": "Aubrey", - "fontFamily": "Aubrey, system-ui", - "slug": "aubrey", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7vugNsCxVEgA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Aubrey" - } - ] - }, - { - "name": "Audiowide", - "fontFamily": "Audiowide, system-ui", - "slug": "audiowide", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/audiowide/v16/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Audiowide" - } - ] - }, - { - "name": "Autour One", - "fontFamily": "Autour One, system-ui", - "slug": "autour-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/autourone/v24/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Autour One" - } - ] - }, - { - "name": "Average", - "fontFamily": "Average, serif", - "slug": "average", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/average/v18/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Average" - } - ] - }, - { - "name": "Average Sans", - "fontFamily": "Average Sans, sans-serif", - "slug": "average-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Average Sans" - } - ] - }, - { - "name": "Averia Gruesa Libre", - "fontFamily": "Averia Gruesa Libre, system-ui", - "slug": "averia-gruesa-libre", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Averia Gruesa Libre" - } - ] - }, - { - "name": "Averia Libre", - "fontFamily": "Averia Libre, system-ui", - "slug": "averia-libre", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Averia Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Averia Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Averia Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Averia Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Averia Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Averia Libre" - } - ] - }, - { - "name": "Averia Sans Libre", - "fontFamily": "Averia Sans Libre, system-ui", - "slug": "averia-sans-libre", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Averia Sans Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Averia Sans Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Averia Sans Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Averia Sans Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Averia Sans Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Averia Sans Libre" - } - ] - }, - { - "name": "Averia Serif Libre", - "fontFamily": "Averia Serif Libre, system-ui", - "slug": "averia-serif-libre", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Averia Serif Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Averia Serif Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Averia Serif Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Averia Serif Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Averia Serif Libre" - }, - { - "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Averia Serif Libre" - } - ] - }, - { - "name": "Azeret Mono", - "fontFamily": "Azeret Mono, monospace", - "slug": "azeret-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPRh0raa-5s3AA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPVh0raa-5s3AA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfwvVh0raa-5s3AA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh0raa-5s3AA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh0raa-5s3AA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfQvJh0raa-5s3AA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh0raa-5s3AA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPJh0raa-5s3AA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfNfJh0raa-5s3AA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkLye2Z4nAN7J.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJkbye2Z4nAN7J.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLbXkbye2Z4nAN7J.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbye2Z4nAN7J.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbye2Z4nAN7J.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZXlrye2Z4nAN7J.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulrye2Z4nAN7J.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJlrye2Z4nAN7J.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - }, - { - "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYglrye2Z4nAN7J.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Azeret Mono" - } - ] - }, - { - "name": "B612", - "fontFamily": "B612, sans-serif", - "slug": "b612", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/b612/v12/3JnySDDxiSz32jm4GDigUXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "B612" - }, - { - "src": "http://fonts.gstatic.com/s/b612/v12/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "B612" - }, - { - "src": "http://fonts.gstatic.com/s/b612/v12/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "B612" - }, - { - "src": "http://fonts.gstatic.com/s/b612/v12/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "B612" - } - ] - }, - { - "name": "B612 Mono", - "fontFamily": "B612 Mono, monospace", - "slug": "b612-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "B612 Mono" - }, - { - "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "B612 Mono" - }, - { - "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "B612 Mono" - }, - { - "src": "http://fonts.gstatic.com/s/b612mono/v12/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "B612 Mono" - } - ] - }, - { - "name": "BIZ UDGothic", - "fontFamily": "BIZ UDGothic, sans-serif", - "slug": "biz-udgothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bizudgothic/v9/daafSTouBF7RUjnbt8p3LuKttQN98z_MbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BIZ UDGothic" - }, - { - "src": "http://fonts.gstatic.com/s/bizudgothic/v9/daaASTouBF7RUjnbt8p3LuKVCSxZ-xTQZMhbaA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BIZ UDGothic" - } - ] - }, - { - "name": "BIZ UDMincho", - "fontFamily": "BIZ UDMincho, serif", - "slug": "biz-udmincho", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bizudmincho/v9/EJRRQgI6eOxFjBdKs38yhtW1dwT7rcpY8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BIZ UDMincho" - }, - { - "src": "http://fonts.gstatic.com/s/bizudmincho/v9/EJROQgI6eOxFjBdKs38yhtWNyyvfpeFE-IyCrw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BIZ UDMincho" - } - ] - }, - { - "name": "BIZ UDPGothic", - "fontFamily": "BIZ UDPGothic, sans-serif", - "slug": "biz-udpgothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bizudpgothic/v9/hES36X5pHAIBjmS84VL0Bue83nUMQWkMUAk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BIZ UDPGothic" - }, - { - "src": "http://fonts.gstatic.com/s/bizudpgothic/v9/hESq6X5pHAIBjmS84VL0Bue85skjZWEnTABCSQo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BIZ UDPGothic" - } - ] - }, - { - "name": "BIZ UDPMincho", - "fontFamily": "BIZ UDPMincho, serif", - "slug": "biz-udpmincho", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvfbXOBrmYppy7oWWTg1_58nhhYtUb0gZk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BIZ UDPMincho" - }, - { - "src": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvCbXOBrmYppy7oWWTg1_58pqR3kU7fnZAy57k.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BIZ UDPMincho" - } - ] - }, - { - "name": "Babylonica", - "fontFamily": "Babylonica, cursive", - "slug": "babylonica", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/babylonica/v2/5aUw9_i2qxWVCAE2aHjTqDJ0-VVMoEw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Babylonica" - } - ] - }, - { - "name": "Bad Script", - "fontFamily": "Bad Script, cursive", - "slug": "bad-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/badscript/v16/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bad Script" - } - ] - }, - { - "name": "Bahiana", - "fontFamily": "Bahiana, system-ui", - "slug": "bahiana", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bahiana/v19/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bahiana" - } - ] - }, - { - "name": "Bahianita", - "fontFamily": "Bahianita, system-ui", - "slug": "bahianita", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bahianita/v18/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bahianita" - } - ] - }, - { - "name": "Bai Jamjuree", - "fontFamily": "Bai Jamjuree, sans-serif", - "slug": "bai-jamjuree", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bai Jamjuree" - }, - { - "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bai Jamjuree" - } - ] - }, - { - "name": "Bakbak One", - "fontFamily": "Bakbak One, system-ui", - "slug": "bakbak-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bakbakone/v6/zOL54pXAl6RI-p_ardnuycRuv-hHkOs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bakbak One" - } - ] - }, - { - "name": "Ballet", - "fontFamily": "Ballet, cursive", - "slug": "ballet", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ballet/v25/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3C4G-EiAou6Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ballet" - } - ] - }, - { - "name": "Baloo 2", - "fontFamily": "Baloo 2, system-ui", - "slug": "baloo-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgazapv9Fat7WcN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgozapv9Fat7WcN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpv9Fat7WcN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpv9Fat7WcN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpv9Fat7WcN.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo 2" - } - ] - }, - { - "name": "Baloo Bhai 2", - "fontFamily": "Baloo Bhai 2, system-ui", - "slug": "baloo-bhai-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighMXeCo-jsZzo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNhohMXeCo-jsZzo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNvYmMXeCo-jsZzo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNs8mMXeCo-jsZzo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNqgmMXeCo-jsZzo.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Bhai 2" - } - ] - }, - { - "name": "Baloo Bhaijaan 2", - "fontFamily": "Baloo Bhaijaan 2, system-ui", - "slug": "baloo-bhaijaan-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSqP4L4ppfcyC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyjSqP4L4ppfcyC.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TxPTaP4L4ppfcyC.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8Tx2TaP4L4ppfcyC.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TwRTaP4L4ppfcyC.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaijaan 2" - } - ] - }, - { - "name": "Baloo Bhaina 2", - "fontFamily": "Baloo Bhaina 2, system-ui", - "slug": "baloo-bhaina-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPvRfRLYWmZSA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEgMPvRfRLYWmZSA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEbMTvRfRLYWmZSA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEVcTvRfRLYWmZSA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEMsTvRfRLYWmZSA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Bhaina 2" - } - ] - }, - { - "name": "Baloo Chettan 2", - "fontFamily": "Baloo Chettan 2, system-ui", - "slug": "baloo-chettan-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTO1oeH9xI2gc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CdCTO1oeH9xI2gc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CTyUO1oeH9xI2gc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CQWUO1oeH9xI2gc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CWKUO1oeH9xI2gc.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Chettan 2" - } - ] - }, - { - "name": "Baloo Da 2", - "fontFamily": "Baloo Da 2, system-ui", - "slug": "baloo-da-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsTNe55aRa7UE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2" - }, - { - "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjA5sTNe55aRa7UE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2" - }, - { - "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDVtjNe55aRa7UE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2" - }, - { - "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDstjNe55aRa7UE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2" - }, - { - "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjCLtjNe55aRa7UE.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Da 2" - } - ] - }, - { - "name": "Baloo Paaji 2", - "fontFamily": "Baloo Paaji 2, system-ui", - "slug": "baloo-paaji-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX74fybRUz1r5t.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Paaji 2" - } - ] - }, - { - "name": "Baloo Tamma 2", - "fontFamily": "Baloo Tamma 2, system-ui", - "slug": "baloo-tamma-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPp-0IF71SGC5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMsuPp-0IF71SGC5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMvCOZ-0IF71SGC5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMv7OZ-0IF71SGC5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMucOZ-0IF71SGC5.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Tamma 2" - } - ] - }, - { - "name": "Baloo Tammudu 2", - "fontFamily": "Baloo Tammudu 2, system-ui", - "slug": "baloo-tammudu-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e4c6PZSlGmAA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jc0e4c6PZSlGmAA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JSEZ4c6PZSlGmAA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JRgZ4c6PZSlGmAA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2" - }, - { - "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JX8Z4c6PZSlGmAA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Tammudu 2" - } - ] - }, - { - "name": "Baloo Thambi 2", - "fontFamily": "Baloo Thambi 2, system-ui", - "slug": "baloo-thambi-2", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIzaQRG_n4osQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbK_8IzaQRG_n4osQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKE8UzaQRG_n4osQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKKsUzaQRG_n4osQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2" - }, - { - "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKTcUzaQRG_n4osQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Baloo Thambi 2" - } - ] - }, - { - "name": "Balsamiq Sans", - "fontFamily": "Balsamiq Sans, system-ui", - "slug": "balsamiq-sans", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Balsamiq Sans" - }, - { - "src": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sazZiAbNrN8SB3lQQX7PncwdsXJaVIDzvcXA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Balsamiq Sans" - }, - { - "src": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sZzZiAbNrN8SB3lQQX7PncyWUyBY9mAzLFRQI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Balsamiq Sans" - }, - { - "src": "http://fonts.gstatic.com/s/balsamiqsans/v11/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsBxDAVQI4aA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Balsamiq Sans" - } - ] - }, - { - "name": "Balthazar", - "fontFamily": "Balthazar, serif", - "slug": "balthazar", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Balthazar" - } - ] - }, - { - "name": "Bangers", - "fontFamily": "Bangers, system-ui", - "slug": "bangers", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bangers/v21/FeVQS0BTqb0h60ACL5la2bxii28.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bangers" - } - ] - }, - { - "name": "Barlow", - "fontFamily": "Barlow, sans-serif", - "slug": "barlow", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Barlow" - }, - { - "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Barlow" - } - ] - }, - { - "name": "Barlow Condensed", - "fontFamily": "Barlow Condensed, sans-serif", - "slug": "barlow-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Barlow Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Barlow Condensed" - } - ] - }, - { - "name": "Barlow Semi Condensed", - "fontFamily": "Barlow Semi Condensed, sans-serif", - "slug": "barlow-semi-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Barlow Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Barlow Semi Condensed" - } - ] - }, - { - "name": "Barriecito", - "fontFamily": "Barriecito, system-ui", - "slug": "barriecito", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/barriecito/v17/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barriecito" - } - ] - }, - { - "name": "Barrio", - "fontFamily": "Barrio, system-ui", - "slug": "barrio", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/barrio/v19/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Barrio" - } - ] - }, - { - "name": "Basic", - "fontFamily": "Basic, sans-serif", - "slug": "basic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKQN34lDVyR7D.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Basic" - } - ] - }, - { - "name": "Baskervville", - "fontFamily": "Baskervville, serif", - "slug": "baskervville", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baskervville/v14/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baskervville" - }, - { - "src": "http://fonts.gstatic.com/s/baskervville/v14/YA9Kr0yU4l_XOrogbkun3kQQtZmspPPZ9Mlt.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Baskervville" - } - ] - }, - { - "name": "Battambang", - "fontFamily": "Battambang, system-ui", - "slug": "battambang", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/battambang/v24/uk-kEGe7raEw-HjkzZabNhGp5w50_o9T7Q.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Battambang" - }, - { - "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNtmLxyRa8oZK9I0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Battambang" - }, - { - "src": "http://fonts.gstatic.com/s/battambang/v24/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Battambang" - }, - { - "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Battambang" - }, - { - "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNvGOxyRa8oZK9I0.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Battambang" - } - ] - }, - { - "name": "Baumans", - "fontFamily": "Baumans, system-ui", - "slug": "baumans", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Baumans" - } - ] - }, - { - "name": "Bayon", - "fontFamily": "Bayon, sans-serif", - "slug": "bayon", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bayon/v29/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bayon" - } - ] - }, - { - "name": "Be Vietnam Pro", - "fontFamily": "Be Vietnam Pro, sans-serif", - "slug": "be-vietnam-pro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HRUBX8YYbAiah8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsSZZIneh-waA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HT4JF8yT7wrcwap.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczRbgJdhapcUU.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HScJ18yT7wrcwap.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwRbgJdhapcUU.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVPSTAyLFyeg_IDWvOJmVES_EwwD3s6ZKAi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HwyBX8YYbAiah8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxRbgJdhapcUU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2RbgJdhapcUU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSMIF8yT7wrcwap.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3RbgJdhapcUU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSQI18yT7wrcwap.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80RbgJdhapcUU.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HS0Il8yT7wrcwap.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Be Vietnam Pro" - }, - { - "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1RbgJdhapcUU.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Be Vietnam Pro" - } - ] - }, - { - "name": "Beau Rivage", - "fontFamily": "Beau Rivage, cursive", - "slug": "beau-rivage", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUlmg3NZp8K2sL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Beau Rivage" - } - ] - }, - { - "name": "Bebas Neue", - "fontFamily": "Bebas Neue, sans-serif", - "slug": "bebas-neue", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bebasneue/v10/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bebas Neue" - } - ] - }, - { - "name": "Belgrano", - "fontFamily": "Belgrano, serif", - "slug": "belgrano", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Belgrano" - } - ] - }, - { - "name": "Bellefair", - "fontFamily": "Bellefair, serif", - "slug": "bellefair", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bellefair/v14/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bellefair" - } - ] - }, - { - "name": "Belleza", - "fontFamily": "Belleza, sans-serif", - "slug": "belleza", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Belleza" - } - ] - }, - { - "name": "Bellota", - "fontFamily": "Bellota, system-ui", - "slug": "bellota", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAID55kGMViblPtXs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Bellota" - }, - { - "src": "http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjHGEfjZtKpXulTQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Bellota" - }, - { - "src": "http://fonts.gstatic.com/s/bellota/v16/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bellota" - }, - { - "src": "http://fonts.gstatic.com/s/bellota/v16/MwQ0bhXl3_qEpiwAKJBbsEk7hbBWrA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bellota" - }, - { - "src": "http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAIC5-kGMViblPtXs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bellota" - }, - { - "src": "http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjDGYfjZtKpXulTQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bellota" - } - ] - }, - { - "name": "Bellota Text", - "fontFamily": "Bellota Text, system-ui", - "slug": "bellota-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5VfsqfQXwQy6yxg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Bellota Text" - }, - { - "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_0YSuixmYK.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Bellota Text" - }, - { - "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bellota Text" - }, - { - "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlNVP2VnlWS4f3-UE9hHXMx-9kKVyv8Sjer.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bellota Text" - }, - { - "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5RfwqfQXwQy6yxg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bellota Text" - }, - { - "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_0YSuixmYK.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bellota Text" - } - ] - }, - { - "name": "BenchNine", - "fontFamily": "BenchNine, sans-serif", - "slug": "benchnine", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "BenchNine" - }, - { - "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BenchNine" - }, - { - "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BenchNine" - } - ] - }, - { - "name": "Benne", - "fontFamily": "Benne, serif", - "slug": "benne", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/benne/v22/L0xzDFAhn18E6Vjxlt6qTDBN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Benne" - } - ] - }, - { - "name": "Bentham", - "fontFamily": "Bentham, serif", - "slug": "bentham", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bentham/v18/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bentham" - } - ] - }, - { - "name": "Berkshire Swash", - "fontFamily": "Berkshire Swash, cursive", - "slug": "berkshire-swash", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/berkshireswash/v16/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Berkshire Swash" - } - ] - }, - { - "name": "Besley", - "fontFamily": "Besley, serif", - "slug": "besley", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBSdRoFPOl8-E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fYTBSdRoFPOl8-E.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fWjGSdRoFPOl8-E.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fVHGSdRoFPOl8-E.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fTbGSdRoFPOl8-E.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fR_GSdRoFPOl8-E.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CoZdiENGg4-E04A.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Ck5diENGg4-E04A.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Cf5BiENGg4-E04A.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CRpBiENGg4-E04A.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CIZBiENGg4-E04A.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Besley" - }, - { - "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CCJBiENGg4-E04A.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Besley" - } - ] - }, - { - "name": "Beth Ellen", - "fontFamily": "Beth Ellen, cursive", - "slug": "beth-ellen", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bethellen/v17/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Beth Ellen" - } - ] - }, - { - "name": "Bevan", - "fontFamily": "Bevan, system-ui", - "slug": "bevan", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bevan/v21/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bevan" - }, - { - "src": "http://fonts.gstatic.com/s/bevan/v21/4iCt6KZ0a9NXjG8YWC7Zs0SJD4U.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bevan" - } - ] - }, - { - "name": "BhuTuka Expanded One", - "fontFamily": "BhuTuka Expanded One, system-ui", - "slug": "bhutuka-expanded-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bhutukaexpandedone/v3/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJCyX8pg_RVH1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BhuTuka Expanded One" - } - ] - }, - { - "name": "Big Shoulders Display", - "fontFamily": "Big Shoulders Display, system-ui", - "slug": "big-shoulders-display", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY86JF46SRP4yZQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ87JF46SRP4yZQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YddE7JF46SRP4yZQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87JF46SRP4yZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0Ydb07JF46SRP4yZQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdVE8JF46SRP4yZQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdWg8JF46SRP4yZQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ88JF46SRP4yZQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdSY8JF46SRP4yZQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Display" - } - ] - }, - { - "name": "Big Shoulders Inline Display", - "fontFamily": "Big Shoulders Inline Display, system-ui", - "slug": "big-shoulders-inline-display", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBEnR5yPc2Huux.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBE3R5yPc2Huux.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0mfE3R5yPc2Huux.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE3R5yPc2Huux.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nzE3R5yPc2Huux.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kfFHR5yPc2Huux.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kmFHR5yPc2Huux.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBFHR5yPc2Huux.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0loFHR5yPc2Huux.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Display" - } - ] - }, - { - "name": "Big Shoulders Inline Text", - "fontFamily": "Big Shoulders Inline Text, system-ui", - "slug": "big-shoulders-inline-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0yqGN7Y6Jsc8c.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0y6GN7Y6Jsc8c.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgbqy6GN7Y6Jsc8c.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y6GN7Y6Jsc8c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgaGy6GN7Y6Jsc8c.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZqzKGN7Y6Jsc8c.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZTzKGN7Y6Jsc8c.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0zKGN7Y6Jsc8c.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgYdzKGN7Y6Jsc8c.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Inline Text" - } - ] - }, - { - "name": "Big Shoulders Stencil Display", - "fontFamily": "Big Shoulders Stencil Display, system-ui", - "slug": "big-shoulders-stencil-display", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0nPKHznJucP9w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0jPKHznJucP9w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_ZUjPKHznJucP9w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0jPKHznJucP9w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_CUjPKHznJucP9w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_5U_PKHznJucP9w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_3E_PKHznJucP9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0_PKHznJucP9w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_kk_PKHznJucP9w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Display" - } - ] - }, - { - "name": "Big Shoulders Stencil Text", - "fontFamily": "Big Shoulders Stencil Text, system-ui", - "slug": "big-shoulders-stencil-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04XIGS_Py_AWbQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4TIGS_Py_AWbQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRjYTIGS_Py_AWbQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04TIGS_Py_AWbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR4YTIGS_Py_AWbQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRDYPIGS_Py_AWbQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRNIPIGS_Py_AWbQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4PIGS_Py_AWbQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGReoPIGS_Py_AWbQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Stencil Text" - } - ] - }, - { - "name": "Big Shoulders Text", - "fontFamily": "Big Shoulders Text, system-ui", - "slug": "big-shoulders-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-r3TIPNl6P2pc.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-q3TIPNl6P2pc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3dGq3TIPNl6P2pc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q3TIPNl6P2pc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3b2q3TIPNl6P2pc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3VGt3TIPNl6P2pc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Wit3TIPNl6P2pc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-t3TIPNl6P2pc.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - }, - { - "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Sat3TIPNl6P2pc.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Big Shoulders Text" - } - ] - }, - { - "name": "Bigelow Rules", - "fontFamily": "Bigelow Rules, system-ui", - "slug": "bigelow-rules", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigelowrules/v24/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bigelow Rules" - } - ] - }, - { - "name": "Bigshot One", - "fontFamily": "Bigshot One, system-ui", - "slug": "bigshot-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bigshotone/v25/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bigshot One" - } - ] - }, - { - "name": "Bilbo", - "fontFamily": "Bilbo, cursive", - "slug": "bilbo", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ210hpIRz4wxE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bilbo" - } - ] - }, - { - "name": "Bilbo Swash Caps", - "fontFamily": "Bilbo Swash Caps, cursive", - "slug": "bilbo-swash-caps", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bilbo Swash Caps" - } - ] - }, - { - "name": "BioRhyme", - "fontFamily": "BioRhyme, serif", - "slug": "biorhyme", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "BioRhyme" - }, - { - "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "BioRhyme" - }, - { - "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BioRhyme" - }, - { - "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BioRhyme" - }, - { - "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "BioRhyme" - } - ] - }, - { - "name": "BioRhyme Expanded", - "fontFamily": "BioRhyme Expanded, serif", - "slug": "biorhyme-expanded", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "BioRhyme Expanded" - } - ] - }, - { - "name": "Birthstone", - "fontFamily": "Birthstone, cursive", - "slug": "birthstone", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/birthstone/v11/8AtsGs2xO4yLRhy87sv_HLn5jRfZHzM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Birthstone" - } - ] - }, - { - "name": "Birthstone Bounce", - "fontFamily": "Birthstone Bounce, cursive", - "slug": "birthstone-bounce", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6XaxZF43lIvTWrktHOTBJZGH7dEeVJGIMYDo_8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Birthstone Bounce" - }, - { - "src": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6SaxZF43lIvTWrktHOTBJZGH7dEd29MacQJZP1LmD9.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Birthstone Bounce" - } - ] - }, - { - "name": "Biryani", - "fontFamily": "Biryani, sans-serif", - "slug": "biryani", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Biryani" - }, - { - "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Biryani" - }, - { - "src": "http://fonts.gstatic.com/s/biryani/v13/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Biryani" - }, - { - "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Biryani" - }, - { - "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Biryani" - }, - { - "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Biryani" - }, - { - "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Biryani" - } - ] - }, - { - "name": "Bitter", - "fontFamily": "Bitter, serif", - "slug": "bitter", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCL_EXFh2reU.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCL_EXFh2reU.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCL_EXFh2reU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL_EXFh2reU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCL_EXFh2reU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCL_EXFh2reU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL_EXFh2reU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCL_EXFh2reU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCL_EXFh2reU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OWHpzveWxBw.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOWHpzveWxBw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOWHpzveWxBw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWHpzveWxBw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOWHpzveWxBw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOWHpzveWxBw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOWHpzveWxBw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOWHpzveWxBw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Bitter" - }, - { - "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOWHpzveWxBw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Bitter" - } - ] - }, - { - "name": "Black And White Picture", - "fontFamily": "Black And White Picture, sans-serif", - "slug": "black-and-white-picture", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/blackandwhitepicture/v22/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Black And White Picture" - } - ] - }, - { - "name": "Black Han Sans", - "fontFamily": "Black Han Sans, sans-serif", - "slug": "black-han-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/blackhansans/v15/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Black Han Sans" - } - ] - }, - { - "name": "Black Ops One", - "fontFamily": "Black Ops One, system-ui", - "slug": "black-ops-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Black Ops One" - } - ] - }, - { - "name": "Blaka", - "fontFamily": "Blaka, system-ui", - "slug": "blaka", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/blaka/v5/8vIG7w8722p_6kdr20D2FV5e.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Blaka" - } - ] - }, - { - "name": "Blaka Hollow", - "fontFamily": "Blaka Hollow, system-ui", - "slug": "blaka-hollow", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/blakahollow/v5/MCoUzAL91sjRE2FsKsxUtezYB9oFyW_-oA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Blaka Hollow" - } - ] - }, - { - "name": "Blaka Ink", - "fontFamily": "Blaka Ink, system-ui", - "slug": "blaka-ink", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/blakaink/v6/AlZy_zVVtpj22Znag2chdXf4XB0Tow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Blaka Ink" - } - ] - }, - { - "name": "Blinker", - "fontFamily": "Blinker, sans-serif", - "slug": "blinker", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Blinker" - }, - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Blinker" - }, - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Blinker" - }, - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Blinker" - }, - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Blinker" - }, - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Blinker" - }, - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Blinker" - }, - { - "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Blinker" - } - ] - }, - { - "name": "Bodoni Moda", - "fontFamily": "Bodoni Moda, serif", - "slug": "bodoni-moda", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIBytVjMYwE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oXzawIBytVjMYwE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oZDdwIBytVjMYwE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIBytVjMYwE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oc7dwIBytVjMYwE.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oefdwIBytVjMYwE.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4sXrJcwHqoQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZGsN4sXrJcwHqoQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZ9sR4sXrJcwHqoQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZz8R4sXrJcwHqoQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZqMR4sXrJcwHqoQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda" - }, - { - "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZgcR4sXrJcwHqoQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Bodoni Moda" - } - ] - }, - { - "name": "Bokor", - "fontFamily": "Bokor, system-ui", - "slug": "bokor", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bokor/v30/m8JcjfpeeaqTiR2WdInbcaxE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bokor" - } - ] - }, - { - "name": "Bona Nova", - "fontFamily": "Bona Nova, serif", - "slug": "bona-nova", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bonanova/v10/B50NF7ZCpX7fcHfvIUBJi6hqHK-CLA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bona Nova" - }, - { - "src": "http://fonts.gstatic.com/s/bonanova/v10/B50LF7ZCpX7fcHfvIUB5iaJuPqqSLJYf.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Bona Nova" - }, - { - "src": "http://fonts.gstatic.com/s/bonanova/v10/B50IF7ZCpX7fcHfvIUBxN4dOFISeJY8GgQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Bona Nova" - } - ] - }, - { - "name": "Bonbon", - "fontFamily": "Bonbon, cursive", - "slug": "bonbon", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bonbon/v26/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bonbon" - } - ] - }, - { - "name": "Bonheur Royale", - "fontFamily": "Bonheur Royale, cursive", - "slug": "bonheur-royale", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bonheurroyale/v10/c4m51nt_GMTrtX-b9GcG4-YRmYK_c0f1N5Ij.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bonheur Royale" - } - ] - }, - { - "name": "Boogaloo", - "fontFamily": "Boogaloo, system-ui", - "slug": "boogaloo", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/boogaloo/v19/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Boogaloo" - } - ] - }, - { - "name": "Bowlby One", - "fontFamily": "Bowlby One, system-ui", - "slug": "bowlby-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bowlbyone/v19/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bowlby One" - } - ] - }, - { - "name": "Bowlby One SC", - "fontFamily": "Bowlby One SC, system-ui", - "slug": "bowlby-one-sc", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bowlbyonesc/v20/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bowlby One SC" - } - ] - }, - { - "name": "Braah One", - "fontFamily": "Braah One, sans-serif", - "slug": "braah-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/braahone/v2/KFOlCnWUpt6LsxxxiylvAx05IsDqlA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Braah One" - } - ] - }, - { - "name": "Brawler", - "fontFamily": "Brawler, serif", - "slug": "brawler", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Brawler" - }, - { - "src": "http://fonts.gstatic.com/s/brawler/v19/xn7lYHE3xXewAscGiryUb932eNaPfk8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Brawler" - } - ] - }, - { - "name": "Bree Serif", - "fontFamily": "Bree Serif, serif", - "slug": "bree-serif", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bree Serif" - } - ] - }, - { - "name": "Bruno Ace", - "fontFamily": "Bruno Ace, system-ui", - "slug": "bruno-ace", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/brunoace/v1/WwkcxPa2E06x4trkOj_kMKoMWNMg3Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bruno Ace" - } - ] - }, - { - "name": "Bruno Ace SC", - "fontFamily": "Bruno Ace SC, system-ui", - "slug": "bruno-ace-sc", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/brunoacesc/v1/ptROTiycffFLBuiHjdJDl634LSFrpe8uZA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bruno Ace SC" - } - ] - }, - { - "name": "Brygada 1918", - "fontFamily": "Brygada 1918, serif", - "slug": "brygada-1918", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-f-V8Wu5O3gbo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Brygada 1918" - }, - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y12f-V8Wu5O3gbo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Brygada 1918" - }, - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y7GY-V8Wu5O3gbo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Brygada 1918" - }, - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y4iY-V8Wu5O3gbo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Brygada 1918" - }, - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcERwcv7GykboaLg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Brygada 1918" - }, - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcIxwcv7GykboaLg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Brygada 1918" - }, - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfczxscv7GykboaLg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Brygada 1918" - }, - { - "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfc9hscv7GykboaLg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Brygada 1918" - } - ] - }, - { - "name": "Bubblegum Sans", - "fontFamily": "Bubblegum Sans, system-ui", - "slug": "bubblegum-sans", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bubblegumsans/v16/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bubblegum Sans" - } - ] - }, - { - "name": "Bubbler One", - "fontFamily": "Bubbler One, sans-serif", - "slug": "bubbler-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bubblerone/v20/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bubbler One" - } - ] - }, - { - "name": "Buda", - "fontFamily": "Buda, system-ui", - "slug": "buda", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/buda/v25/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Buda" - } - ] - }, - { - "name": "Buenard", - "fontFamily": "Buenard, serif", - "slug": "buenard", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/buenard/v17/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Buenard" - }, - { - "src": "http://fonts.gstatic.com/s/buenard/v17/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Buenard" - } - ] - }, - { - "name": "Bungee", - "fontFamily": "Bungee, system-ui", - "slug": "bungee", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bungee/v11/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee" - } - ] - }, - { - "name": "Bungee Hairline", - "fontFamily": "Bungee Hairline, system-ui", - "slug": "bungee-hairline", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bungeehairline/v19/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Hairline" - } - ] - }, - { - "name": "Bungee Inline", - "fontFamily": "Bungee Inline, system-ui", - "slug": "bungee-inline", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bungeeinline/v12/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Inline" - } - ] - }, - { - "name": "Bungee Outline", - "fontFamily": "Bungee Outline, system-ui", - "slug": "bungee-outline", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bungeeoutline/v18/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Outline" - } - ] - }, - { - "name": "Bungee Shade", - "fontFamily": "Bungee Shade, system-ui", - "slug": "bungee-shade", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bungeeshade/v11/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Shade" - } - ] - }, - { - "name": "Bungee Spice", - "fontFamily": "Bungee Spice, system-ui", - "slug": "bungee-spice", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/bungeespice/v8/nwpTtK2nIhxE0q-IwgSpZBqCzyI-aMPF7Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Bungee Spice" - } - ] - }, - { - "name": "Butcherman", - "fontFamily": "Butcherman, system-ui", - "slug": "butcherman", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Butcherman" - } - ] - }, - { - "name": "Butterfly Kids", - "fontFamily": "Butterfly Kids, cursive", - "slug": "butterfly-kids", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/butterflykids/v21/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Butterfly Kids" - } - ] - }, - { - "name": "Cabin", - "fontFamily": "Cabin, sans-serif", - "slug": "cabin", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Gvxm7rE_s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cabin" - }, - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7Gvxm7rE_s.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cabin" - }, - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Gvxm7rE_s.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cabin" - }, - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Gvxm7rE_s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cabin" - }, - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_KlwkzuA_u1Bg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cabin" - }, - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlwkzuA_u1Bg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cabin" - }, - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlwkzuA_u1Bg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cabin" - }, - { - "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlwkzuA_u1Bg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cabin" - } - ] - }, - { - "name": "Cabin Condensed", - "fontFamily": "Cabin Condensed, sans-serif", - "slug": "cabin-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cabin Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cabin Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cabin Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cabin Condensed" - } - ] - }, - { - "name": "Cabin Sketch", - "fontFamily": "Cabin Sketch, system-ui", - "slug": "cabin-sketch", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cabinsketch/v19/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cabin Sketch" - }, - { - "src": "http://fonts.gstatic.com/s/cabinsketch/v19/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cabin Sketch" - } - ] - }, - { - "name": "Caesar Dressing", - "fontFamily": "Caesar Dressing, system-ui", - "slug": "caesar-dressing", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caesar Dressing" - } - ] - }, - { - "name": "Cagliostro", - "fontFamily": "Cagliostro, sans-serif", - "slug": "cagliostro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cagliostro" - } - ] - }, - { - "name": "Cairo", - "fontFamily": "Cairo, sans-serif", - "slug": "cairo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA-W1ToLQ-HmkA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Cairo" - }, - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hL4-W1ToLQ-HmkA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cairo" - }, - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1ToLQ-HmkA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cairo" - }, - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1ToLQ-HmkA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cairo" - }, - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hD45W1ToLQ-HmkA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cairo" - }, - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1ToLQ-HmkA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cairo" - }, - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA5W1ToLQ-HmkA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Cairo" - }, - { - "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hEk5W1ToLQ-HmkA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Cairo" - } - ] - }, - { - "name": "Cairo Play", - "fontFamily": "Cairo Play, sans-serif", - "slug": "cairo-play", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnYq9yXa8GvzaA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - }, - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1zHYq9yXa8GvzaA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - }, - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1knYq9yXa8GvzaA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - }, - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1oHYq9yXa8GvzaA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - }, - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1THEq9yXa8GvzaA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - }, - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1dXEq9yXa8GvzaA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - }, - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnEq9yXa8GvzaA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - }, - { - "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1O3Eq9yXa8GvzaA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Cairo Play" - } - ] - }, - { - "name": "Caladea", - "fontFamily": "Caladea, serif", - "slug": "caladea", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/caladea/v7/kJEzBugZ7AAjhybUjR93-9IztOc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caladea" - }, - { - "src": "http://fonts.gstatic.com/s/caladea/v7/kJExBugZ7AAjhybUvR19__A2pOdvDA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Caladea" - }, - { - "src": "http://fonts.gstatic.com/s/caladea/v7/kJE2BugZ7AAjhybUtaNY39oYqO52FZ0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Caladea" - }, - { - "src": "http://fonts.gstatic.com/s/caladea/v7/kJE0BugZ7AAjhybUvR1FQ98SrMxzBZ2lDA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Caladea" - } - ] - }, - { - "name": "Calistoga", - "fontFamily": "Calistoga, system-ui", - "slug": "calistoga", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/calistoga/v13/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Calistoga" - } - ] - }, - { - "name": "Calligraffitti", - "fontFamily": "Calligraffitti, cursive", - "slug": "calligraffitti", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Calligraffitti" - } - ] - }, - { - "name": "Cambay", - "fontFamily": "Cambay, sans-serif", - "slug": "cambay", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cambay/v12/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cambay" - }, - { - "src": "http://fonts.gstatic.com/s/cambay/v12/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cambay" - }, - { - "src": "http://fonts.gstatic.com/s/cambay/v12/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cambay" - }, - { - "src": "http://fonts.gstatic.com/s/cambay/v12/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cambay" - } - ] - }, - { - "name": "Cambo", - "fontFamily": "Cambo, serif", - "slug": "cambo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cambo/v17/IFSqHeNEk8FJk416ok7xkPm8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cambo" - } - ] - }, - { - "name": "Candal", - "fontFamily": "Candal, sans-serif", - "slug": "candal", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Candal" - } - ] - }, - { - "name": "Cantarell", - "fontFamily": "Cantarell, sans-serif", - "slug": "cantarell", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cantarell/v17/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cantarell" - }, - { - "src": "http://fonts.gstatic.com/s/cantarell/v17/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cantarell" - }, - { - "src": "http://fonts.gstatic.com/s/cantarell/v17/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cantarell" - }, - { - "src": "http://fonts.gstatic.com/s/cantarell/v17/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cantarell" - } - ] - }, - { - "name": "Cantata One", - "fontFamily": "Cantata One, serif", - "slug": "cantata-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cantata One" - } - ] - }, - { - "name": "Cantora One", - "fontFamily": "Cantora One, sans-serif", - "slug": "cantora-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cantoraone/v19/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cantora One" - } - ] - }, - { - "name": "Capriola", - "fontFamily": "Capriola, sans-serif", - "slug": "capriola", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/capriola/v14/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Capriola" - } - ] - }, - { - "name": "Caramel", - "fontFamily": "Caramel, cursive", - "slug": "caramel", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/caramel/v7/P5sCzZKBbMTf_ShyxCRuiZ-uydg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caramel" - } - ] - }, - { - "name": "Carattere", - "fontFamily": "Carattere, cursive", - "slug": "carattere", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/carattere/v7/4iCv6Kp1b9dXlgt_CkvTt2aMH4V_gg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carattere" - } - ] - }, - { - "name": "Cardo", - "fontFamily": "Cardo, serif", - "slug": "cardo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cardo" - }, - { - "src": "http://fonts.gstatic.com/s/cardo/v19/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cardo" - }, - { - "src": "http://fonts.gstatic.com/s/cardo/v19/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cardo" - } - ] - }, - { - "name": "Carlito", - "fontFamily": "Carlito, sans-serif", - "slug": "carlito", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn9SDPw3m-pk039PDCLTXUETuE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carlito" - }, - { - "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn_SDPw3m-pk039DDKBSVcBXuFb0Q.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Carlito" - }, - { - "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn4SDPw3m-pk039BIykaX0vUuhCyOo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Carlito" - }, - { - "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn6SDPw3m-pk039DDK59XglVspH2OprMQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Carlito" - } - ] - }, - { - "name": "Carme", - "fontFamily": "Carme, sans-serif", - "slug": "carme", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carme" - } - ] - }, - { - "name": "Carrois Gothic", - "fontFamily": "Carrois Gothic, sans-serif", - "slug": "carrois-gothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carrois Gothic" - } - ] - }, - { - "name": "Carrois Gothic SC", - "fontFamily": "Carrois Gothic SC, sans-serif", - "slug": "carrois-gothic-sc", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carrois Gothic SC" - } - ] - }, - { - "name": "Carter One", - "fontFamily": "Carter One, system-ui", - "slug": "carter-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Carter One" - } - ] - }, - { - "name": "Castoro", - "fontFamily": "Castoro, serif", - "slug": "castoro", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/castoro/v19/1q2GY5yMCld3-O4cHYhEzOYenEU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Castoro" - }, - { - "src": "http://fonts.gstatic.com/s/castoro/v19/1q2EY5yMCld3-O4cLYpOyMQbjEX5fw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Castoro" - } - ] - }, - { - "name": "Castoro Titling", - "fontFamily": "Castoro Titling, system-ui", - "slug": "castoro-titling", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/castorotitling/v3/buEupouwccj03leTfjUAhEZWlrNqYgckeo9RMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Castoro Titling" - } - ] - }, - { - "name": "Catamaran", - "fontFamily": "Catamaran, sans-serif", - "slug": "catamaran", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1anXuluiLyw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1anXuluiLyw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1anXuluiLyw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1anXuluiLyw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1anXuluiLyw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1anXuluiLyw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1anXuluiLyw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1anXuluiLyw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Catamaran" - }, - { - "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1anXuluiLyw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Catamaran" - } - ] - }, - { - "name": "Caudex", - "fontFamily": "Caudex, serif", - "slug": "caudex", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/caudex/v15/esDQ311QOP6BJUrIyviAnb4eEw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caudex" - }, - { - "src": "http://fonts.gstatic.com/s/caudex/v15/esDS311QOP6BJUr4yPKEv7sOE4in.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Caudex" - }, - { - "src": "http://fonts.gstatic.com/s/caudex/v15/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Caudex" - }, - { - "src": "http://fonts.gstatic.com/s/caudex/v15/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Caudex" - } - ] - }, - { - "name": "Caveat", - "fontFamily": "Caveat, cursive", - "slug": "caveat", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9SIKjYBxPigs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caveat" - }, - { - "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjcB9SIKjYBxPigs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Caveat" - }, - { - "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjSx6SIKjYBxPigs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Caveat" - }, - { - "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIKjYBxPigs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Caveat" - } - ] - }, - { - "name": "Caveat Brush", - "fontFamily": "Caveat Brush, cursive", - "slug": "caveat-brush", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Caveat Brush" - } - ] - }, - { - "name": "Cedarville Cursive", - "fontFamily": "Cedarville Cursive, cursive", - "slug": "cedarville-cursive", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cedarville Cursive" - } - ] - }, - { - "name": "Ceviche One", - "fontFamily": "Ceviche One, system-ui", - "slug": "ceviche-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ceviche One" - } - ] - }, - { - "name": "Chakra Petch", - "fontFamily": "Chakra Petch, sans-serif", - "slug": "chakra-petch", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Chakra Petch" - }, - { - "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Chakra Petch" - } - ] - }, - { - "name": "Changa", - "fontFamily": "Changa, sans-serif", - "slug": "changa", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjDp9htf1ZM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Changa" - }, - { - "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjDp9htf1ZM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Changa" - }, - { - "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjDp9htf1ZM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Changa" - }, - { - "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjDp9htf1ZM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Changa" - }, - { - "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjDp9htf1ZM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Changa" - }, - { - "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjDp9htf1ZM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Changa" - }, - { - "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjDp9htf1ZM.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Changa" - } - ] - }, - { - "name": "Changa One", - "fontFamily": "Changa One, system-ui", - "slug": "changa-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/changaone/v18/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Changa One" - }, - { - "src": "http://fonts.gstatic.com/s/changaone/v18/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Changa One" - } - ] - }, - { - "name": "Chango", - "fontFamily": "Chango, system-ui", - "slug": "chango", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chango/v22/2V0cKI0OB5U7WaJyz324TFUaAw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chango" - } - ] - }, - { - "name": "Charis SIL", - "fontFamily": "Charis SIL, serif", - "slug": "charis-sil", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/charissil/v2/oPWK_kV3l-s-Q8govXvKrPrmYjZ2Xn0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Charis SIL" - }, - { - "src": "http://fonts.gstatic.com/s/charissil/v2/oPWI_kV3l-s-Q8govXvKnPjsZhRzTn2Ozw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Charis SIL" - }, - { - "src": "http://fonts.gstatic.com/s/charissil/v2/oPWJ_kV3l-s-Q8govXvKlEbJRj5dQnSX1ko.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Charis SIL" - }, - { - "src": "http://fonts.gstatic.com/s/charissil/v2/oPWX_kV3l-s-Q8govXvKnPjU2jtXRlaSxkrMCQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Charis SIL" - } - ] - }, - { - "name": "Charm", - "fontFamily": "Charm, cursive", - "slug": "charm", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/charm/v11/7cHmv4oii5K0MeYvIe804WIo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Charm" - }, - { - "src": "http://fonts.gstatic.com/s/charm/v11/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Charm" - } - ] - }, - { - "name": "Charmonman", - "fontFamily": "Charmonman, cursive", - "slug": "charmonman", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/charmonman/v18/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Charmonman" - }, - { - "src": "http://fonts.gstatic.com/s/charmonman/v18/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Charmonman" - } - ] - }, - { - "name": "Chathura", - "fontFamily": "Chathura, sans-serif", - "slug": "chathura", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chathura/v20/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Chathura" - }, - { - "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Chathura" - }, - { - "src": "http://fonts.gstatic.com/s/chathura/v20/_gP71R7-rzUuVjim418goUC5S-Zy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chathura" - }, - { - "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Chathura" - }, - { - "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Chathura" - } - ] - }, - { - "name": "Chau Philomene One", - "fontFamily": "Chau Philomene One, sans-serif", - "slug": "chau-philomene-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chau Philomene One" - }, - { - "src": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Chau Philomene One" - } - ] - }, - { - "name": "Chela One", - "fontFamily": "Chela One, system-ui", - "slug": "chela-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chela One" - } - ] - }, - { - "name": "Chelsea Market", - "fontFamily": "Chelsea Market, system-ui", - "slug": "chelsea-market", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chelsea Market" - } - ] - }, - { - "name": "Chenla", - "fontFamily": "Chenla, system-ui", - "slug": "chenla", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chenla" - } - ] - }, - { - "name": "Cherish", - "fontFamily": "Cherish, cursive", - "slug": "cherish", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cherish/v8/ll88K2mXUyqsDsTN5iDCI6IJjg8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cherish" - } - ] - }, - { - "name": "Cherry Cream Soda", - "fontFamily": "Cherry Cream Soda, system-ui", - "slug": "cherry-cream-soda", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cherry Cream Soda" - } - ] - }, - { - "name": "Cherry Swash", - "fontFamily": "Cherry Swash, system-ui", - "slug": "cherry-swash", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cherryswash/v18/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cherry Swash" - }, - { - "src": "http://fonts.gstatic.com/s/cherryswash/v18/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cherry Swash" - } - ] - }, - { - "name": "Chewy", - "fontFamily": "Chewy, system-ui", - "slug": "chewy", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wk5xIDMfO-ed.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chewy" - } - ] - }, - { - "name": "Chicle", - "fontFamily": "Chicle, system-ui", - "slug": "chicle", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chicle/v21/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chicle" - } - ] - }, - { - "name": "Chilanka", - "fontFamily": "Chilanka, cursive", - "slug": "chilanka", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chilanka/v20/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chilanka" - } - ] - }, - { - "name": "Chivo", - "fontFamily": "Chivo, sans-serif", - "slug": "chivo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB7ul2DSFXjQiQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PB_ul2DSFXjQiQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_4h_ul2DSFXjQiQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ul2DSFXjQiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_jh_ul2DSFXjQiQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Yhjul2DSFXjQiQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Wxjul2DSFXjQiQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PBjul2DSFXjQiQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_FRjul2DSFXjQiQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1WrWN33AiasJ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG1GrWN33AiasJ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFxY1GrWN33AiasJ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1GrWN33AiasJ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFw01GrWN33AiasJ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzY02rWN33AiasJ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzh02rWN33AiasJ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG02rWN33AiasJ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Chivo" - }, - { - "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyv02rWN33AiasJ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Chivo" - } - ] - }, - { - "name": "Chivo Mono", - "fontFamily": "Chivo Mono, monospace", - "slug": "chivo-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hrqfVKphL03l4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hr6fVKphL03l4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D6_r6fVKphL03l4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr6fVKphL03l4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7Tr6fVKphL03l4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4_qKfVKphL03l4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4GqKfVKphL03l4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hqKfVKphL03l4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5IqKfVKphL03l4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-XIJxp1ml4imo.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-WIJxp1ml4imo.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7BGWIJxp1ml4imo.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-WIJxp1ml4imo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7H2WIJxp1ml4imo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7JGRIJxp1ml4imo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7KiRIJxp1ml4imo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-RIJxp1ml4imo.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - }, - { - "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7OaRIJxp1ml4imo.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Chivo Mono" - } - ] - }, - { - "name": "Chonburi", - "fontFamily": "Chonburi, system-ui", - "slug": "chonburi", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/chonburi/v10/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Chonburi" - } - ] - }, - { - "name": "Cinzel", - "fontFamily": "Cinzel, serif", - "slug": "cinzel", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnTYrvDE5ZdqU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cinzel" - }, - { - "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-uTnTYrvDE5ZdqU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cinzel" - }, - { - "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-gjgTYrvDE5ZdqU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cinzel" - }, - { - "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-jHgTYrvDE5ZdqU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cinzel" - }, - { - "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-lbgTYrvDE5ZdqU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Cinzel" - }, - { - "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-n_gTYrvDE5ZdqU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Cinzel" - } - ] - }, - { - "name": "Cinzel Decorative", - "fontFamily": "Cinzel Decorative, system-ui", - "slug": "cinzel-decorative", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cinzel Decorative" - }, - { - "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cinzel Decorative" - }, - { - "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Cinzel Decorative" - } - ] - }, - { - "name": "Clicker Script", - "fontFamily": "Clicker Script, cursive", - "slug": "clicker-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Clicker Script" - } - ] - }, - { - "name": "Climate Crisis", - "fontFamily": "Climate Crisis, system-ui", - "slug": "climate-crisis", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/climatecrisis/v4/wEOpEB3AntNeKCPBVW9XOKlmp3AUgWFN1DvIvcM0gFp6jaUrGb7PsQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Climate Crisis" - } - ] - }, - { - "name": "Coda", - "fontFamily": "Coda, system-ui", - "slug": "coda", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8JUIMapaN39I.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Coda" - }, - { - "src": "http://fonts.gstatic.com/s/coda/v21/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Coda" - } - ] - }, - { - "name": "Coda Caption", - "fontFamily": "Coda Caption, sans-serif", - "slug": "coda-caption", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/codacaption/v19/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Coda Caption" - } - ] - }, - { - "name": "Codystar", - "fontFamily": "Codystar, system-ui", - "slug": "codystar", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/codystar/v15/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Codystar" - }, - { - "src": "http://fonts.gstatic.com/s/codystar/v15/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Codystar" - } - ] - }, - { - "name": "Coiny", - "fontFamily": "Coiny, system-ui", - "slug": "coiny", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PXwbElSvO5Tc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Coiny" - } - ] - }, - { - "name": "Combo", - "fontFamily": "Combo, system-ui", - "slug": "combo", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Combo" - } - ] - }, - { - "name": "Comfortaa", - "fontFamily": "Comfortaa, system-ui", - "slug": "comfortaa", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Comfortaa" - }, - { - "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comfortaa" - }, - { - "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Comfortaa" - }, - { - "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Comfortaa" - }, - { - "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Comfortaa" - } - ] - }, - { - "name": "Comforter", - "fontFamily": "Comforter, cursive", - "slug": "comforter", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/comforter/v5/H4clBXOCl8nQnlaql3Qa6JG8iqeuag.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comforter" - } - ] - }, - { - "name": "Comforter Brush", - "fontFamily": "Comforter Brush, cursive", - "slug": "comforter-brush", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/comforterbrush/v5/Y4GTYa1xVSggrfzZI5WMjxRaOz0jwLL9Th8YYA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comforter Brush" - } - ] - }, - { - "name": "Comic Neue", - "fontFamily": "Comic Neue, cursive", - "slug": "comic-neue", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_wHLwpteLwtHJlc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Comic Neue" - }, - { - "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RTplUKylCNlcw_Q.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Comic Neue" - }, - { - "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comic Neue" - }, - { - "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaFrEJDsxBrF37olUeD96_p4rFwIwJePw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Comic Neue" - }, - { - "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_xHMwpteLwtHJlc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Comic Neue" - }, - { - "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RXp5UKylCNlcw_Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Comic Neue" - } - ] - }, - { - "name": "Coming Soon", - "fontFamily": "Coming Soon, cursive", - "slug": "coming-soon", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Coming Soon" - } - ] - }, - { - "name": "Comme", - "fontFamily": "Comme, sans-serif", - "slug": "comme", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cBr644fWsRO9w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcFr644fWsRO9w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zu8Fr644fWsRO9w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cFr644fWsRO9w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z18Fr644fWsRO9w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zO8Zr644fWsRO9w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zAsZr644fWsRO9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcZr644fWsRO9w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Comme" - }, - { - "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zTMZr644fWsRO9w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Comme" - } - ] - }, - { - "name": "Commissioner", - "fontFamily": "Commissioner, sans-serif", - "slug": "commissioner", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNcGPe7Fu0jUdk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENdGPe7Fu0jUdk.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTJ1dGPe7Fu0jUdk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNdGPe7Fu0jUdk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTPFdGPe7Fu0jUdk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTB1aGPe7Fu0jUdk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTCRaGPe7Fu0jUdk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENaGPe7Fu0jUdk.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Commissioner" - }, - { - "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTGpaGPe7Fu0jUdk.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Commissioner" - } - ] - }, - { - "name": "Concert One", - "fontFamily": "Concert One, system-ui", - "slug": "concert-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/concertone/v17/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Concert One" - } - ] - }, - { - "name": "Condiment", - "fontFamily": "Condiment, cursive", - "slug": "condiment", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/condiment/v20/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Condiment" - } - ] - }, - { - "name": "Content", - "fontFamily": "Content, system-ui", - "slug": "content", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/content/v24/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Content" - }, - { - "src": "http://fonts.gstatic.com/s/content/v24/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Content" - } - ] - }, - { - "name": "Contrail One", - "fontFamily": "Contrail One, system-ui", - "slug": "contrail-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/contrailone/v15/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Contrail One" - } - ] - }, - { - "name": "Convergence", - "fontFamily": "Convergence, sans-serif", - "slug": "convergence", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Convergence" - } - ] - }, - { - "name": "Cookie", - "fontFamily": "Cookie, cursive", - "slug": "cookie", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cookie/v17/syky-y18lb0tSbfNlQCT9tPdpw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cookie" - } - ] - }, - { - "name": "Copse", - "fontFamily": "Copse, serif", - "slug": "copse", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb0djHkihUb-A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Copse" - } - ] - }, - { - "name": "Corben", - "fontFamily": "Corben, system-ui", - "slug": "corben", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/corben/v19/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Corben" - }, - { - "src": "http://fonts.gstatic.com/s/corben/v19/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Corben" - } - ] - }, - { - "name": "Corinthia", - "fontFamily": "Corinthia, cursive", - "slug": "corinthia", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/corinthia/v9/wEO_EBrAnchaJyPMHE0FUfAL3EsHiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Corinthia" - }, - { - "src": "http://fonts.gstatic.com/s/corinthia/v9/wEO6EBrAnchaJyPMHE097d8v1GAbgbLXQA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Corinthia" - } - ] - }, - { - "name": "Cormorant", - "fontFamily": "Cormorant, serif", - "slug": "cormorant", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFk9TQ7Rg7A2uwYs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTQ7Rg7A2uwYs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFiNTQ7Rg7A2uwYs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFs9UQ7Rg7A2uwYs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFvZUQ7Rg7A2uwYs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQ9fdq6C-r0YvxdA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQq_dq6C-r0YvxdA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQmfdq6C-r0YvxdA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQdfBq6C-r0YvxdA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cormorant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQTPBq6C-r0YvxdA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cormorant" - } - ] - }, - { - "name": "Cormorant Garamond", - "fontFamily": "Cormorant Garamond, serif", - "slug": "cormorant-garamond", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cormorant Garamond" - } - ] - }, - { - "name": "Cormorant Infant", - "fontFamily": "Cormorant Infant, serif", - "slug": "cormorant-infant", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant Infant" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cormorant Infant" - } - ] - }, - { - "name": "Cormorant SC", - "fontFamily": "Cormorant SC, serif", - "slug": "cormorant-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant SC" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant SC" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant SC" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant SC" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant SC" - } - ] - }, - { - "name": "Cormorant Unicase", - "fontFamily": "Cormorant Unicase, serif", - "slug": "cormorant-unicase", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant Unicase" - } - ] - }, - { - "name": "Cormorant Upright", - "fontFamily": "Cormorant Upright, serif", - "slug": "cormorant-upright", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright" - }, - { - "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cormorant Upright" - } - ] - }, - { - "name": "Courgette", - "fontFamily": "Courgette, cursive", - "slug": "courgette", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/courgette/v13/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Courgette" - } - ] - }, - { - "name": "Courier Prime", - "fontFamily": "Courier Prime, monospace", - "slug": "courier-prime", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/courierprime/v7/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Courier Prime" - }, - { - "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4n0q2lgwslOqpF_6gQ8kELawRpX837pvjxPA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Courier Prime" - }, - { - "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-fVqvHoJXw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Courier Prime" - }, - { - "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4i0q2lgwslOqpF_6gQ8kELawRR4-LfrtPtNXyeAg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Courier Prime" - } - ] - }, - { - "name": "Cousine", - "fontFamily": "Cousine, monospace", - "slug": "cousine", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cousine/v25/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cousine" - }, - { - "src": "http://fonts.gstatic.com/s/cousine/v25/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cousine" - }, - { - "src": "http://fonts.gstatic.com/s/cousine/v25/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cousine" - }, - { - "src": "http://fonts.gstatic.com/s/cousine/v25/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cousine" - } - ] - }, - { - "name": "Coustard", - "fontFamily": "Coustard, serif", - "slug": "coustard", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Coustard" - }, - { - "src": "http://fonts.gstatic.com/s/coustard/v16/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Coustard" - } - ] - }, - { - "name": "Covered By Your Grace", - "fontFamily": "Covered By Your Grace, cursive", - "slug": "covered-by-your-grace", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/coveredbyyourgrace/v15/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Covered By Your Grace" - } - ] - }, - { - "name": "Crafty Girls", - "fontFamily": "Crafty Girls, cursive", - "slug": "crafty-girls", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crafty Girls" - } - ] - }, - { - "name": "Creepster", - "fontFamily": "Creepster, system-ui", - "slug": "creepster", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Creepster" - } - ] - }, - { - "name": "Crete Round", - "fontFamily": "Crete Round, serif", - "slug": "crete-round", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/creteround/v14/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crete Round" - }, - { - "src": "http://fonts.gstatic.com/s/creteround/v14/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Crete Round" - } - ] - }, - { - "name": "Crimson Pro", - "fontFamily": "Crimson Pro, serif", - "slug": "crimson-pro", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - }, - { - "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Crimson Pro" - } - ] - }, - { - "name": "Crimson Text", - "fontFamily": "Crimson Text, serif", - "slug": "crimson-text", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crimson Text" - }, - { - "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Crimson Text" - }, - { - "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Crimson Text" - }, - { - "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Crimson Text" - }, - { - "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Crimson Text" - }, - { - "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Crimson Text" - } - ] - }, - { - "name": "Croissant One", - "fontFamily": "Croissant One, system-ui", - "slug": "croissant-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/croissantone/v21/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Croissant One" - } - ] - }, - { - "name": "Crushed", - "fontFamily": "Crushed, system-ui", - "slug": "crushed", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/crushed/v25/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Crushed" - } - ] - }, - { - "name": "Cuprum", - "fontFamily": "Cuprum, sans-serif", - "slug": "cuprum", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6ZjzSJjQjgnU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cuprum" - }, - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg9f6ZjzSJjQjgnU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Cuprum" - }, - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgzv9ZjzSJjQjgnU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Cuprum" - }, - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgwL9ZjzSJjQjgnU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Cuprum" - }, - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25jn_YIhYmknUPEA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Cuprum" - }, - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25vH_YIhYmknUPEA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Cuprum" - }, - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25UHjYIhYmknUPEA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Cuprum" - }, - { - "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25aXjYIhYmknUPEA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Cuprum" - } - ] - }, - { - "name": "Cute Font", - "fontFamily": "Cute Font, system-ui", - "slug": "cute-font", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cutefont/v20/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cute Font" - } - ] - }, - { - "name": "Cutive", - "fontFamily": "Cutive, serif", - "slug": "cutive", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cutive/v17/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cutive" - } - ] - }, - { - "name": "Cutive Mono", - "fontFamily": "Cutive Mono, monospace", - "slug": "cutive-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/cutivemono/v15/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Cutive Mono" - } - ] - }, - { - "name": "DM Mono", - "fontFamily": "DM Mono, monospace", - "slug": "dm-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTR7PB1QTsUX8KYvrGyIYSnbKX9Rlk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "DM Mono" - }, - { - "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTT7PB1QTsUX8KYth-orYataIf4VllXuA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "DM Mono" - }, - { - "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DM Mono" - }, - { - "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTW7PB1QTsUX8KYth-QAa6JYKzkXw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "DM Mono" - }, - { - "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTR7PB1QTsUX8KYvumzIYSnbKX9Rlk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "DM Mono" - }, - { - "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTT7PB1QTsUX8KYth-o9YetaIf4VllXuA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "DM Mono" - } - ] - }, - { - "name": "DM Sans", - "fontFamily": "DM Sans, sans-serif", - "slug": "dm-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DM Sans" - }, - { - "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Fp2ywxg089UriCZaIGDWCBl0O8Q.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "DM Sans" - }, - { - "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "DM Sans" - }, - { - "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZaw7BymDnYS-Cjk6Q.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "DM Sans" - }, - { - "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriASitOB-sClQX6Cg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "DM Sans" - }, - { - "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZawpBqmDnYS-Cjk6Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "DM Sans" - } - ] - }, - { - "name": "DM Serif Display", - "fontFamily": "DM Serif Display, serif", - "slug": "dm-serif-display", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DM Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "DM Serif Display" - } - ] - }, - { - "name": "DM Serif Text", - "fontFamily": "DM Serif Text, serif", - "slug": "dm-serif-text", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DM Serif Text" - }, - { - "src": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "DM Serif Text" - } - ] - }, - { - "name": "Damion", - "fontFamily": "Damion, cursive", - "slug": "damion", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/damion/v14/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Damion" - } - ] - }, - { - "name": "Dancing Script", - "fontFamily": "Dancing Script, cursive", - "slug": "dancing-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTeB9ptDqpw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dancing Script" - }, - { - "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTeB9ptDqpw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Dancing Script" - }, - { - "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTeB9ptDqpw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Dancing Script" - }, - { - "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTeB9ptDqpw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Dancing Script" - } - ] - }, - { - "name": "Dangrek", - "fontFamily": "Dangrek, system-ui", - "slug": "dangrek", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dangrek/v26/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dangrek" - } - ] - }, - { - "name": "Darker Grotesque", - "fontFamily": "Darker Grotesque, sans-serif", - "slug": "darker-grotesque", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVoxr2AW8hTOsXsX0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque" - }, - { - "src": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MH6cuh-mLQlC4BKCtayOfARkSVm7beJWcKUOI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque" - }, - { - "src": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVo0L3AW8hTOsXsX0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque" - }, - { - "src": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVo27wAW8hTOsXsX0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque" - }, - { - "src": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVowrxAW8hTOsXsX0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque" - }, - { - "src": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVoxbyAW8hTOsXsX0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque" - }, - { - "src": "http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVozLzAW8hTOsXsX0.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Darker Grotesque" - } - ] - }, - { - "name": "Darumadrop One", - "fontFamily": "Darumadrop One, system-ui", - "slug": "darumadrop-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/darumadropone/v7/cY9cfjeIW11dpCKgRLi675a87IhHBJOxZQPp.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Darumadrop One" - } - ] - }, - { - "name": "David Libre", - "fontFamily": "David Libre, serif", - "slug": "david-libre", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "David Libre" - }, - { - "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "David Libre" - }, - { - "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "David Libre" - } - ] - }, - { - "name": "Dawning of a New Day", - "fontFamily": "Dawning of a New Day, cursive", - "slug": "dawning-of-a-new-day", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dawningofanewday/v16/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dawning of a New Day" - } - ] - }, - { - "name": "Days One", - "fontFamily": "Days One, sans-serif", - "slug": "days-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/daysone/v14/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Days One" - } - ] - }, - { - "name": "Dekko", - "fontFamily": "Dekko, cursive", - "slug": "dekko", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dekko/v19/46khlb_wWjfSrttFR0vsfl1B.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dekko" - } - ] - }, - { - "name": "Dela Gothic One", - "fontFamily": "Dela Gothic One, system-ui", - "slug": "dela-gothic-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/delagothicone/v10/~ChEKD0RlbGEgR290aGljIE9uZSAAKgQIARgB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dela Gothic One" - } - ] - }, - { - "name": "Delicious Handrawn", - "fontFamily": "Delicious Handrawn, cursive", - "slug": "delicious-handrawn", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/delicioushandrawn/v4/wlpsgx_NAUNkpmKQifcxkQchDFo3fJ113JpDd6u3AQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Delicious Handrawn" - } - ] - }, - { - "name": "Delius", - "fontFamily": "Delius, cursive", - "slug": "delius", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/delius/v15/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Delius" - } - ] - }, - { - "name": "Delius Swash Caps", - "fontFamily": "Delius Swash Caps, cursive", - "slug": "delius-swash-caps", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/deliusswashcaps/v19/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Delius Swash Caps" - } - ] - }, - { - "name": "Delius Unicase", - "fontFamily": "Delius Unicase, cursive", - "slug": "delius-unicase", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/deliusunicase/v26/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Delius Unicase" - }, - { - "src": "http://fonts.gstatic.com/s/deliusunicase/v26/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Delius Unicase" - } - ] - }, - { - "name": "Della Respira", - "fontFamily": "Della Respira, serif", - "slug": "della-respira", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dellarespira/v18/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Della Respira" - } - ] - }, - { - "name": "Denk One", - "fontFamily": "Denk One, sans-serif", - "slug": "denk-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/denkone/v17/dg4m_pzhrqcFb2IzROtHpbglShon.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Denk One" - } - ] - }, - { - "name": "Devonshire", - "fontFamily": "Devonshire, cursive", - "slug": "devonshire", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/devonshire/v22/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Devonshire" - } - ] - }, - { - "name": "Dhurjati", - "fontFamily": "Dhurjati, sans-serif", - "slug": "dhurjati", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dhurjati/v20/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dhurjati" - } - ] - }, - { - "name": "Didact Gothic", - "fontFamily": "Didact Gothic, sans-serif", - "slug": "didact-gothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/didactgothic/v20/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Didact Gothic" - } - ] - }, - { - "name": "Diplomata", - "fontFamily": "Diplomata, system-ui", - "slug": "diplomata", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/diplomata/v27/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Diplomata" - } - ] - }, - { - "name": "Diplomata SC", - "fontFamily": "Diplomata SC, system-ui", - "slug": "diplomata-sc", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/diplomatasc/v23/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Diplomata SC" - } - ] - }, - { - "name": "Do Hyeon", - "fontFamily": "Do Hyeon, sans-serif", - "slug": "do-hyeon", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dohyeon/v16/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Do Hyeon" - } - ] - }, - { - "name": "Dokdo", - "fontFamily": "Dokdo, cursive", - "slug": "dokdo", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dokdo/v15/esDf315XNuCBLxLo4NaMlKcH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dokdo" - } - ] - }, - { - "name": "Domine", - "fontFamily": "Domine, serif", - "slug": "domine", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Domine" - }, - { - "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X0DAI10VErGuW8Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Domine" - }, - { - "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X6zHI10VErGuW8Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Domine" - }, - { - "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X5XHI10VErGuW8Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Domine" - } - ] - }, - { - "name": "Donegal One", - "fontFamily": "Donegal One, serif", - "slug": "donegal-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/donegalone/v21/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Donegal One" - } - ] - }, - { - "name": "Dongle", - "fontFamily": "Dongle, sans-serif", - "slug": "dongle", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dongle/v9/sJoG3Ltdjt6VPkqeEcxrYjWNzXvVPA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Dongle" - }, - { - "src": "http://fonts.gstatic.com/s/dongle/v9/sJoF3Ltdjt6VPkqmveRPah6RxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dongle" - }, - { - "src": "http://fonts.gstatic.com/s/dongle/v9/sJoG3Ltdjt6VPkqeActrYjWNzXvVPA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Dongle" - } - ] - }, - { - "name": "Doppio One", - "fontFamily": "Doppio One, sans-serif", - "slug": "doppio-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Doppio One" - } - ] - }, - { - "name": "Dorsa", - "fontFamily": "Dorsa, sans-serif", - "slug": "dorsa", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dorsa/v23/yYLn0hjd0OGwqo493XCFxAnQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dorsa" - } - ] - }, - { - "name": "Dosis", - "fontFamily": "Dosis, sans-serif", - "slug": "dosis", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Dosis" - }, - { - "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Dosis" - }, - { - "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dosis" - }, - { - "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Dosis" - }, - { - "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Dosis" - }, - { - "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Dosis" - }, - { - "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Dosis" - } - ] - }, - { - "name": "DotGothic16", - "fontFamily": "DotGothic16, sans-serif", - "slug": "dotgothic16", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dotgothic16/v15/v6-QGYjBJFKgyw5nSoDAGE7L435YPFrT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DotGothic16" - } - ] - }, - { - "name": "Dr Sugiyama", - "fontFamily": "Dr Sugiyama, cursive", - "slug": "dr-sugiyama", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/drsugiyama/v23/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dr Sugiyama" - } - ] - }, - { - "name": "Duru Sans", - "fontFamily": "Duru Sans, sans-serif", - "slug": "duru-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/durusans/v20/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Duru Sans" - } - ] - }, - { - "name": "DynaPuff", - "fontFamily": "DynaPuff, system-ui", - "slug": "dynapuff", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSxYu6YjrSRs4wn8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "DynaPuff" - }, - { - "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSyQu6YjrSRs4wn8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "DynaPuff" - }, - { - "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS8gp6YjrSRs4wn8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "DynaPuff" - }, - { - "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS_Ep6YjrSRs4wn8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "DynaPuff" - } - ] - }, - { - "name": "Dynalight", - "fontFamily": "Dynalight, system-ui", - "slug": "dynalight", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/dynalight/v18/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Dynalight" - } - ] - }, - { - "name": "EB Garamond", - "fontFamily": "EB Garamond, serif", - "slug": "eb-garamond", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUA4V-e6yHgQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUA4V-e6yHgQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUA4V-e6yHgQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUA4V-e6yHgQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUA4V-e6yHgQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI96WamXgXFI.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI96WamXgXFI.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR496WamXgXFI.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR496WamXgXFI.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "EB Garamond" - }, - { - "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R496WamXgXFI.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "EB Garamond" - } - ] - }, - { - "name": "Eagle Lake", - "fontFamily": "Eagle Lake, cursive", - "slug": "eagle-lake", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/eaglelake/v20/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Eagle Lake" - } - ] - }, - { - "name": "East Sea Dokdo", - "fontFamily": "East Sea Dokdo, cursive", - "slug": "east-sea-dokdo", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/eastseadokdo/v20/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "East Sea Dokdo" - } - ] - }, - { - "name": "Eater", - "fontFamily": "Eater, system-ui", - "slug": "eater", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/eater/v21/mtG04_FCK7bOvpu2u3FwsXsR.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Eater" - } - ] - }, - { - "name": "Economica", - "fontFamily": "Economica, sans-serif", - "slug": "economica", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/economica/v13/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Economica" - }, - { - "src": "http://fonts.gstatic.com/s/economica/v13/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Economica" - }, - { - "src": "http://fonts.gstatic.com/s/economica/v13/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Economica" - }, - { - "src": "http://fonts.gstatic.com/s/economica/v13/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Economica" - } - ] - }, - { - "name": "Eczar", - "fontFamily": "Eczar, serif", - "slug": "eczar", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXHd6WqTIVKWJKWg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Eczar" - }, - { - "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXL96WqTIVKWJKWg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Eczar" - }, - { - "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXw9mWqTIVKWJKWg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Eczar" - }, - { - "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDX-tmWqTIVKWJKWg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Eczar" - }, - { - "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXndmWqTIVKWJKWg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Eczar" - } - ] - }, - { - "name": "Edu NSW ACT Foundation", - "fontFamily": "Edu NSW ACT Foundation, cursive", - "slug": "edu-nsw-act-foundation", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9tovGLeC-sfguJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu NSW ACT Foundation" - }, - { - "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9fovGLeC-sfguJ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu NSW ACT Foundation" - }, - { - "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-zpfGLeC-sfguJ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu NSW ACT Foundation" - }, - { - "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-KpfGLeC-sfguJ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu NSW ACT Foundation" - } - ] - }, - { - "name": "Edu QLD Beginner", - "fontFamily": "Edu QLD Beginner, cursive", - "slug": "edu-qld-beginner", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE4E3oebi6vyVWCN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu QLD Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE423oebi6vyVWCN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu QLD Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7a2Yebi6vyVWCN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu QLD Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7j2Yebi6vyVWCN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu QLD Beginner" - } - ] - }, - { - "name": "Edu SA Beginner", - "fontFamily": "Edu SA Beginner, cursive", - "slug": "edu-sa-beginner", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9989fo1yBydUEDs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu SA Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9-09fo1yBydUEDs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu SA Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9wE6fo1yBydUEDs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu SA Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9zg6fo1yBydUEDs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu SA Beginner" - } - ] - }, - { - "name": "Edu TAS Beginner", - "fontFamily": "Edu TAS Beginner, cursive", - "slug": "edu-tas-beginner", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HwemkrBWRhvk02.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu TAS Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HCemkrBWRhvk02.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu TAS Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EufWkrBWRhvk02.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu TAS Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EXfWkrBWRhvk02.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu TAS Beginner" - } - ] - }, - { - "name": "Edu VIC WA NT Beginner", - "fontFamily": "Edu VIC WA NT Beginner, cursive", - "slug": "edu-vic-wa-nt-beginner", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OXlPmFXwnpkeGR.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Edu VIC WA NT Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OllPmFXwnpkeGR.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Edu VIC WA NT Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-NJk_mFXwnpkeGR.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Edu VIC WA NT Beginner" - }, - { - "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-Nwk_mFXwnpkeGR.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Edu VIC WA NT Beginner" - } - ] - }, - { - "name": "El Messiri", - "fontFamily": "El Messiri, sans-serif", - "slug": "el-messiri", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe65ghj3OoapG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "El Messiri" - }, - { - "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXCe65ghj3OoapG.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "El Messiri" - }, - { - "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUufK5ghj3OoapG.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "El Messiri" - }, - { - "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUXfK5ghj3OoapG.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "El Messiri" - } - ] - }, - { - "name": "Electrolize", - "fontFamily": "Electrolize, sans-serif", - "slug": "electrolize", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/electrolize/v14/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Electrolize" - } - ] - }, - { - "name": "Elsie", - "fontFamily": "Elsie, system-ui", - "slug": "elsie", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/elsie/v13/BCanqZABrez54yYu9slAeLgX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Elsie" - }, - { - "src": "http://fonts.gstatic.com/s/elsie/v13/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Elsie" - } - ] - }, - { - "name": "Elsie Swash Caps", - "fontFamily": "Elsie Swash Caps, system-ui", - "slug": "elsie-swash-caps", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Elsie Swash Caps" - }, - { - "src": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Elsie Swash Caps" - } - ] - }, - { - "name": "Emblema One", - "fontFamily": "Emblema One, system-ui", - "slug": "emblema-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Emblema One" - } - ] - }, - { - "name": "Emilys Candy", - "fontFamily": "Emilys Candy, system-ui", - "slug": "emilys-candy", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/emilyscandy/v14/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Emilys Candy" - } - ] - }, - { - "name": "Encode Sans", - "fontFamily": "Encode Sans, sans-serif", - "slug": "encode-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHiZtWP7FJCt2c.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHjZtWP7FJCt2c.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGD_jZtWP7FJCt2c.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjZtWP7FJCt2c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGFPjZtWP7FJCt2c.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGL_kZtWP7FJCt2c.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGIbkZtWP7FJCt2c.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHkZtWP7FJCt2c.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - }, - { - "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGMjkZtWP7FJCt2c.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans" - } - ] - }, - { - "name": "Encode Sans Condensed", - "fontFamily": "Encode Sans Condensed, sans-serif", - "slug": "encode-sans-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans Condensed" - } - ] - }, - { - "name": "Encode Sans Expanded", - "fontFamily": "Encode Sans Expanded, sans-serif", - "slug": "encode-sans-expanded", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans Expanded" - } - ] - }, - { - "name": "Encode Sans SC", - "fontFamily": "Encode Sans SC, sans-serif", - "slug": "encode-sans-sc", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhn8c9NOEEClIc.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhm8c9NOEEClIc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HCZm8c9NOEEClIc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhm8c9NOEEClIc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HEpm8c9NOEEClIc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HKZh8c9NOEEClIc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HJ9h8c9NOEEClIc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhh8c9NOEEClIc.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HNFh8c9NOEEClIc.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans SC" - } - ] - }, - { - "name": "Encode Sans Semi Condensed", - "fontFamily": "Encode Sans Semi Condensed, sans-serif", - "slug": "encode-sans-semi-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Condensed" - } - ] - }, - { - "name": "Encode Sans Semi Expanded", - "fontFamily": "Encode Sans Semi Expanded, sans-serif", - "slug": "encode-sans-semi-expanded", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - }, - { - "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Encode Sans Semi Expanded" - } - ] - }, - { - "name": "Engagement", - "fontFamily": "Engagement, cursive", - "slug": "engagement", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/engagement/v22/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Engagement" - } - ] - }, - { - "name": "Englebert", - "fontFamily": "Englebert, sans-serif", - "slug": "englebert", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/englebert/v17/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Englebert" - } - ] - }, - { - "name": "Enriqueta", - "fontFamily": "Enriqueta, serif", - "slug": "enriqueta", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/enriqueta/v15/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Enriqueta" - }, - { - "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Enriqueta" - }, - { - "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Enriqueta" - }, - { - "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Enriqueta" - } - ] - }, - { - "name": "Ephesis", - "fontFamily": "Ephesis, cursive", - "slug": "ephesis", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ephesis/v7/uU9PCBUS8IerL2VG7xPb3vyHmlI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ephesis" - } - ] - }, - { - "name": "Epilogue", - "fontFamily": "Epilogue, sans-serif", - "slug": "epilogue", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDLiDJXVigHPVA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDPiDJXVigHPVA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXbjPiDJXVigHPVA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiDJXVigHPVA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXAjPiDJXVigHPVA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX7jTiDJXVigHPVA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiDJXVigHPVA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiDJXVigHPVA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXmTTiDJXVigHPVA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKTp_RqATfVHNU.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKT5_RqATfVHNU.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HBUT5_RqATfVHNU.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKT5_RqATfVHNU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HA4T5_RqATfVHNU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDUSJ_RqATfVHNU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDtSJ_RqATfVHNU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKSJ_RqATfVHNU.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Epilogue" - }, - { - "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCjSJ_RqATfVHNU.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Epilogue" - } - ] - }, - { - "name": "Erica One", - "fontFamily": "Erica One, system-ui", - "slug": "erica-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ericaone/v23/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Erica One" - } - ] - }, - { - "name": "Esteban", - "fontFamily": "Esteban, serif", - "slug": "esteban", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/esteban/v15/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Esteban" - } - ] - }, - { - "name": "Estonia", - "fontFamily": "Estonia, cursive", - "slug": "estonia", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/estonia/v9/7Au_p_4ijSecA1yHCCL8zkwMIFg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Estonia" - } - ] - }, - { - "name": "Euphoria Script", - "fontFamily": "Euphoria Script, cursive", - "slug": "euphoria-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/euphoriascript/v16/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Euphoria Script" - } - ] - }, - { - "name": "Ewert", - "fontFamily": "Ewert, system-ui", - "slug": "ewert", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ewert/v21/va9I4kzO2tFODYBvS-J3kbDP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ewert" - } - ] - }, - { - "name": "Exo", - "fontFamily": "Exo, sans-serif", - "slug": "exo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwNsOl4p5Is.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwNsOl4p5Is.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwNsOl4p5Is.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwNsOl4p5Is.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwNsOl4p5Is.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwNsOl4p5Is.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwNsOl4p5Is.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwNsOl4p5Is.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwNsOl4p5Is.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040FmPnws9Iu-uA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmPnws9Iu-uA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmPnws9Iu-uA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040BmPnws9Iu-uA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t00UBmPnws9Iu-uA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmPnws9Iu-uA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmPnws9Iu-uA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmPnws9Iu-uA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Exo" - }, - { - "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmPnws9Iu-uA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Exo" - } - ] - }, - { - "name": "Exo 2", - "fontFamily": "Exo 2, sans-serif", - "slug": "exo-2", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPtq-rpvLpQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPtq-rpvLpQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPtq-rpvLpQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPtq-rpvLpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPtq-rpvLpQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPtq-rpvLpQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPtq-rpvLpQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPtq-rpvLpQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPtq-rpvLpQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6jJ7bpQBL.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6jJ7bpQBL.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6jJ7bpQBL.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6jJ7bpQBL.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6jJ7bpQBL.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6jJ7bpQBL.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6jJ7bpQBL.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6jJ7bpQBL.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Exo 2" - }, - { - "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6jJ7bpQBL.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Exo 2" - } - ] - }, - { - "name": "Expletus Sans", - "fontFamily": "Expletus Sans, system-ui", - "slug": "expletus-sans", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2s1oFQTcXfMm.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Expletus Sans" - }, - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSq2s1oFQTcXfMm.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Expletus Sans" - }, - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaRG3c1oFQTcXfMm.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Expletus Sans" - }, - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaR_3c1oFQTcXfMm.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Expletus Sans" - }, - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmSUrHwD-WOMmKKY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Expletus Sans" - }, - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmRcrHwD-WOMmKKY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Expletus Sans" - }, - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmfssHwD-WOMmKKY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Expletus Sans" - }, - { - "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmcIsHwD-WOMmKKY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Expletus Sans" - } - ] - }, - { - "name": "Explora", - "fontFamily": "Explora, cursive", - "slug": "explora", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/explora/v7/tsstApxFfjUH4wrvc1qPonC3vqc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Explora" - } - ] - }, - { - "name": "Fahkwang", - "fontFamily": "Fahkwang, sans-serif", - "slug": "fahkwang", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fahkwang" - }, - { - "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fahkwang" - } - ] - }, - { - "name": "Familjen Grotesk", - "fontFamily": "Familjen Grotesk, sans-serif", - "slug": "familjen-grotesk", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMGJaSztc1jcEYq2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Familjen Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMG7aSztc1jcEYq2.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Familjen Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFXbiztc1jcEYq2.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Familjen Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFubiztc1jcEYq2.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Familjen Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKsSueVz-FJq2Rv4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Familjen Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKvaueVz-FJq2Rv4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Familjen Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKhqpeVz-FJq2Rv4.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Familjen Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKiOpeVz-FJq2Rv4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Familjen Grotesk" - } - ] - }, - { - "name": "Fanwood Text", - "fontFamily": "Fanwood Text, serif", - "slug": "fanwood-text", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fanwood Text" - }, - { - "src": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fanwood Text" - } - ] - }, - { - "name": "Farro", - "fontFamily": "Farro, sans-serif", - "slug": "farro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Farro" - }, - { - "src": "http://fonts.gstatic.com/s/farro/v14/i7dEIFl3byGNHZVNHLq2cV5d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Farro" - }, - { - "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Farro" - }, - { - "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Farro" - } - ] - }, - { - "name": "Farsan", - "fontFamily": "Farsan, system-ui", - "slug": "farsan", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/farsan/v19/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Farsan" - } - ] - }, - { - "name": "Fascinate", - "fontFamily": "Fascinate, system-ui", - "slug": "fascinate", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fascinate/v21/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fascinate" - } - ] - }, - { - "name": "Fascinate Inline", - "fontFamily": "Fascinate Inline, system-ui", - "slug": "fascinate-inline", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fascinateinline/v22/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fascinate Inline" - } - ] - }, - { - "name": "Faster One", - "fontFamily": "Faster One, system-ui", - "slug": "faster-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fasterone/v19/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Faster One" - } - ] - }, - { - "name": "Fasthand", - "fontFamily": "Fasthand, system-ui", - "slug": "fasthand", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fasthand/v26/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fasthand" - } - ] - }, - { - "name": "Fauna One", - "fontFamily": "Fauna One, serif", - "slug": "fauna-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/faunaone/v15/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fauna One" - } - ] - }, - { - "name": "Faustina", - "fontFamily": "Faustina, serif", - "slug": "faustina", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHls3IEvGVWWe8tbEg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvGVWWe8tbEg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvGVWWe8tbEg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvGVWWe8tbEg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvGVWWe8tbEg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsAoYvGVWWe8tbEg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsKZWl-SWc5LEnoF.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-SWc5LEnoF.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-SWc5LEnoF.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-SWc5LEnoF.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-SWc5LEnoF.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Faustina" - }, - { - "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsJHXV-SWc5LEnoF.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Faustina" - } - ] - }, - { - "name": "Federant", - "fontFamily": "Federant, system-ui", - "slug": "federant", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/federant/v25/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Federant" - } - ] - }, - { - "name": "Federo", - "fontFamily": "Federo, sans-serif", - "slug": "federo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Federo" - } - ] - }, - { - "name": "Felipa", - "fontFamily": "Felipa, cursive", - "slug": "felipa", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/felipa/v20/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Felipa" - } - ] - }, - { - "name": "Fenix", - "fontFamily": "Fenix, serif", - "slug": "fenix", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5ostKzAFvs8o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fenix" - } - ] - }, - { - "name": "Festive", - "fontFamily": "Festive, cursive", - "slug": "festive", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/festive/v7/cY9Ffj6KX1xcoDWhFtfgy9HTkak.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Festive" - } - ] - }, - { - "name": "Figtree", - "fontFamily": "Figtree, sans-serif", - "slug": "figtree", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5ewkEU4HTy.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5ewkEU4HTy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5ewkEU4HTy.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15ewkEU4HTy.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15ewkEU4HTy.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_f_R15ewkEU4HTy.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15ewkEU4HTy.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A-gdyEU25WTybO8.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A7YdyEU25WTybO8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A4QdyEU25WTybO8.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A2gayEU25WTybO8.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A1EayEU25WTybO8.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3AzYayEU25WTybO8.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Figtree" - }, - { - "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3Ax8ayEU25WTybO8.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Figtree" - } - ] - }, - { - "name": "Finger Paint", - "fontFamily": "Finger Paint, system-ui", - "slug": "finger-paint", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fingerpaint/v15/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Finger Paint" - } - ] - }, - { - "name": "Finlandica", - "fontFamily": "Finlandica, sans-serif", - "slug": "finlandica", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19A7rEjx9i5ss3a3.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Finlandica" - }, - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19AJrEjx9i5ss3a3.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Finlandica" - }, - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dlq0jx9i5ss3a3.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Finlandica" - }, - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dcq0jx9i5ss3a3.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Finlandica" - }, - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz76Cy_CpOtma3uNQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Finlandica" - }, - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz75Ky_CpOtma3uNQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Finlandica" - }, - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz7361_CpOtma3uNQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Finlandica" - }, - { - "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz70e1_CpOtma3uNQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Finlandica" - } - ] - }, - { - "name": "Fira Code", - "fontFamily": "Fira Code, monospace", - "slug": "fira-code", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fira Code" - }, - { - "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Code" - }, - { - "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Code" - }, - { - "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fira Code" - }, - { - "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Code" - } - ] - }, - { - "name": "Fira Mono", - "fontFamily": "Fira Mono, monospace", - "slug": "fira-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Mono" - }, - { - "src": "http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Mono" - }, - { - "src": "http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Mono" - } - ] - }, - { - "name": "Fira Sans", - "fontFamily": "Fira Sans, sans-serif", - "slug": "fira-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Fira Sans" - }, - { - "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Fira Sans" - } - ] - }, - { - "name": "Fira Sans Condensed", - "fontFamily": "Fira Sans Condensed, sans-serif", - "slug": "fira-sans-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Fira Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Fira Sans Condensed" - } - ] - }, - { - "name": "Fira Sans Extra Condensed", - "fontFamily": "Fira Sans Extra Condensed, sans-serif", - "slug": "fira-sans-extra-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Fira Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Fira Sans Extra Condensed" - } - ] - }, - { - "name": "Fjalla One", - "fontFamily": "Fjalla One, sans-serif", - "slug": "fjalla-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fjalla One" - } - ] - }, - { - "name": "Fjord One", - "fontFamily": "Fjord One, serif", - "slug": "fjord-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fjord One" - } - ] - }, - { - "name": "Flamenco", - "fontFamily": "Flamenco, system-ui", - "slug": "flamenco", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/flamenco/v18/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Flamenco" - }, - { - "src": "http://fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssaWGHK06UY30.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flamenco" - } - ] - }, - { - "name": "Flavors", - "fontFamily": "Flavors, system-ui", - "slug": "flavors", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/flavors/v22/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flavors" - } - ] - }, - { - "name": "Fleur De Leah", - "fontFamily": "Fleur De Leah, cursive", - "slug": "fleur-de-leah", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fleurdeleah/v7/AYCNpXX7ftYZWLhv9UmPJTMC5vat4I_Gdq0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fleur De Leah" - } - ] - }, - { - "name": "Flow Block", - "fontFamily": "Flow Block, system-ui", - "slug": "flow-block", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/flowblock/v7/wlp0gwfPCEB65UmTk-d6-WZlbCBXE_I.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flow Block" - } - ] - }, - { - "name": "Flow Circular", - "fontFamily": "Flow Circular, system-ui", - "slug": "flow-circular", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/flowcircular/v7/lJwB-pc4j2F-H8YKuyvfxdZ45ifpWdr2rIg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flow Circular" - } - ] - }, - { - "name": "Flow Rounded", - "fontFamily": "Flow Rounded, system-ui", - "slug": "flow-rounded", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/flowrounded/v7/-zki91mtwsU9qlLiGwD4oQX3oZX-Xup87g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Flow Rounded" - } - ] - }, - { - "name": "Foldit", - "fontFamily": "Foldit, system-ui", - "slug": "foldit", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpANmapUYLHkN80.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhAMmapUYLHkN80.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xs4MmapUYLHkN80.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpAMmapUYLHkN80.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XqIMmapUYLHkN80.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xk4LmapUYLHkN80.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XncLmapUYLHkN80.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhALmapUYLHkN80.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Foldit" - }, - { - "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XjkLmapUYLHkN80.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Foldit" - } - ] - }, - { - "name": "Fondamento", - "fontFamily": "Fondamento, cursive", - "slug": "fondamento", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fondamento/v17/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fondamento" - }, - { - "src": "http://fonts.gstatic.com/s/fondamento/v17/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fondamento" - } - ] - }, - { - "name": "Fontdiner Swanky", - "fontFamily": "Fontdiner Swanky, system-ui", - "slug": "fontdiner-swanky", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fontdinerswanky/v19/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fontdiner Swanky" - } - ] - }, - { - "name": "Forum", - "fontFamily": "Forum, system-ui", - "slug": "forum", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/forum/v16/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Forum" - } - ] - }, - { - "name": "Fragment Mono", - "fontFamily": "Fragment Mono, monospace", - "slug": "fragment-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fragmentmono/v1/4iCr6K5wfMRRjxp0DA6-2CLnN4RNh4UI_1U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fragment Mono" - }, - { - "src": "http://fonts.gstatic.com/s/fragmentmono/v1/4iC16K5wfMRRjxp0DA6-2CLnB4ZHg6cN71URtQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fragment Mono" - } - ] - }, - { - "name": "Francois One", - "fontFamily": "Francois One, sans-serif", - "slug": "francois-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/francoisone/v21/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Francois One" - } - ] - }, - { - "name": "Frank Ruhl Libre", - "fontFamily": "Frank Ruhl Libre, serif", - "slug": "frank-ruhl-libre", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw6bYVqQPxR2EUR_.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre" - }, - { - "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYVqQPxR2EUR_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre" - }, - { - "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw73YVqQPxR2EUR_.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre" - }, - { - "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4bZlqQPxR2EUR_.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre" - }, - { - "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4iZlqQPxR2EUR_.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre" - }, - { - "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5FZlqQPxR2EUR_.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre" - }, - { - "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5sZlqQPxR2EUR_.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Frank Ruhl Libre" - } - ] - }, - { - "name": "Fraunces", - "fontFamily": "Fraunces, serif", - "slug": "fraunces", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxqjDvTShUtWNg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxujDvTShUtWNg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIc6RujDvTShUtWNg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxujDvTShUtWNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIchRujDvTShUtWNg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcaRyjDvTShUtWNg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcUByjDvTShUtWNg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxyjDvTShUtWNg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcHhyjDvTShUtWNg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTP7Wp05GNi3k.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLTf7Wp05GNi3k.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1gVTf7Wp05GNi3k.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTf7Wp05GNi3k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1h5Tf7Wp05GNi3k.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1iVSv7Wp05GNi3k.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1isSv7Wp05GNi3k.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLSv7Wp05GNi3k.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Fraunces" - }, - { - "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jiSv7Wp05GNi3k.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Fraunces" - } - ] - }, - { - "name": "Freckle Face", - "fontFamily": "Freckle Face, system-ui", - "slug": "freckle-face", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/freckleface/v15/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Freckle Face" - } - ] - }, - { - "name": "Fredericka the Great", - "fontFamily": "Fredericka the Great, system-ui", - "slug": "fredericka-the-great", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/frederickathegreat/v16/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fredericka the Great" - } - ] - }, - { - "name": "Fredoka", - "fontFamily": "Fredoka, sans-serif", - "slug": "fredoka", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OryLMFuOLlNldbw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Fredoka" - }, - { - "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3O8SLMFuOLlNldbw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fredoka" - }, - { - "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OwyLMFuOLlNldbw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Fredoka" - }, - { - "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OLyXMFuOLlNldbw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Fredoka" - }, - { - "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiXMFuOLlNldbw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fredoka" - } - ] - }, - { - "name": "Freehand", - "fontFamily": "Freehand, system-ui", - "slug": "freehand", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/freehand/v27/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Freehand" - } - ] - }, - { - "name": "Fresca", - "fontFamily": "Fresca, sans-serif", - "slug": "fresca", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fresca/v18/6ae94K--SKgCzbM2Gr0W13DKPA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fresca" - } - ] - }, - { - "name": "Frijole", - "fontFamily": "Frijole, system-ui", - "slug": "frijole", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Frijole" - } - ] - }, - { - "name": "Fruktur", - "fontFamily": "Fruktur, system-ui", - "slug": "fruktur", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fruktur/v27/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fruktur" - }, - { - "src": "http://fonts.gstatic.com/s/fruktur/v27/SZc73FHsOru5QYsMTz_MlWjX4DJXgQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Fruktur" - } - ] - }, - { - "name": "Fugaz One", - "fontFamily": "Fugaz One, system-ui", - "slug": "fugaz-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fugazone/v15/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fugaz One" - } - ] - }, - { - "name": "Fuggles", - "fontFamily": "Fuggles, cursive", - "slug": "fuggles", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fuggles/v9/k3kQo8UEJOlD1hpOTd7iL0nAMaM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fuggles" - } - ] - }, - { - "name": "Fuzzy Bubbles", - "fontFamily": "Fuzzy Bubbles, cursive", - "slug": "fuzzy-bubbles", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLGKZMbrgv9pwtjPEVNV0F2NnP5Zxsreko.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Fuzzy Bubbles" - }, - { - "src": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLbKZMbrgv9pwtjPEVNV0F2Ds_WQxMAZkM1pn4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Fuzzy Bubbles" - } - ] - }, - { - "name": "GFS Didot", - "fontFamily": "GFS Didot, serif", - "slug": "gfs-didot", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gfsdidot/v15/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "GFS Didot" - } - ] - }, - { - "name": "GFS Neohellenic", - "fontFamily": "GFS Neohellenic, sans-serif", - "slug": "gfs-neohellenic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "GFS Neohellenic" - }, - { - "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "GFS Neohellenic" - }, - { - "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "GFS Neohellenic" - }, - { - "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "GFS Neohellenic" - } - ] - }, - { - "name": "Gabriela", - "fontFamily": "Gabriela, serif", - "slug": "gabriela", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gabriela/v17/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gabriela" - } - ] - }, - { - "name": "Gaegu", - "fontFamily": "Gaegu, cursive", - "slug": "gaegu", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gaegu" - }, - { - "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGfUVB6Up9NU6ZLodgzydtk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gaegu" - }, - { - "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gaegu" - } - ] - }, - { - "name": "Gafata", - "fontFamily": "Gafata, sans-serif", - "slug": "gafata", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gafata/v16/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gafata" - } - ] - }, - { - "name": "Gajraj One", - "fontFamily": "Gajraj One, system-ui", - "slug": "gajraj-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gajrajone/v3/1cX2aUDCDpXsuWVb1jIjr1GqhcitzeM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gajraj One" - } - ] - }, - { - "name": "Galada", - "fontFamily": "Galada, system-ui", - "slug": "galada", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/galada/v14/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Galada" - } - ] - }, - { - "name": "Galdeano", - "fontFamily": "Galdeano, sans-serif", - "slug": "galdeano", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Galdeano" - } - ] - }, - { - "name": "Galindo", - "fontFamily": "Galindo, system-ui", - "slug": "galindo", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/galindo/v20/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Galindo" - } - ] - }, - { - "name": "Gamja Flower", - "fontFamily": "Gamja Flower, cursive", - "slug": "gamja-flower", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gamjaflower/v20/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gamja Flower" - } - ] - }, - { - "name": "Gantari", - "fontFamily": "Gantari, sans-serif", - "slug": "gantari", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOz3wa5GD2qnm.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gOj3wa5GD2qnm.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g1-Oj3wa5GD2qnm.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOj3wa5GD2qnm.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0SOj3wa5GD2qnm.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3-PT3wa5GD2qnm.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3HPT3wa5GD2qnm.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gPT3wa5GD2qnm.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2JPT3wa5GD2qnm.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWyYZWh37nmpWc.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVWzYZWh37nmpWc.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeYuzYZWh37nmpWc.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWzYZWh37nmpWc.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeeezYZWh37nmpWc.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeQu0YZWh37nmpWc.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeTK0YZWh37nmpWc.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVW0YZWh37nmpWc.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Gantari" - }, - { - "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeXy0YZWh37nmpWc.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Gantari" - } - ] - }, - { - "name": "Gayathri", - "fontFamily": "Gayathri, sans-serif", - "slug": "gayathri", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Gayathri" - }, - { - "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoQzAb429DbBilWLIA48J_wBugA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gayathri" - }, - { - "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gayathri" - } - ] - }, - { - "name": "Gelasio", - "fontFamily": "Gelasio, serif", - "slug": "gelasio", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gelasio" - }, - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf_MaFfvUQxTTqS9CuhZEsCkIt9QQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gelasio" - }, - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_N2CRGEsnIJkWL4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gelasio" - }, - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZkGImmKBhSL7Y1Q.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Gelasio" - }, - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_PGFRGEsnIJkWL4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gelasio" - }, - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZvGUmmKBhSL7Y1Q.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Gelasio" - }, - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_JWERGEsnIJkWL4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gelasio" - }, - { - "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZ2GQmmKBhSL7Y1Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Gelasio" - } - ] - }, - { - "name": "Gemunu Libre", - "fontFamily": "Gemunu Libre, sans-serif", - "slug": "gemunu-libre", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iJPvSLeMXPIWA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre" - }, - { - "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp00aJPvSLeMXPIWA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre" - }, - { - "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJPvSLeMXPIWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre" - }, - { - "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0yqJPvSLeMXPIWA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre" - }, - { - "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp08aOPvSLeMXPIWA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre" - }, - { - "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0_-OPvSLeMXPIWA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre" - }, - { - "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iOPvSLeMXPIWA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Gemunu Libre" - } - ] - }, - { - "name": "Genos", - "fontFamily": "Genos, sans-serif", - "slug": "genos", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqknorUK6K7ZsAg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVKkjorUK6K7ZsAg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwV9EjorUK6K7ZsAg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjorUK6K7ZsAg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVmEjorUK6K7ZsAg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVdE_orUK6K7ZsAg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVTU_orUK6K7ZsAg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVKk_orUK6K7ZsAg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVA0_orUK6K7ZsAg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA70i-CbN8Ard7.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA7ki-CbN8Ard7.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgte7ki-CbN8Ard7.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA7ki-CbN8Ard7.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsy7ki-CbN8Ard7.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgve6Ui-CbN8Ard7.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgvn6Ui-CbN8Ard7.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA6Ui-CbN8Ard7.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Genos" - }, - { - "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgup6Ui-CbN8Ard7.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Genos" - } - ] - }, - { - "name": "Gentium Book Plus", - "fontFamily": "Gentium Book Plus, serif", - "slug": "gentium-book-plus", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpofKfdbLOrdPV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gentium Book Plus" - }, - { - "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFN2-RHBgUK5fbjKxRpbBtJPyRpocKdf7bsqMPVZb4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gentium Book Plus" - }, - { - "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFO2-RHBgUK5fbjKxRpbBtJPyRpocojWpbGhs_cfKe1.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gentium Book Plus" - }, - { - "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFA2-RHBgUK5fbjKxRpbBtJPyRpocKdRwrDjMv-ebe1Els.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Gentium Book Plus" - } - ] - }, - { - "name": "Gentium Plus", - "fontFamily": "Gentium Plus, serif", - "slug": "gentium-plus", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gentiumplus/v2/Iurd6Ytw-oSPaZ00r2bNe8VpjJtM6G0t9w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gentium Plus" - }, - { - "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurD6Ytw-oSPaZ00r2bNe8VZjpFIymg9957e.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gentium Plus" - }, - { - "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurC6Ytw-oSPaZ00r2bNe8VRMLRo4EYx_ofHsw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gentium Plus" - }, - { - "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurA6Ytw-oSPaZ00r2bNe8VZjqn05Uw13ILXs-h6.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Gentium Plus" - } - ] - }, - { - "name": "Geo", - "fontFamily": "Geo, sans-serif", - "slug": "geo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/geo/v19/CSRz4zRZlufVL3BmQjlCbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Geo" - }, - { - "src": "http://fonts.gstatic.com/s/geo/v19/CSRx4zRZluflLXpiYDxSbf8r.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Geo" - } - ] - }, - { - "name": "Georama", - "fontFamily": "Georama, sans-serif", - "slug": "georama", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvktmQsL5_tgbg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mvgtmQsL5_tgbg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5RPgtmQsL5_tgbg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgtmQsL5_tgbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5KPgtmQsL5_tgbg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5xP8tmQsL5_tgbg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5_f8tmQsL5_tgbg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mv8tmQsL5_tgbg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5s_8tmQsL5_tgbg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2wEPxf5wbh3T.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF2gEPxf5wbh3T.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rub2gEPxf5wbh3T.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2gEPxf5wbh3T.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rv32gEPxf5wbh3T.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsb3QEPxf5wbh3T.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsi3QEPxf5wbh3T.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF3QEPxf5wbh3T.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Georama" - }, - { - "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rts3QEPxf5wbh3T.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Georama" - } - ] - }, - { - "name": "Geostar", - "fontFamily": "Geostar, system-ui", - "slug": "geostar", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/geostar/v22/sykz-yx4n701VLOftSq9-trEvlQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Geostar" - } - ] - }, - { - "name": "Geostar Fill", - "fontFamily": "Geostar Fill, system-ui", - "slug": "geostar-fill", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/geostarfill/v22/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Geostar Fill" - } - ] - }, - { - "name": "Germania One", - "fontFamily": "Germania One, system-ui", - "slug": "germania-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Germania One" - } - ] - }, - { - "name": "Gideon Roman", - "fontFamily": "Gideon Roman, system-ui", - "slug": "gideon-roman", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gideonroman/v8/e3tmeuGrVOys8sxzZgWlmXoge0PWovdU4w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gideon Roman" - } - ] - }, - { - "name": "Gidugu", - "fontFamily": "Gidugu, sans-serif", - "slug": "gidugu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gidugu/v21/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gidugu" - } - ] - }, - { - "name": "Gilda Display", - "fontFamily": "Gilda Display, serif", - "slug": "gilda-display", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gildadisplay/v14/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gilda Display" - } - ] - }, - { - "name": "Girassol", - "fontFamily": "Girassol, system-ui", - "slug": "girassol", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/girassol/v17/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Girassol" - } - ] - }, - { - "name": "Give You Glory", - "fontFamily": "Give You Glory, cursive", - "slug": "give-you-glory", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/giveyouglory/v15/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Give You Glory" - } - ] - }, - { - "name": "Glass Antiqua", - "fontFamily": "Glass Antiqua, system-ui", - "slug": "glass-antiqua", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/glassantiqua/v20/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Glass Antiqua" - } - ] - }, - { - "name": "Glegoo", - "fontFamily": "Glegoo, serif", - "slug": "glegoo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/glegoo/v14/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Glegoo" - }, - { - "src": "http://fonts.gstatic.com/s/glegoo/v14/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Glegoo" - } - ] - }, - { - "name": "Gloock", - "fontFamily": "Gloock, serif", - "slug": "gloock", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gloock/v2/Iurb6YFw84WUY4N5jxylBrdRjQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gloock" - } - ] - }, - { - "name": "Gloria Hallelujah", - "fontFamily": "Gloria Hallelujah, cursive", - "slug": "gloria-hallelujah", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gloriahallelujah/v17/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gloria Hallelujah" - } - ] - }, - { - "name": "Glory", - "fontFamily": "Glory, sans-serif", - "slug": "glory", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwIiDpn-dDi9EOQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQQImDpn-dDi9EOQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQnomDpn-dDi9EOQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwImDpn-dDi9EOQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQ8omDpn-dDi9EOQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQHo6Dpn-dDi9EOQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQJ46Dpn-dDi9EOQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQQI6Dpn-dDi9EOQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Glory" - }, - { - "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Glory" - } - ] - }, - { - "name": "Gluten", - "fontFamily": "Gluten, system-ui", - "slug": "gluten", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7B1Luni7ciJh.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb7R1Luni7ciJh.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8UF7R1Luni7ciJh.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7R1Luni7ciJh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vp7R1Luni7ciJh.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8WF6h1Luni7ciJh.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8W86h1Luni7ciJh.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb6h1Luni7ciJh.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Gluten" - }, - { - "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xy6h1Luni7ciJh.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Gluten" - } - ] - }, - { - "name": "Goblin One", - "fontFamily": "Goblin One, system-ui", - "slug": "goblin-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/goblinone/v22/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Goblin One" - } - ] - }, - { - "name": "Gochi Hand", - "fontFamily": "Gochi Hand, cursive", - "slug": "gochi-hand", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gochihand/v19/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gochi Hand" - } - ] - }, - { - "name": "Goldman", - "fontFamily": "Goldman, system-ui", - "slug": "goldman", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/goldman/v16/pe0uMIWbN4JFplR2LDJ4Bt-7G98.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Goldman" - }, - { - "src": "http://fonts.gstatic.com/s/goldman/v16/pe0rMIWbN4JFplR2FI5XIteQB9Zra1U.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Goldman" - } - ] - }, - { - "name": "Golos Text", - "fontFamily": "Golos Text, sans-serif", - "slug": "golos-text", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVRRQ5cEr8zXcyx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Golos Text" - }, - { - "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVjRQ5cEr8zXcyx.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Golos Text" - }, - { - "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plWPQg5cEr8zXcyx.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Golos Text" - }, - { - "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plW2Qg5cEr8zXcyx.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Golos Text" - }, - { - "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plXRQg5cEr8zXcyx.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Golos Text" - }, - { - "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plX4Qg5cEr8zXcyx.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Golos Text" - } - ] - }, - { - "name": "Gorditas", - "fontFamily": "Gorditas, system-ui", - "slug": "gorditas", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gorditas/v20/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gorditas" - }, - { - "src": "http://fonts.gstatic.com/s/gorditas/v20/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gorditas" - } - ] - }, - { - "name": "Gothic A1", - "fontFamily": "Gothic A1, sans-serif", - "slug": "gothic-a1", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - }, - { - "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Gothic A1" - } - ] - }, - { - "name": "Gotu", - "fontFamily": "Gotu, sans-serif", - "slug": "gotu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gotu/v14/o-0FIpksx3QOlH0Lioh6-hU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gotu" - } - ] - }, - { - "name": "Goudy Bookletter 1911", - "fontFamily": "Goudy Bookletter 1911, serif", - "slug": "goudy-bookletter-1911", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/goudybookletter1911/v15/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Goudy Bookletter 1911" - } - ] - }, - { - "name": "Gowun Batang", - "fontFamily": "Gowun Batang, serif", - "slug": "gowun-batang", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwSs5nhRMIjYsdSgcMa3wRhXLH-yuAtLw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gowun Batang" - }, - { - "src": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwNs5nhRMIjYsdSgcMa3wRZ4J7awssxJii23w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gowun Batang" - } - ] - }, - { - "name": "Gowun Dodum", - "fontFamily": "Gowun Dodum, sans-serif", - "slug": "gowun-dodum", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gowundodum/v7/3Jn5SD_00GqwlBnWc1TUJF0FfORL0fNy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gowun Dodum" - } - ] - }, - { - "name": "Graduate", - "fontFamily": "Graduate, system-ui", - "slug": "graduate", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/graduate/v13/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Graduate" - } - ] - }, - { - "name": "Grand Hotel", - "fontFamily": "Grand Hotel, cursive", - "slug": "grand-hotel", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/grandhotel/v14/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grand Hotel" - } - ] - }, - { - "name": "Grandstander", - "fontFamily": "Grandstander, system-ui", - "slug": "grandstander", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1-_D3jWttFGmQk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9--D3jWttFGmQk.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQDwG-D3jWttFGmQk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--D3jWttFGmQk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD22-D3jWttFGmQk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD4G5D3jWttFGmQk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD7i5D3jWttFGmQk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9-5D3jWttFGmQk.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD_a5D3jWttFGmQk.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zrcsvNDiQlBYQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzvcsvNDiQlBYQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9uTvcsvNDiQlBYQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zvcsvNDiQlBYQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf91TvcsvNDiQlBYQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9OTzcsvNDiQlBYQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ADzcsvNDiQlBYQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzzcsvNDiQlBYQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Grandstander" - }, - { - "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9TjzcsvNDiQlBYQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Grandstander" - } - ] - }, - { - "name": "Grape Nuts", - "fontFamily": "Grape Nuts, cursive", - "slug": "grape-nuts", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/grapenuts/v2/syk2-yF4iLM2RfKj4F7k3tLvol2RN1E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grape Nuts" - } - ] - }, - { - "name": "Gravitas One", - "fontFamily": "Gravitas One, system-ui", - "slug": "gravitas-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gravitasone/v15/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gravitas One" - } - ] - }, - { - "name": "Great Vibes", - "fontFamily": "Great Vibes, cursive", - "slug": "great-vibes", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/greatvibes/v15/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Great Vibes" - } - ] - }, - { - "name": "Grechen Fuemen", - "fontFamily": "Grechen Fuemen, cursive", - "slug": "grechen-fuemen", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/grechenfuemen/v7/vEFI2_tHEQ4d5ObgKxBzZh0MAWgc-NaXXq7H.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grechen Fuemen" - } - ] - }, - { - "name": "Grenze", - "fontFamily": "Grenze, serif", - "slug": "grenze", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Grenze" - }, - { - "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Grenze" - } - ] - }, - { - "name": "Grenze Gotisch", - "fontFamily": "Grenze Gotisch, system-ui", - "slug": "grenze-gotisch", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz5UcICdYPSd_w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rz9UcICdYPSd_w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5cT9UcICdYPSd_w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9UcICdYPSd_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5HT9UcICdYPSd_w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i58ThUcICdYPSd_w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5yDhUcICdYPSd_w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rzhUcICdYPSd_w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - }, - { - "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5hjhUcICdYPSd_w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Grenze Gotisch" - } - ] - }, - { - "name": "Grey Qo", - "fontFamily": "Grey Qo, cursive", - "slug": "grey-qo", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/greyqo/v7/BXRrvF_Nmv_TyXxNDOtQ9Wf0QcE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Grey Qo" - } - ] - }, - { - "name": "Griffy", - "fontFamily": "Griffy, system-ui", - "slug": "griffy", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/griffy/v22/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Griffy" - } - ] - }, - { - "name": "Gruppo", - "fontFamily": "Gruppo, system-ui", - "slug": "gruppo", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gruppo/v16/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gruppo" - } - ] - }, - { - "name": "Gudea", - "fontFamily": "Gudea, sans-serif", - "slug": "gudea", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp-CP9IGON7Ez.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gudea" - }, - { - "src": "http://fonts.gstatic.com/s/gudea/v15/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Gudea" - }, - { - "src": "http://fonts.gstatic.com/s/gudea/v15/neIIzCqgsI0mp9gz26WGHK06UY30.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gudea" - } - ] - }, - { - "name": "Gugi", - "fontFamily": "Gugi, system-ui", - "slug": "gugi", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gugi/v13/A2BVn5dXywshVA6A9DEfgqM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gugi" - } - ] - }, - { - "name": "Gulzar", - "fontFamily": "Gulzar, serif", - "slug": "gulzar", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gulzar/v6/Wnz6HAc9eB3HB2ILYTwZqg_MPQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gulzar" - } - ] - }, - { - "name": "Gupter", - "fontFamily": "Gupter, serif", - "slug": "gupter", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gupter/v14/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gupter" - }, - { - "src": "http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qslb-bUsT5rZhaZg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Gupter" - }, - { - "src": "http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qs3bmbUsT5rZhaZg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gupter" - } - ] - }, - { - "name": "Gurajada", - "fontFamily": "Gurajada, serif", - "slug": "gurajada", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gurajada/v15/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gurajada" - } - ] - }, - { - "name": "Gwendolyn", - "fontFamily": "Gwendolyn, cursive", - "slug": "gwendolyn", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBXXvoO_M3CSss-d7ee5JRLkAXbMQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Gwendolyn" - }, - { - "src": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBSXvoO_M3CSss-d7emWLtvmC7HONiSFQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Gwendolyn" - } - ] - }, - { - "name": "Habibi", - "fontFamily": "Habibi, serif", - "slug": "habibi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Habibi" - } - ] - }, - { - "name": "Hachi Maru Pop", - "fontFamily": "Hachi Maru Pop, cursive", - "slug": "hachi-maru-pop", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hachimarupop/v17/HI_TiYoRLqpLrEiMAuO9Ysfz7rW1EM_btd8u.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hachi Maru Pop" - } - ] - }, - { - "name": "Hahmlet", - "fontFamily": "Hahmlet, serif", - "slug": "hahmlet", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOdjobsO-aVxn.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKONjobsO-aVxn.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RgUONjobsO-aVxn.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKONjobsO-aVxn.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4Rh4ONjobsO-aVxn.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RiUP9jobsO-aVxn.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RitP9jobsO-aVxn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKP9jobsO-aVxn.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - }, - { - "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjjP9jobsO-aVxn.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Hahmlet" - } - ] - }, - { - "name": "Halant", - "fontFamily": "Halant, serif", - "slug": "halant", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Halant" - }, - { - "src": "http://fonts.gstatic.com/s/halant/v14/u-4-0qaujRI2PbsX39Jmky12eg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Halant" - }, - { - "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Halant" - }, - { - "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Halant" - }, - { - "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Halant" - } - ] - }, - { - "name": "Hammersmith One", - "fontFamily": "Hammersmith One, sans-serif", - "slug": "hammersmith-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hammersmith One" - } - ] - }, - { - "name": "Hanalei", - "fontFamily": "Hanalei, system-ui", - "slug": "hanalei", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHXzgmVydREus.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hanalei" - } - ] - }, - { - "name": "Hanalei Fill", - "fontFamily": "Hanalei Fill, system-ui", - "slug": "hanalei-fill", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hanaleifill/v22/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hanalei Fill" - } - ] - }, - { - "name": "Handlee", - "fontFamily": "Handlee, cursive", - "slug": "handlee", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/handlee/v14/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Handlee" - } - ] - }, - { - "name": "Hanken Grotesk", - "fontFamily": "Hanken Grotesk, sans-serif", - "slug": "hanken-grotesk", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2da4fpNzXhRKA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Za4fpNzXhRKA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2Za4fpNzXhRKA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcbWFa4fpNzXhRKA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcVGFa4fpNzXhRKA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Fa4fpNzXhRKA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcGmFa4fpNzXhRKA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyo_BJ731BKMSK.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUyovBJ731BKMSK.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyXsovBJ731BKMSK.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyovBJ731BKMSK.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWAovBJ731BKMSK.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVspfBJ731BKMSK.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVVpfBJ731BKMSK.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUypfBJ731BKMSK.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUbpfBJ731BKMSK.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Hanken Grotesk" - } - ] - }, - { - "name": "Hanuman", - "fontFamily": "Hanuman, serif", - "slug": "hanuman", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJzdNvD15HhpJJBQMLdPKNiaRpFvg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Hanuman" - }, - { - "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQAr_HIlMZRNcp0o.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hanuman" - }, - { - "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hanuman" - }, - { - "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hanuman" - }, - { - "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQCL6HIlMZRNcp0o.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Hanuman" - } - ] - }, - { - "name": "Happy Monkey", - "fontFamily": "Happy Monkey, system-ui", - "slug": "happy-monkey", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Happy Monkey" - } - ] - }, - { - "name": "Harmattan", - "fontFamily": "Harmattan, sans-serif", - "slug": "harmattan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/harmattan/v17/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Harmattan" - }, - { - "src": "http://fonts.gstatic.com/s/harmattan/v17/gokpH6L2DkFvVvRp9Xpr92-HmNZEq6TTFw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Harmattan" - } - ] - }, - { - "name": "Headland One", - "fontFamily": "Headland One, serif", - "slug": "headland-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/headlandone/v16/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Headland One" - } - ] - }, - { - "name": "Heebo", - "fontFamily": "Heebo, sans-serif", - "slug": "heebo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cckOnz02SXQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycckOnz02SXQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycckOnz02SXQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycckOnz02SXQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyycckOnz02SXQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucckOnz02SXQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiucckOnz02SXQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucckOnz02SXQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Heebo" - }, - { - "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucckOnz02SXQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Heebo" - } - ] - }, - { - "name": "Henny Penny", - "fontFamily": "Henny Penny, system-ui", - "slug": "henny-penny", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Henny Penny" - } - ] - }, - { - "name": "Hepta Slab", - "fontFamily": "Hepta Slab, serif", - "slug": "hepta-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - }, - { - "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Hepta Slab" - } - ] - }, - { - "name": "Herr Von Muellerhoff", - "fontFamily": "Herr Von Muellerhoff, cursive", - "slug": "herr-von-muellerhoff", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/herrvonmuellerhoff/v16/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Herr Von Muellerhoff" - } - ] - }, - { - "name": "Hi Melody", - "fontFamily": "Hi Melody, cursive", - "slug": "hi-melody", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/himelody/v13/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hi Melody" - } - ] - }, - { - "name": "Hina Mincho", - "fontFamily": "Hina Mincho, serif", - "slug": "hina-mincho", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hinamincho/v9/2sDaZGBRhpXa2Jjz5w5LAGW8KbkVZTHR.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hina Mincho" - } - ] - }, - { - "name": "Hind", - "fontFamily": "Hind, sans-serif", - "slug": "hind", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind" - }, - { - "src": "http://fonts.gstatic.com/s/hind/v16/5aU69_a8oxmIRG5yBROzkDM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind" - }, - { - "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind" - }, - { - "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind" - }, - { - "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind" - } - ] - }, - { - "name": "Hind Guntur", - "fontFamily": "Hind Guntur, sans-serif", - "slug": "hind-guntur", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind Guntur" - }, - { - "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind Guntur" - }, - { - "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind Guntur" - }, - { - "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind Guntur" - }, - { - "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind Guntur" - } - ] - }, - { - "name": "Hind Madurai", - "fontFamily": "Hind Madurai, sans-serif", - "slug": "hind-madurai", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind Madurai" - }, - { - "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind Madurai" - }, - { - "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind Madurai" - }, - { - "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind Madurai" - }, - { - "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind Madurai" - } - ] - }, - { - "name": "Hind Siliguri", - "fontFamily": "Hind Siliguri, sans-serif", - "slug": "hind-siliguri", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri" - }, - { - "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri" - }, - { - "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri" - }, - { - "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri" - }, - { - "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind Siliguri" - } - ] - }, - { - "name": "Hind Vadodara", - "fontFamily": "Hind Vadodara, sans-serif", - "slug": "hind-vadodara", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara" - }, - { - "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara" - }, - { - "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara" - }, - { - "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara" - }, - { - "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Hind Vadodara" - } - ] - }, - { - "name": "Holtwood One SC", - "fontFamily": "Holtwood One SC, serif", - "slug": "holtwood-one-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/holtwoodonesc/v16/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Holtwood One SC" - } - ] - }, - { - "name": "Homemade Apple", - "fontFamily": "Homemade Apple, cursive", - "slug": "homemade-apple", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/homemadeapple/v18/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Homemade Apple" - } - ] - }, - { - "name": "Homenaje", - "fontFamily": "Homenaje, sans-serif", - "slug": "homenaje", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Homenaje" - } - ] - }, - { - "name": "Hubballi", - "fontFamily": "Hubballi, system-ui", - "slug": "hubballi", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hubballi/v4/o-0JIpUj3WIZ1RFN56B7yBBNYuSF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hubballi" - } - ] - }, - { - "name": "Hurricane", - "fontFamily": "Hurricane, cursive", - "slug": "hurricane", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/hurricane/v5/pe0sMIuULZxTolZ5YldyAv2-C99ycg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Hurricane" - } - ] - }, - { - "name": "IBM Plex Mono", - "fontFamily": "IBM Plex Mono, monospace", - "slug": "ibm-plex-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "IBM Plex Mono" - } - ] - }, - { - "name": "IBM Plex Sans", - "fontFamily": "IBM Plex Sans, sans-serif", - "slug": "ibm-plex-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans" - } - ] - }, - { - "name": "IBM Plex Sans Arabic", - "fontFamily": "IBM Plex Sans Arabic, sans-serif", - "slug": "ibm-plex-sans-arabic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3MZRtWPQCuHme67tEYUIx3Kh0PHR9N6YNe3PC5eMlAMg0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPy_dCTVsVJKxTs.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOW_tCTVsVJKxTs.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs61vSbfdlA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPO_9CTVsVJKxTs.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPi-NCTVsVJKxTs.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOG-dCTVsVJKxTs.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Arabic" - } - ] - }, - { - "name": "IBM Plex Sans Condensed", - "fontFamily": "IBM Plex Sans Condensed, sans-serif", - "slug": "ibm-plex-sans-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "IBM Plex Sans Condensed" - } - ] - }, - { - "name": "IBM Plex Sans Devanagari", - "fontFamily": "IBM Plex Sans Devanagari, sans-serif", - "slug": "ibm-plex-sans-devanagari", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXB3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HMUjwUcjwCEQq.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HnWnQe-b8AV0z0w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H-WrQe-b8AV0z0w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__VUL0c83gCA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HoWvQe-b8AV0z0w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HjWzQe-b8AV0z0w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H6W3Qe-b8AV0z0w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Devanagari" - } - ] - }, - { - "name": "IBM Plex Sans Hebrew", - "fontFamily": "IBM Plex Sans Hebrew, sans-serif", - "slug": "ibm-plex-sans-hebrew", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa4qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEXB-l0VqDaM7C4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVt230_hjqF9Tc2.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUJ2H0_hjqF9Tc2.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2l8Fk3rSaM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVR2X0_hjqF9Tc2.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEV93n0_hjqF9Tc2.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUZ330_hjqF9Tc2.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Hebrew" - } - ] - }, - { - "name": "IBM Plex Sans JP", - "fontFamily": "IBM Plex Sans JP, sans-serif", - "slug": "ibm-plex-sans-jp", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XLDn9KbTDf6_f7dISNqYf_tvPT7E7yjPB7twdmHQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7OLTrNpVuw5_BAM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7IbQrNpVuw5_BAM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XNDn9KbTDf6_f7dISNqYf_tvPT1Cr4iNJ-pwc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7N7RrNpVuw5_BAM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7PLWrNpVuw5_BAM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7JbXrNpVuw5_BAM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans JP" - } - ] - }, - { - "name": "IBM Plex Sans KR", - "fontFamily": "IBM Plex Sans KR, sans-serif", - "slug": "ibm-plex-sans-kr", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFM2-VJISZe3O_rc3ZVYh4aTwNOyra_X5zCpMrMfA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyhqef7bsqMPVZb4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyn6df7bsqMPVZb4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFK2-VJISZe3O_rc3ZVYh4aTwNO8tK1W77HtMo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyiacf7bsqMPVZb4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOygqbf7bsqMPVZb4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOym6af7bsqMPVZb4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans KR" - } - ] - }, - { - "name": "IBM Plex Sans Thai", - "fontFamily": "IBM Plex Sans Thai, sans-serif", - "slug": "ibm-plex-sans-thai", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JNje1VVIzcq1HzJq2AEdo2Tj_qvLqEatYlR8ZKUqcX.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqExvcFbehGW74OXw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEovQFbehGW74OXw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8DtwhZcNaUg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE-vUFbehGW74OXw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE1vIFbehGW74OXw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEsvMFbehGW74OXw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai" - } - ] - }, - { - "name": "IBM Plex Sans Thai Looped", - "fontFamily": "IBM Plex Sans Thai Looped, sans-serif", - "slug": "ibm-plex-sans-thai-looped", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss5AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_HaKpHOtFCQ76Q.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_NqrhFmDGC0i8Cc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_L6ohFmDGC0i8Cc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBKAoFGoBCQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_OaphFmDGC0i8Cc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_MquhFmDGC0i8Cc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_K6vhFmDGC0i8Cc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Sans Thai Looped" - } - ] - }, - { - "name": "IBM Plex Serif", - "fontFamily": "IBM Plex Serif, serif", - "slug": "ibm-plex-serif", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "IBM Plex Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "IBM Plex Serif" - } - ] - }, - { - "name": "IM Fell DW Pica", - "fontFamily": "IM Fell DW Pica, serif", - "slug": "im-fell-dw-pica", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell DW Pica" - }, - { - "src": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell DW Pica" - } - ] - }, - { - "name": "IM Fell DW Pica SC", - "fontFamily": "IM Fell DW Pica SC, serif", - "slug": "im-fell-dw-pica-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell DW Pica SC" - } - ] - }, - { - "name": "IM Fell Double Pica", - "fontFamily": "IM Fell Double Pica, serif", - "slug": "im-fell-double-pica", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell Double Pica" - }, - { - "src": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell Double Pica" - } - ] - }, - { - "name": "IM Fell Double Pica SC", - "fontFamily": "IM Fell Double Pica SC, serif", - "slug": "im-fell-double-pica-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell Double Pica SC" - } - ] - }, - { - "name": "IM Fell English", - "fontFamily": "IM Fell English, serif", - "slug": "im-fell-english", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell English" - }, - { - "src": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell English" - } - ] - }, - { - "name": "IM Fell English SC", - "fontFamily": "IM Fell English SC, serif", - "slug": "im-fell-english-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell English SC" - } - ] - }, - { - "name": "IM Fell French Canon", - "fontFamily": "IM Fell French Canon, serif", - "slug": "im-fell-french-canon", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell French Canon" - }, - { - "src": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell French Canon" - } - ] - }, - { - "name": "IM Fell French Canon SC", - "fontFamily": "IM Fell French Canon SC, serif", - "slug": "im-fell-french-canon-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell French Canon SC" - } - ] - }, - { - "name": "IM Fell Great Primer", - "fontFamily": "IM Fell Great Primer, serif", - "slug": "im-fell-great-primer", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell Great Primer" - }, - { - "src": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "IM Fell Great Primer" - } - ] - }, - { - "name": "IM Fell Great Primer SC", - "fontFamily": "IM Fell Great Primer SC, serif", - "slug": "im-fell-great-primer-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "IM Fell Great Primer SC" - } - ] - }, - { - "name": "Ibarra Real Nova", - "fontFamily": "Ibarra Real Nova, serif", - "slug": "ibarra-real-nova", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5MDtVT9TWIvS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ibarra Real Nova" - }, - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdS5MDtVT9TWIvS.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ibarra Real Nova" - }, - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXe-48DtVT9TWIvS.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Ibarra Real Nova" - }, - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXeH48DtVT9TWIvS.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ibarra Real Nova" - }, - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopyiuXztxXZvSkTo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ibarra Real Nova" - }, - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopxquXztxXZvSkTo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Ibarra Real Nova" - }, - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop_apXztxXZvSkTo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Ibarra Real Nova" - }, - { - "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop8-pXztxXZvSkTo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Ibarra Real Nova" - } - ] - }, - { - "name": "Iceberg", - "fontFamily": "Iceberg, system-ui", - "slug": "iceberg", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/iceberg/v20/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Iceberg" - } - ] - }, - { - "name": "Iceland", - "fontFamily": "Iceland, system-ui", - "slug": "iceland", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/iceland/v16/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Iceland" - } - ] - }, - { - "name": "Imbue", - "fontFamily": "Imbue, serif", - "slug": "imbue", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iWfOsNNK-Q4xY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iXfOsNNK-Q4xY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP5aXfOsNNK-Q4xY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXfOsNNK-Q4xY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP_qXfOsNNK-Q4xY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPxaQfOsNNK-Q4xY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPy-QfOsNNK-Q4xY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iQfOsNNK-Q4xY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Imbue" - }, - { - "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP2GQfOsNNK-Q4xY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Imbue" - } - ] - }, - { - "name": "Imperial Script", - "fontFamily": "Imperial Script, cursive", - "slug": "imperial-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imperialscript/v3/5DCPAKrpzy_H98IV2ISnZBbGrVNvPenlvttWNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Imperial Script" - } - ] - }, - { - "name": "Imprima", - "fontFamily": "Imprima, sans-serif", - "slug": "imprima", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/imprima/v18/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Imprima" - } - ] - }, - { - "name": "Inconsolata", - "fontFamily": "Inconsolata, monospace", - "slug": "inconsolata", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aRr8lleY2co.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - }, - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aRr8lleY2co.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - }, - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aRr8lleY2co.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - }, - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aRr8lleY2co.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - }, - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aRr8lleY2co.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - }, - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aRr8lleY2co.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - }, - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aRr8lleY2co.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - }, - { - "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aRr8lleY2co.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Inconsolata" - } - ] - }, - { - "name": "Inder", - "fontFamily": "Inder, sans-serif", - "slug": "inder", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4vq6pw-P3U4O.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inder" - } - ] - }, - { - "name": "Indie Flower", - "fontFamily": "Indie Flower, cursive", - "slug": "indie-flower", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/indieflower/v17/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Indie Flower" - } - ] - }, - { - "name": "Ingrid Darling", - "fontFamily": "Ingrid Darling, cursive", - "slug": "ingrid-darling", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ingriddarling/v2/LDIrapaJNxUtSuFdw-9yf4rCPsLOub458jGL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ingrid Darling" - } - ] - }, - { - "name": "Inika", - "fontFamily": "Inika, serif", - "slug": "inika", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-phTHRcc2s2XH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inika" - }, - { - "src": "http://fonts.gstatic.com/s/inika/v21/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inika" - } - ] - }, - { - "name": "Inknut Antiqua", - "fontFamily": "Inknut Antiqua, serif", - "slug": "inknut-antiqua", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua" - }, - { - "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua" - }, - { - "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua" - }, - { - "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua" - }, - { - "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua" - }, - { - "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua" - }, - { - "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Inknut Antiqua" - } - ] - }, - { - "name": "Inria Sans", - "fontFamily": "Inria Sans, sans-serif", - "slug": "inria-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3ELaDQtFqeY3fX4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inria Sans" - }, - { - "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPrcQybX4pQA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Inria Sans" - }, - { - "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inria Sans" - }, - { - "src": "http://fonts.gstatic.com/s/inriasans/v14/ptROTiqXYfZMCOiVj9kQ1Oz4LSFrpe8uZA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Inria Sans" - }, - { - "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3FLdDQtFqeY3fX4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inria Sans" - }, - { - "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PrcQybX4pQA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Inria Sans" - } - ] - }, - { - "name": "Inria Serif", - "fontFamily": "Inria Serif, serif", - "slug": "inria-serif", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wAVQjFhFyta3xN.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inria Serif" - }, - { - "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT4THjliPbmxN0_E.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Inria Serif" - }, - { - "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inria Serif" - }, - { - "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC1nPYxPY3rXxEndZJAzN3SudyjvqlCkcmU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Inria Serif" - }, - { - "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wQUgjFhFyta3xN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inria Serif" - }, - { - "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT5TAjliPbmxN0_E.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Inria Serif" - } - ] - }, - { - "name": "Inspiration", - "fontFamily": "Inspiration, cursive", - "slug": "inspiration", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inspiration/v3/x3dkckPPZa6L4wIg5cZOEvoGnSrlBBsy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inspiration" - } - ] - }, - { - "name": "Instrument Sans", - "fontFamily": "Instrument Sans, sans-serif", - "slug": "instrument-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-Qf1mS0v3_7Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Instrument Sans" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-Qf1mS0v3_7Y.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Instrument Sans" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQb_gf1mS0v3_7Y.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Instrument Sans" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gf1mS0v3_7Y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Instrument Sans" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENuu-2kykN2u7YUwU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Instrument Sans" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENut22kykN2u7YUwU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Instrument Sans" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENujGxkykN2u7YUwU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Instrument Sans" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENugixkykN2u7YUwU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Instrument Sans" - } - ] - }, - { - "name": "Instrument Serif", - "fontFamily": "Instrument Serif, serif", - "slug": "instrument-serif", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/instrumentserif/v3/jizBRFtNs2ka5fXjeivQ4LroWlx-2zIZj1bIkNo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Instrument Serif" - }, - { - "src": "http://fonts.gstatic.com/s/instrumentserif/v3/jizHRFtNs2ka5fXjeivQ4LroWlx-6zATi3TNgNq55w.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Instrument Serif" - } - ] - }, - { - "name": "Inter", - "fontFamily": "Inter, sans-serif", - "slug": "inter", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZhrib2Bg-4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Inter" - }, - { - "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZhrib2Bg-4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Inter" - } - ] - }, - { - "name": "Inter Tight", - "fontFamily": "Inter Tight, sans-serif", - "slug": "inter-tight", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw6qXCRToK8EPg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjw-qXCRToK8EPg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qXCRToK8EPg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qXCRToK8EPg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qXCRToK8EPg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqXCRToK8EPg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqXCRToK8EPg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjwiqXCRToK8EPg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqXCRToK8EPg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHi5XgqoUPvi5.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCHy5XgqoUPvi5.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0wcHy5XgqoUPvi5.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5XgqoUPvi5.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xwHy5XgqoUPvi5.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ycGC5XgqoUPvi5.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5XgqoUPvi5.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCGC5XgqoUPvi5.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - }, - { - "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zrGC5XgqoUPvi5.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Inter Tight" - } - ] - }, - { - "name": "Irish Grover", - "fontFamily": "Irish Grover, system-ui", - "slug": "irish-grover", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Irish Grover" - } - ] - }, - { - "name": "Island Moments", - "fontFamily": "Island Moments, cursive", - "slug": "island-moments", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/islandmoments/v3/NaPBcZfVGvBdxIt7Ar0qzkXJF-TGIohbZ6SY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Island Moments" - } - ] - }, - { - "name": "Istok Web", - "fontFamily": "Istok Web, sans-serif", - "slug": "istok-web", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Istok Web" - }, - { - "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Istok Web" - }, - { - "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Istok Web" - }, - { - "src": "http://fonts.gstatic.com/s/istokweb/v21/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Istok Web" - } - ] - }, - { - "name": "Italiana", - "fontFamily": "Italiana, serif", - "slug": "italiana", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/italiana/v16/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Italiana" - } - ] - }, - { - "name": "Italianno", - "fontFamily": "Italianno, cursive", - "slug": "italianno", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/italianno/v17/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Italianno" - } - ] - }, - { - "name": "Itim", - "fontFamily": "Itim, cursive", - "slug": "itim", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/itim/v11/0nknC9ziJOYewARKkc7ZdwU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Itim" - } - ] - }, - { - "name": "Jacques Francois", - "fontFamily": "Jacques Francois, serif", - "slug": "jacques-francois", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jacquesfrancois/v20/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jacques Francois" - } - ] - }, - { - "name": "Jacques Francois Shadow", - "fontFamily": "Jacques Francois Shadow, system-ui", - "slug": "jacques-francois-shadow", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v21/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jacques Francois Shadow" - } - ] - }, - { - "name": "Jaldi", - "fontFamily": "Jaldi, sans-serif", - "slug": "jaldi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jaldi/v12/or3sQ67z0_CI30NUZpD_B6g8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jaldi" - }, - { - "src": "http://fonts.gstatic.com/s/jaldi/v12/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Jaldi" - } - ] - }, - { - "name": "JetBrains Mono", - "fontFamily": "JetBrains Mono, monospace", - "slug": "jetbrains-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yK1jPVmUsaaDhw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKxjPVmUsaaDhw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8lqxjPVmUsaaDhw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPVmUsaaDhw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjPVmUsaaDhw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtjPVmUsaaDhw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjPVmUsaaDhw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKtjPVmUsaaDhw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-Lf1OQk6OThxPA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LflOQk6OThxPA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO_VflOQk6OThxPA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-LflOQk6OThxPA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-5flOQk6OThxPA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9VeVOQk6OThxPA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9seVOQk6OThxPA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - }, - { - "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LeVOQk6OThxPA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "JetBrains Mono" - } - ] - }, - { - "name": "Jim Nightshade", - "fontFamily": "Jim Nightshade, cursive", - "slug": "jim-nightshade", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jim Nightshade" - } - ] - }, - { - "name": "Joan", - "fontFamily": "Joan, serif", - "slug": "joan", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/joan/v2/ZXupe1oZsqWRbRdH8X1p_Ng.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Joan" - } - ] - }, - { - "name": "Jockey One", - "fontFamily": "Jockey One, sans-serif", - "slug": "jockey-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jockeyone/v16/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jockey One" - } - ] - }, - { - "name": "Jolly Lodger", - "fontFamily": "Jolly Lodger, system-ui", - "slug": "jolly-lodger", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jolly Lodger" - } - ] - }, - { - "name": "Jomhuria", - "fontFamily": "Jomhuria, system-ui", - "slug": "jomhuria", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jomhuria/v18/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jomhuria" - } - ] - }, - { - "name": "Jomolhari", - "fontFamily": "Jomolhari, serif", - "slug": "jomolhari", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jomolhari/v14/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jomolhari" - } - ] - }, - { - "name": "Josefin Sans", - "fontFamily": "Josefin Sans, sans-serif", - "slug": "josefin-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMFrLgTsQV0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMFrLgTsQV0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMFrLgTsQV0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMFrLgTsQV0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMFrLgTsQV0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMFrLgTsQV0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMFrLgTsQV0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKibpUV3MEQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKibpUV3MEQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKibpUV3MEQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKibpUV3MEQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKibpUV3MEQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKibpUV3MEQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Josefin Sans" - }, - { - "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKibpUV3MEQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Josefin Sans" - } - ] - }, - { - "name": "Josefin Slab", - "fontFamily": "Josefin Slab, serif", - "slug": "josefin-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71mtd3k3K6CcEyI.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W79msd3k3K6CcEyI.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W7wesd3k3K6CcEyI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msd3k3K6CcEyI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W72usd3k3K6CcEyI.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W74erd3k3K6CcEyI.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W776rd3k3K6CcEyI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzs9L4KZAyK43w.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvHzo9L4KZAyK43w.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvwTo9L4KZAyK43w.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzo9L4KZAyK43w.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvrTo9L4KZAyK43w.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvQT09L4KZAyK43w.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Josefin Slab" - }, - { - "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHveD09L4KZAyK43w.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Josefin Slab" - } - ] - }, - { - "name": "Jost", - "fontFamily": "Jost, sans-serif", - "slug": "jost", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJAVGPokMmuHL.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjJQVGPokMmuHL.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mz9JQVGPokMmuHL.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJQVGPokMmuHL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myRJQVGPokMmuHL.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mx9IgVGPokMmuHL.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mxEIgVGPokMmuHL.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjIgVGPokMmuHL.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwKIgVGPokMmuHL.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENI0un_HLMEo.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNI0un_HLMEo.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNI0un_HLMEo.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNI0un_HLMEo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNI0un_HLMEo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNI0un_HLMEo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNI0un_HLMEo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNI0un_HLMEo.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Jost" - }, - { - "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNI0un_HLMEo.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Jost" - } - ] - }, - { - "name": "Joti One", - "fontFamily": "Joti One, system-ui", - "slug": "joti-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jotione/v22/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Joti One" - } - ] - }, - { - "name": "Jua", - "fontFamily": "Jua, sans-serif", - "slug": "jua", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jua/v13/co3KmW9ljjAjc-DZCsKgsg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jua" - } - ] - }, - { - "name": "Judson", - "fontFamily": "Judson, serif", - "slug": "judson", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/judson/v19/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Judson" - }, - { - "src": "http://fonts.gstatic.com/s/judson/v19/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Judson" - }, - { - "src": "http://fonts.gstatic.com/s/judson/v19/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Judson" - } - ] - }, - { - "name": "Julee", - "fontFamily": "Julee, cursive", - "slug": "julee", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/julee/v25/TuGfUVB3RpZPQ6ZLodgzydtk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Julee" - } - ] - }, - { - "name": "Julius Sans One", - "fontFamily": "Julius Sans One, sans-serif", - "slug": "julius-sans-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/juliussansone/v14/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Julius Sans One" - } - ] - }, - { - "name": "Junge", - "fontFamily": "Junge, serif", - "slug": "junge", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/junge/v20/gokgH670Gl1lUqAdvhB7SnKm.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Junge" - } - ] - }, - { - "name": "Jura", - "fontFamily": "Jura, sans-serif", - "slug": "jura", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Jura" - }, - { - "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Jura" - }, - { - "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Jura" - }, - { - "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Jura" - }, - { - "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Jura" - } - ] - }, - { - "name": "Just Another Hand", - "fontFamily": "Just Another Hand, cursive", - "slug": "just-another-hand", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/justanotherhand/v19/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Just Another Hand" - } - ] - }, - { - "name": "Just Me Again Down Here", - "fontFamily": "Just Me Again Down Here, cursive", - "slug": "just-me-again-down-here", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Just Me Again Down Here" - } - ] - }, - { - "name": "K2D", - "fontFamily": "K2D, sans-serif", - "slug": "k2d", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0ErE6UpvrIw74NL.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erv4QJlJw85ppSGw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er24cJlJw85ppSGw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aTnpF2V0ETd68tnLcg7w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0EjdaUpvrIw74NL.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erg4YJlJw85ppSGw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Err4EJlJw85ppSGw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Ery4AJlJw85ppSGw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er14MJlJw85ppSGw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "K2D" - }, - { - "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "K2D" - } - ] - }, - { - "name": "Kadwa", - "fontFamily": "Kadwa, serif", - "slug": "kadwa", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kadwa/v10/rnCm-x5V0g7iphTHRcc2s2XH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kadwa" - }, - { - "src": "http://fonts.gstatic.com/s/kadwa/v10/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kadwa" - } - ] - }, - { - "name": "Kaisei Decol", - "fontFamily": "Kaisei Decol, serif", - "slug": "kaisei-decol", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrwmSqP45sidWf3QmfFW6iyW1EP22OjoA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaisei Decol" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iKr3gr00i_qb57kA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kaisei Decol" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iK534r00i_qb57kA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kaisei Decol" - } - ] - }, - { - "name": "Kaisei HarunoUmi", - "fontFamily": "Kaisei HarunoUmi, serif", - "slug": "kaisei-harunoumi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_RiZQSLqBQoAHhK_C6N_nzy_jcGsv5sM8u3mk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaisei HarunoUmi" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcIj_QlMcFwmC9FAU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kaisei HarunoUmi" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcInfWlMcFwmC9FAU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kaisei HarunoUmi" - } - ] - }, - { - "name": "Kaisei Opti", - "fontFamily": "Kaisei Opti, serif", - "slug": "kaisei-opti", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldKNThJphYb8_g6c2nlIFle7KlmxuHx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaisei Opti" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGGqxY1u7f34DYwn.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kaisei Opti" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGHiw41u7f34DYwn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kaisei Opti" - } - ] - }, - { - "name": "Kaisei Tokumin", - "fontFamily": "Kaisei Tokumin, serif", - "slug": "kaisei-tokumin", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8sN5wdZg7xCwuMsylww2ZiQkJf1l0pj946.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaisei Tokumin" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnqr_3khpMIzeI6v.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kaisei Tokumin" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnrj-XkhpMIzeI6v.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kaisei Tokumin" - }, - { - "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnr_-nkhpMIzeI6v.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Kaisei Tokumin" - } - ] - }, - { - "name": "Kalam", - "fontFamily": "Kalam, cursive", - "slug": "kalam", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kalam" - }, - { - "src": "http://fonts.gstatic.com/s/kalam/v16/YA9dr0Wd4kDdMuhWMibDszkB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kalam" - }, - { - "src": "http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kalam" - } - ] - }, - { - "name": "Kameron", - "fontFamily": "Kameron, serif", - "slug": "kameron", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kameron/v15/vm82dR7vXErQxuznsL4wL-XIYH8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kameron" - }, - { - "src": "http://fonts.gstatic.com/s/kameron/v15/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kameron" - } - ] - }, - { - "name": "Kanit", - "fontFamily": "Kanit, sans-serif", - "slug": "kanit", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKZ-Go6G5tXcoaSEQGodLxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Kanit" - }, - { - "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Kanit" - } - ] - }, - { - "name": "Kantumruy Pro", - "fontFamily": "Kantumruy Pro, sans-serif", - "slug": "kantumruy-pro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urUs0M34dR6dW.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg3urEs0M34dR6dW.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg0wrEs0M34dR6dW.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urEs0M34dR6dW.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1crEs0M34dR6dW.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2wq0s0M34dR6dW.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2Jq0s0M34dR6dW.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N2OXo_QrdWlcU.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7yN3OXo_QrdWlcU.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7_13OXo_QrdWlcU.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N3OXo_QrdWlcU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim75F3OXo_QrdWlcU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim731wOXo_QrdWlcU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro" - }, - { - "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim70RwOXo_QrdWlcU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kantumruy Pro" - } - ] - }, - { - "name": "Karantina", - "fontFamily": "Karantina, system-ui", - "slug": "karantina", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxXCgf-P5Oaiw4cw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Karantina" - }, - { - "src": "http://fonts.gstatic.com/s/karantina/v11/buE0po24ccnh31GVMABJ8AA78NVSYw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Karantina" - }, - { - "src": "http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxTC8f-P5Oaiw4cw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Karantina" - } - ] - }, - { - "name": "Karla", - "fontFamily": "Karla, sans-serif", - "slug": "karla", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqFENLR7fHGw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqFENLR7fHGw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFENLR7fHGw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqFENLR7fHGw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qFENLR7fHGw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qFENLR7fHGw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qFENLR7fHGw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCV0lPZbLXGxGR.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNkcV0lPZbLXGxGR.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlCV0lPZbLXGxGR.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlwV0lPZbLXGxGR.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmcUElPZbLXGxGR.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmlUElPZbLXGxGR.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Karla" - }, - { - "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCUElPZbLXGxGR.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Karla" - } - ] - }, - { - "name": "Karma", - "fontFamily": "Karma, serif", - "slug": "karma", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Karma" - }, - { - "src": "http://fonts.gstatic.com/s/karma/v16/va9I4kzAzMZRGIBvS-J3kbDP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Karma" - }, - { - "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Karma" - }, - { - "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Karma" - }, - { - "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Karma" - } - ] - }, - { - "name": "Katibeh", - "fontFamily": "Katibeh, system-ui", - "slug": "katibeh", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/katibeh/v17/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Katibeh" - } - ] - }, - { - "name": "Kaushan Script", - "fontFamily": "Kaushan Script, cursive", - "slug": "kaushan-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kaushanscript/v14/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kaushan Script" - } - ] - }, - { - "name": "Kavivanar", - "fontFamily": "Kavivanar, cursive", - "slug": "kavivanar", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kavivanar/v18/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kavivanar" - } - ] - }, - { - "name": "Kavoon", - "fontFamily": "Kavoon, system-ui", - "slug": "kavoon", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kavoon/v21/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kavoon" - } - ] - }, - { - "name": "Kdam Thmor Pro", - "fontFamily": "Kdam Thmor Pro, sans-serif", - "slug": "kdam-thmor-pro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kdamthmorpro/v1/EJRPQgAzVdcI-Qdvt34jzurnGA7_j89I8ZWb.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kdam Thmor Pro" - } - ] - }, - { - "name": "Keania One", - "fontFamily": "Keania One, system-ui", - "slug": "keania-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/keaniaone/v21/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Keania One" - } - ] - }, - { - "name": "Kelly Slab", - "fontFamily": "Kelly Slab, system-ui", - "slug": "kelly-slab", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kellyslab/v15/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kelly Slab" - } - ] - }, - { - "name": "Kenia", - "fontFamily": "Kenia, system-ui", - "slug": "kenia", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kenia/v24/jizURE5PuHQH9qCONUGswfGM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kenia" - } - ] - }, - { - "name": "Khand", - "fontFamily": "Khand, sans-serif", - "slug": "khand", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Khand" - }, - { - "src": "http://fonts.gstatic.com/s/khand/v17/TwMA-IINQlQQ0YpVWHU_TBqO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Khand" - }, - { - "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Khand" - }, - { - "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Khand" - }, - { - "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Khand" - } - ] - }, - { - "name": "Khmer", - "fontFamily": "Khmer, system-ui", - "slug": "khmer", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/khmer/v25/MjQImit_vPPwpF-BpN2EeYmD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Khmer" - } - ] - }, - { - "name": "Khula", - "fontFamily": "Khula, sans-serif", - "slug": "khula", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Khula" - }, - { - "src": "http://fonts.gstatic.com/s/khula/v12/OpNCnoEOns3V7FcJpA_chzJ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Khula" - }, - { - "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Khula" - }, - { - "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Khula" - }, - { - "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Khula" - } - ] - }, - { - "name": "Kings", - "fontFamily": "Kings, cursive", - "slug": "kings", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kings/v5/8AtnGsK4O5CYXU_Iq6GSPaHS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kings" - } - ] - }, - { - "name": "Kirang Haerang", - "fontFamily": "Kirang Haerang, system-ui", - "slug": "kirang-haerang", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kiranghaerang/v20/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kirang Haerang" - } - ] - }, - { - "name": "Kite One", - "fontFamily": "Kite One, sans-serif", - "slug": "kite-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kiteone/v22/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kite One" - } - ] - }, - { - "name": "Kiwi Maru", - "fontFamily": "Kiwi Maru, serif", - "slug": "kiwi-maru", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gNCi0Vxn9R5ShnA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kiwi Maru" - }, - { - "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70YjykGkuuDep-hRg6YmACQXzLhTg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kiwi Maru" - }, - { - "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gbCm0Vxn9R5ShnA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kiwi Maru" - } - ] - }, - { - "name": "Klee One", - "fontFamily": "Klee One, cursive", - "slug": "klee-one", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kleeone/v7/LDIxapCLNRc6A8oT4q4AOeekWPrP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Klee One" - }, - { - "src": "http://fonts.gstatic.com/s/kleeone/v7/LDI2apCLNRc6A8oT4pbYF8Osc-bGkqIw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Klee One" - } - ] - }, - { - "name": "Knewave", - "fontFamily": "Knewave, system-ui", - "slug": "knewave", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Knewave" - } - ] - }, - { - "name": "KoHo", - "fontFamily": "KoHo, sans-serif", - "slug": "koho", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2F-fZ5fmddNBikefJbSOos.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "KoHo" - }, - { - "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "KoHo" - } - ] - }, - { - "name": "Kodchasan", - "fontFamily": "Kodchasan, sans-serif", - "slug": "kodchasan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kodchasan" - }, - { - "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kodchasan" - } - ] - }, - { - "name": "Koh Santepheap", - "fontFamily": "Koh Santepheap, system-ui", - "slug": "koh-santepheap", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMfW3p6SJbwyGj2rBZyeOrTjNuFHVyTtjNJUWU.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap" - }, - { - "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtNP3y5mD9ASHz5.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap" - }, - { - "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMdW3p6SJbwyGj2rBZyeOrTjOPhF1ixsyNJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap" - }, - { - "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtdOHy5mD9ASHz5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap" - }, - { - "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtlOny5mD9ASHz5.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Koh Santepheap" - } - ] - }, - { - "name": "Kolker Brush", - "fontFamily": "Kolker Brush, cursive", - "slug": "kolker-brush", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kolkerbrush/v3/iJWDBXWRZjfKWdvmzwvvog3-7KJ6x8qNUQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kolker Brush" - } - ] - }, - { - "name": "Konkhmer Sleokchher", - "fontFamily": "Konkhmer Sleokchher, system-ui", - "slug": "konkhmer-sleokchher", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/konkhmersleokchher/v2/_Xmw-GE-rjmabA_M-aPOZOsCrUv825LFI3507E0d-W0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Konkhmer Sleokchher" - } - ] - }, - { - "name": "Kosugi", - "fontFamily": "Kosugi, sans-serif", - "slug": "kosugi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kosugi/v15/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kosugi" - } - ] - }, - { - "name": "Kosugi Maru", - "fontFamily": "Kosugi Maru, sans-serif", - "slug": "kosugi-maru", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kosugimaru/v14/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kosugi Maru" - } - ] - }, - { - "name": "Kotta One", - "fontFamily": "Kotta One, serif", - "slug": "kotta-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kotta One" - } - ] - }, - { - "name": "Koulen", - "fontFamily": "Koulen, system-ui", - "slug": "koulen", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/koulen/v25/AMOQz46as3KIBPeWgnA9kuYMUg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Koulen" - } - ] - }, - { - "name": "Kranky", - "fontFamily": "Kranky, system-ui", - "slug": "kranky", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kranky/v24/hESw6XVgJzlPsFnMpheEZo_H_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kranky" - } - ] - }, - { - "name": "Kreon", - "fontFamily": "Kreon, serif", - "slug": "kreon", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kreon" - }, - { - "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kreon" - }, - { - "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kreon" - }, - { - "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kreon" - }, - { - "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kreon" - } - ] - }, - { - "name": "Kristi", - "fontFamily": "Kristi, cursive", - "slug": "kristi", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kristi/v17/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kristi" - } - ] - }, - { - "name": "Krona One", - "fontFamily": "Krona One, sans-serif", - "slug": "krona-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Krona One" - } - ] - }, - { - "name": "Krub", - "fontFamily": "Krub, sans-serif", - "slug": "krub", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlLdRyC6CRYXkYQDLlTW6E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Krub" - }, - { - "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Krub" - } - ] - }, - { - "name": "Kufam", - "fontFamily": "Kufam, sans-serif", - "slug": "kufam", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqk7qQCJHvIwYg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3pKk7qQCJHvIwYg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3SK47qQCJHvIwYg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3ca47qQCJHvIwYg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3Fq47qQCJHvIwYg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3P647qQCJHvIwYg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurT6gqNPPcgYp0i.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurh6gqNPPcgYp0i.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuoN7QqNPPcgYp0i.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuo07QqNPPcgYp0i.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXupT7QqNPPcgYp0i.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Kufam" - }, - { - "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXup67QqNPPcgYp0i.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Kufam" - } - ] - }, - { - "name": "Kulim Park", - "fontFamily": "Kulim Park, sans-serif", - "slug": "kulim-park", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjJYNwa5aZbUvGjU.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUKa9QYZcqCjVVUA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjPIOwa5aZbUvGjU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUTaxQYZcqCjVVUA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN59secq3hflz1Uu3IwhFws4YR0abw2Aw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjIYIwa5aZbUvGjU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUOapQYZcqCjVVUA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjOIJwa5aZbUvGjU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kulim Park" - }, - { - "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUXatQYZcqCjVVUA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Kulim Park" - } - ] - }, - { - "name": "Kumar One", - "fontFamily": "Kumar One, system-ui", - "slug": "kumar-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kumarone/v18/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kumar One" - } - ] - }, - { - "name": "Kumar One Outline", - "fontFamily": "Kumar One Outline, system-ui", - "slug": "kumar-one-outline", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kumar One Outline" - } - ] - }, - { - "name": "Kumbh Sans", - "fontFamily": "Kumbh Sans, sans-serif", - "slug": "kumbh-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZcA8bTuUkqaLg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZYA8bTuUkqaLg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQz5YA8bTuUkqaLg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZYA8bTuUkqaLg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQo5YA8bTuUkqaLg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQT5EA8bTuUkqaLg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQdpEA8bTuUkqaLg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZEA8bTuUkqaLg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - }, - { - "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQOJEA8bTuUkqaLg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Kumbh Sans" - } - ] - }, - { - "name": "Kurale", - "fontFamily": "Kurale, serif", - "slug": "kurale", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/kurale/v11/4iCs6KV9e9dXjho6eAT3v02QFg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Kurale" - } - ] - }, - { - "name": "La Belle Aurore", - "fontFamily": "La Belle Aurore, cursive", - "slug": "la-belle-aurore", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/labelleaurore/v16/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "La Belle Aurore" - } - ] - }, - { - "name": "Labrada", - "fontFamily": "Labrada, serif", - "slug": "labrada", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSgM4QPdUej17.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTSwM4QPdUej17.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9UNSwM4QPdUej17.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSwM4QPdUej17.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VhSwM4QPdUej17.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9WNTAM4QPdUej17.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9W0TAM4QPdUej17.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTTAM4QPdUej17.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9X6TAM4QPdUej17.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt6SvN2fy17-dE.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt7SvN2fy17-dE.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCLV7SvN2fy17-dE.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt7SvN2fy17-dE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCNl7SvN2fy17-dE.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCDV8SvN2fy17-dE.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCAx8SvN2fy17-dE.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt8SvN2fy17-dE.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Labrada" - }, - { - "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCEJ8SvN2fy17-dE.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Labrada" - } - ] - }, - { - "name": "Lacquer", - "fontFamily": "Lacquer, system-ui", - "slug": "lacquer", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lacquer/v15/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lacquer" - } - ] - }, - { - "name": "Laila", - "fontFamily": "Laila, sans-serif", - "slug": "laila", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Laila" - }, - { - "src": "http://fonts.gstatic.com/s/laila/v13/LYjMdG_8nE8jDIRdiidIrEIu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Laila" - }, - { - "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Laila" - }, - { - "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Laila" - }, - { - "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Laila" - } - ] - }, - { - "name": "Lakki Reddy", - "fontFamily": "Lakki Reddy, cursive", - "slug": "lakki-reddy", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lakkireddy/v19/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lakki Reddy" - } - ] - }, - { - "name": "Lalezar", - "fontFamily": "Lalezar, system-ui", - "slug": "lalezar", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lalezar/v14/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lalezar" - } - ] - }, - { - "name": "Lancelot", - "fontFamily": "Lancelot, system-ui", - "slug": "lancelot", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lancelot/v23/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lancelot" - } - ] - }, - { - "name": "Langar", - "fontFamily": "Langar, system-ui", - "slug": "langar", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/langar/v27/kJEyBukW7AIlgjGVrTVZ99sqrQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Langar" - } - ] - }, - { - "name": "Lateef", - "fontFamily": "Lateef, serif", - "slug": "lateef", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0bjygbqTb9nQ-RA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lateef" - }, - { - "src": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0Cj-gbqTb9nQ-RA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lateef" - }, - { - "src": "http://fonts.gstatic.com/s/lateef/v27/hESw6XVnNCxEvkbMpheEZo_H_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lateef" - }, - { - "src": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0Uj6gbqTb9nQ-RA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lateef" - }, - { - "src": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0fjmgbqTb9nQ-RA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lateef" - }, - { - "src": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0GjigbqTb9nQ-RA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lateef" - }, - { - "src": "http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0BjugbqTb9nQ-RA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lateef" - } - ] - }, - { - "name": "Lato", - "fontFamily": "Lato, sans-serif", - "slug": "lato", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lato" - }, - { - "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Lato" - } - ] - }, - { - "name": "Lavishly Yours", - "fontFamily": "Lavishly Yours, cursive", - "slug": "lavishly-yours", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lavishlyyours/v2/jizDREVIvGwH5OjiZmX9r5z_WxUY0TY7ikbI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lavishly Yours" - } - ] - }, - { - "name": "League Gothic", - "fontFamily": "League Gothic, sans-serif", - "slug": "league-gothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/leaguegothic/v6/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_-amidQ6Q9hn.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "League Gothic" - } - ] - }, - { - "name": "League Script", - "fontFamily": "League Script, cursive", - "slug": "league-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/leaguescript/v24/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "League Script" - } - ] - }, - { - "name": "League Spartan", - "fontFamily": "League Spartan, sans-serif", - "slug": "league-spartan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpBMdcFguczA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpBMdcFguczA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpBMdcFguczA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpBMdcFguczA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpBMdcFguczA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpBMdcFguczA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpBMdcFguczA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpBMdcFguczA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "League Spartan" - }, - { - "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpBMdcFguczA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "League Spartan" - } - ] - }, - { - "name": "Leckerli One", - "fontFamily": "Leckerli One, cursive", - "slug": "leckerli-one", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/leckerlione/v16/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Leckerli One" - } - ] - }, - { - "name": "Ledger", - "fontFamily": "Ledger, serif", - "slug": "ledger", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ledger" - } - ] - }, - { - "name": "Lekton", - "fontFamily": "Lekton, sans-serif", - "slug": "lekton", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lekton/v17/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lekton" - }, - { - "src": "http://fonts.gstatic.com/s/lekton/v17/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Lekton" - }, - { - "src": "http://fonts.gstatic.com/s/lekton/v17/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lekton" - } - ] - }, - { - "name": "Lemon", - "fontFamily": "Lemon, system-ui", - "slug": "lemon", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lemon/v15/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lemon" - } - ] - }, - { - "name": "Lemonada", - "fontFamily": "Lemonada, system-ui", - "slug": "lemonada", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2mfWc3Z2pTg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lemonada" - }, - { - "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2mfWc3Z2pTg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lemonada" - }, - { - "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2mfWc3Z2pTg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lemonada" - }, - { - "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2mfWc3Z2pTg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lemonada" - }, - { - "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2mfWc3Z2pTg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lemonada" - } - ] - }, - { - "name": "Lexend", - "fontFamily": "Lexend, sans-serif", - "slug": "lexend", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsX_LBte6KuGEo.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sW_LBte6KuGEo.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LBte6KuGEo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LBte6KuGEo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend" - }, - { - "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC5IR_LBte6KuGEo.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend" - } - ] - }, - { - "name": "Lexend Deca", - "fontFamily": "Lexend Deca, sans-serif", - "slug": "lexend-deca", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48MxArBPCqLNflg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cM1ArBPCqLNflg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4rs1ArBPCqLNflg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1ArBPCqLNflg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1ArBPCqLNflg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4LspArBPCqLNflg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4F8pArBPCqLNflg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cMpArBPCqLNflg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - }, - { - "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4WcpArBPCqLNflg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Deca" - } - ] - }, - { - "name": "Lexend Exa", - "fontFamily": "Lexend Exa, sans-serif", - "slug": "lexend-exa", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - }, - { - "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Exa" - } - ] - }, - { - "name": "Lexend Giga", - "fontFamily": "Lexend Giga, sans-serif", - "slug": "lexend-giga", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LmE68oo6eepYQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWLiE68oo6eepYQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRChriE68oo6eepYQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LiE68oo6eepYQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC6riE68oo6eepYQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCBr-E68oo6eepYQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCP7-E68oo6eepYQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWL-E68oo6eepYQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - }, - { - "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCcb-E68oo6eepYQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Giga" - } - ] - }, - { - "name": "Lexend Mega", - "fontFamily": "Lexend Mega, sans-serif", - "slug": "lexend-mega", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fivveyiq9EqQw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcfmvveyiq9EqQw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLr_mvveyiq9EqQw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmvveyiq9EqQw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLw_mvveyiq9EqQw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLL_6vveyiq9EqQw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLFv6vveyiq9EqQw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vveyiq9EqQw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - }, - { - "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLWP6vveyiq9EqQw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Mega" - } - ] - }, - { - "name": "Lexend Peta", - "fontFamily": "Lexend Peta, sans-serif", - "slug": "lexend-peta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SFyW1YuRTsnfw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSByW1YuRTsnfw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRtyByW1YuRTsnfw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SByW1YuRTsnfw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR2yByW1YuRTsnfw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRNydyW1YuRTsnfw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRDidyW1YuRTsnfw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSdyW1YuRTsnfw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRQCdyW1YuRTsnfw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Peta" - } - ] - }, - { - "name": "Lexend Tera", - "fontFamily": "Lexend Tera, sans-serif", - "slug": "lexend-tera", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zITdpz0fYxcrQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzMTdpz0fYxcrQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMuTMTdpz0fYxcrQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMTdpz0fYxcrQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM1TMTdpz0fYxcrQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMOTQTdpz0fYxcrQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMADQTdpz0fYxcrQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzQTdpz0fYxcrQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - }, - { - "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMTjQTdpz0fYxcrQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Tera" - } - ] - }, - { - "name": "Lexend Zetta", - "fontFamily": "Lexend Zetta, sans-serif", - "slug": "lexend-zetta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bH0z5jbs8qbts.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bG0z5jbs8qbts.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0z5jbs8qbts.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG0z5jbs8qbts.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy-TG0z5jbs8qbts.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCywjB0z5jbs8qbts.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCyzHB0z5jbs8qbts.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - }, - { - "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy3_B0z5jbs8qbts.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Lexend Zetta" - } - ] - }, - { - "name": "Libre Barcode 128", - "fontFamily": "Libre Barcode 128, system-ui", - "slug": "libre-barcode-128", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebarcode128/v26/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 128" - } - ] - }, - { - "name": "Libre Barcode 128 Text", - "fontFamily": "Libre Barcode 128 Text, system-ui", - "slug": "libre-barcode-128-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebarcode128text/v26/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 128 Text" - } - ] - }, - { - "name": "Libre Barcode 39", - "fontFamily": "Libre Barcode 39, system-ui", - "slug": "libre-barcode-39", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebarcode39/v19/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 39" - } - ] - }, - { - "name": "Libre Barcode 39 Extended", - "fontFamily": "Libre Barcode 39 Extended, system-ui", - "slug": "libre-barcode-39-extended", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebarcode39extended/v25/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 39 Extended" - } - ] - }, - { - "name": "Libre Barcode 39 Extended Text", - "fontFamily": "Libre Barcode 39 Extended Text, system-ui", - "slug": "libre-barcode-39-extended-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebarcode39extendedtext/v25/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 39 Extended Text" - } - ] - }, - { - "name": "Libre Barcode 39 Text", - "fontFamily": "Libre Barcode 39 Text, system-ui", - "slug": "libre-barcode-39-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebarcode39text/v26/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode 39 Text" - } - ] - }, - { - "name": "Libre Barcode EAN13 Text", - "fontFamily": "Libre Barcode EAN13 Text, system-ui", - "slug": "libre-barcode-ean13-text", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebarcodeean13text/v19/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Barcode EAN13 Text" - } - ] - }, - { - "name": "Libre Baskerville", - "fontFamily": "Libre Baskerville, serif", - "slug": "libre-baskerville", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Baskerville" - }, - { - "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Libre Baskerville" - }, - { - "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Libre Baskerville" - } - ] - }, - { - "name": "Libre Bodoni", - "fontFamily": "Libre Bodoni, serif", - "slug": "libre-bodoni", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6I1fwWzZcOb3U3s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Bodoni" - }, - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6L9fwWzZcOb3U3s.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Libre Bodoni" - }, - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6FNYwWzZcOb3U3s.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Libre Bodoni" - }, - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6GpYwWzZcOb3U3s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Libre Bodoni" - }, - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcKS_TdMTyQ3syLg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Libre Bodoni" - }, - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcGy_TdMTyQ3syLg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Libre Bodoni" - }, - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUc9yjTdMTyQ3syLg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Libre Bodoni" - }, - { - "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUczijTdMTyQ3syLg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Libre Bodoni" - } - ] - }, - { - "name": "Libre Caslon Display", - "fontFamily": "Libre Caslon Display, serif", - "slug": "libre-caslon-display", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librecaslondisplay/v14/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Caslon Display" - } - ] - }, - { - "name": "Libre Caslon Text", - "fontFamily": "Libre Caslon Text, serif", - "slug": "libre-caslon-text", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Caslon Text" - }, - { - "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Libre Caslon Text" - }, - { - "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Libre Caslon Text" - } - ] - }, - { - "name": "Libre Franklin", - "fontFamily": "Libre Franklin, sans-serif", - "slug": "libre-franklin", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsSUB9rIb-JH1g.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsWUB9rIb-JH1g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWUB9rIb-JH1g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWUB9rIb-JH1g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWUB9rIb-JH1g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKUB9rIb-JH1g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKUB9rIb-JH1g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKUB9rIb-JH1g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KUB9rIb-JH1g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RdDMTedX1sGE.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8RNDMTedX1sGE.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oYiRNDMTedX1sGE.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RNDMTedX1sGE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZORNDMTedX1sGE.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oaiQ9DMTedX1sGE.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oabQ9DMTedX1sGE.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8Q9DMTedX1sGE.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - }, - { - "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05obVQ9DMTedX1sGE.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Libre Franklin" - } - ] - }, - { - "name": "Licorice", - "fontFamily": "Licorice, cursive", - "slug": "licorice", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/licorice/v3/t5tjIR8TMomTCAyjNk23hqLgzCHu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Licorice" - } - ] - }, - { - "name": "Life Savers", - "fontFamily": "Life Savers, system-ui", - "slug": "life-savers", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Life Savers" - }, - { - "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Life Savers" - }, - { - "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Life Savers" - } - ] - }, - { - "name": "Lilita One", - "fontFamily": "Lilita One, system-ui", - "slug": "lilita-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lilitaone/v13/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lilita One" - } - ] - }, - { - "name": "Lily Script One", - "fontFamily": "Lily Script One, system-ui", - "slug": "lily-script-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lily Script One" - } - ] - }, - { - "name": "Limelight", - "fontFamily": "Limelight, system-ui", - "slug": "limelight", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/limelight/v17/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Limelight" - } - ] - }, - { - "name": "Linden Hill", - "fontFamily": "Linden Hill, serif", - "slug": "linden-hill", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lindenhill/v22/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Linden Hill" - }, - { - "src": "http://fonts.gstatic.com/s/lindenhill/v22/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Linden Hill" - } - ] - }, - { - "name": "Literata", - "fontFamily": "Literata, serif", - "slug": "literata", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG_F_bcTWCWp8g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbE-_F_bcTWCWp8g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_F_bcTWCWp8g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbCO_F_bcTWCWp8g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbM-4F_bcTWCWp8g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbPa4F_bcTWCWp8g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG4F_bcTWCWp8g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbLi4F_bcTWCWp8g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7XWSUKTt8iVow.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8obXWSUKTt8iVow.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8_7XWSUKTt8iVow.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8zbXWSUKTt8iVow.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8IbLWSUKTt8iVow.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8GLLWSUKTt8iVow.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7LWSUKTt8iVow.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Literata" - }, - { - "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8VrLWSUKTt8iVow.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Literata" - } - ] - }, - { - "name": "Liu Jian Mao Cao", - "fontFamily": "Liu Jian Mao Cao, cursive", - "slug": "liu-jian-mao-cao", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/liujianmaocao/v15/~ChIKEExpdSBKaWFuIE1hbyBDYW8gACoECAEYAQ==.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Liu Jian Mao Cao" - } - ] - }, - { - "name": "Livvic", - "fontFamily": "Livvic, sans-serif", - "slug": "livvic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Livvic" - }, - { - "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Livvic" - } - ] - }, - { - "name": "Lobster", - "fontFamily": "Lobster, system-ui", - "slug": "lobster", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lobster/v28/neILzCirqoswsqX9_oWsMqEzSJQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lobster" - } - ] - }, - { - "name": "Lobster Two", - "fontFamily": "Lobster Two, system-ui", - "slug": "lobster-two", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lobster Two" - }, - { - "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Lobster Two" - }, - { - "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lobster Two" - }, - { - "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Lobster Two" - } - ] - }, - { - "name": "Londrina Outline", - "fontFamily": "Londrina Outline, system-ui", - "slug": "londrina-outline", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/londrinaoutline/v23/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Londrina Outline" - } - ] - }, - { - "name": "Londrina Shadow", - "fontFamily": "Londrina Shadow, system-ui", - "slug": "londrina-shadow", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/londrinashadow/v22/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Londrina Shadow" - } - ] - }, - { - "name": "Londrina Sketch", - "fontFamily": "Londrina Sketch, system-ui", - "slug": "londrina-sketch", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/londrinasketch/v21/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Londrina Sketch" - } - ] - }, - { - "name": "Londrina Solid", - "fontFamily": "Londrina Solid, system-ui", - "slug": "londrina-solid", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Londrina Solid" - }, - { - "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Londrina Solid" - }, - { - "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Londrina Solid" - }, - { - "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Londrina Solid" - } - ] - }, - { - "name": "Long Cang", - "fontFamily": "Long Cang, cursive", - "slug": "long-cang", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/longcang/v17/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Long Cang" - } - ] - }, - { - "name": "Lora", - "fontFamily": "Lora, serif", - "slug": "lora", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuyJGmKxemMeZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lora" - }, - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJGmKxemMeZ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Lora" - }, - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJGmKxemMeZ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Lora" - }, - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJGmKxemMeZ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lora" - }, - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqh8ndeZzZ0.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Lora" - }, - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqh8ndeZzZ0.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Lora" - }, - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqh8ndeZzZ0.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Lora" - }, - { - "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqh8ndeZzZ0.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Lora" - } - ] - }, - { - "name": "Love Light", - "fontFamily": "Love Light, cursive", - "slug": "love-light", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lovelight/v3/t5tlIR0TNJyZWimpNAXDjKbCyTHuspo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Love Light" - } - ] - }, - { - "name": "Love Ya Like A Sister", - "fontFamily": "Love Ya Like A Sister, system-ui", - "slug": "love-ya-like-a-sister", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/loveyalikeasister/v16/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Love Ya Like A Sister" - } - ] - }, - { - "name": "Loved by the King", - "fontFamily": "Loved by the King, cursive", - "slug": "loved-by-the-king", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lovedbytheking/v17/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Loved by the King" - } - ] - }, - { - "name": "Lovers Quarrel", - "fontFamily": "Lovers Quarrel, cursive", - "slug": "lovers-quarrel", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/loversquarrel/v21/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lovers Quarrel" - } - ] - }, - { - "name": "Luckiest Guy", - "fontFamily": "Luckiest Guy, system-ui", - "slug": "luckiest-guy", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/luckiestguy/v18/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Luckiest Guy" - } - ] - }, - { - "name": "Lusitana", - "fontFamily": "Lusitana, serif", - "slug": "lusitana", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lusitana" - }, - { - "src": "http://fonts.gstatic.com/s/lusitana/v13/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Lusitana" - } - ] - }, - { - "name": "Lustria", - "fontFamily": "Lustria, serif", - "slug": "lustria", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Lustria" - } - ] - }, - { - "name": "Luxurious Roman", - "fontFamily": "Luxurious Roman, system-ui", - "slug": "luxurious-roman", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/luxuriousroman/v4/buEupou_ZcP1w0yTKxJJokVSmbpqYgckeo9RMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Luxurious Roman" - } - ] - }, - { - "name": "Luxurious Script", - "fontFamily": "Luxurious Script, cursive", - "slug": "luxurious-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/luxuriousscript/v5/ahcCv9e7yydulT32KZ0rBIoD7DzMg0rOby1JtYk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Luxurious Script" - } - ] - }, - { - "name": "M PLUS 1", - "fontFamily": "M PLUS 1, sans-serif", - "slug": "m-plus-1", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSe78nZcsGGycA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51Sa78nZcsGGycA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Cya78nZcsGGycA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSa78nZcsGGycA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Zya78nZcsGGycA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5iyG78nZcsGGycA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5siG78nZcsGGycA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51SG78nZcsGGycA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5_CG78nZcsGGycA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "M PLUS 1" - } - ] - }, - { - "name": "M PLUS 1 Code", - "fontFamily": "M PLUS 1 Code, sans-serif", - "slug": "m-plus-1-code", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0XHpapwmdZhY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7gN0HHpapwmdZhY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7jT0HHpapwmdZhY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0HHpapwmdZhY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7i_0HHpapwmdZhY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hT13HpapwmdZhY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hq13HpapwmdZhY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS 1 Code" - } - ] - }, - { - "name": "M PLUS 1p", - "fontFamily": "M PLUS 1p, sans-serif", - "slug": "m-plus-1p", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p" - }, - { - "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "M PLUS 1p" - } - ] - }, - { - "name": "M PLUS 2", - "fontFamily": "M PLUS 2, sans-serif", - "slug": "m-plus-2", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa-VxlqHrzNgAw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwua6VxlqHrzNgAw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwZ66VxlqHrzNgAw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6VxlqHrzNgAw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwC66VxlqHrzNgAw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw56mVxlqHrzNgAw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw3qmVxlqHrzNgAw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwuamVxlqHrzNgAw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - }, - { - "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwkKmVxlqHrzNgAw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "M PLUS 2" - } - ] - }, - { - "name": "M PLUS Code Latin", - "fontFamily": "M PLUS Code Latin, sans-serif", - "slug": "m-plus-code-latin", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbB6i5MqF9TRwg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin" - }, - { - "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1MbA6i5MqF9TRwg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin" - }, - { - "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1BjA6i5MqF9TRwg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin" - }, - { - "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA6i5MqF9TRwg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin" - }, - { - "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1HTA6i5MqF9TRwg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin" - }, - { - "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1JjH6i5MqF9TRwg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin" - }, - { - "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1KHH6i5MqF9TRwg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS Code Latin" - } - ] - }, - { - "name": "M PLUS Rounded 1c", - "fontFamily": "M PLUS Rounded 1c, sans-serif", - "slug": "m-plus-rounded-1c", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c" - }, - { - "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c" - }, - { - "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c" - }, - { - "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c" - }, - { - "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c" - }, - { - "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c" - }, - { - "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "M PLUS Rounded 1c" - } - ] - }, - { - "name": "Ma Shan Zheng", - "fontFamily": "Ma Shan Zheng, cursive", - "slug": "ma-shan-zheng", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mashanzheng/v10/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ma Shan Zheng" - } - ] - }, - { - "name": "Macondo", - "fontFamily": "Macondo, system-ui", - "slug": "macondo", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/macondo/v21/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Macondo" - } - ] - }, - { - "name": "Macondo Swash Caps", - "fontFamily": "Macondo Swash Caps, system-ui", - "slug": "macondo-swash-caps", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/macondoswashcaps/v20/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Macondo Swash Caps" - } - ] - }, - { - "name": "Mada", - "fontFamily": "Mada, sans-serif", - "slug": "mada", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdf3nCCL8zkwMIFg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mada" - }, - { - "src": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdZnkCCL8zkwMIFg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mada" - }, - { - "src": "http://fonts.gstatic.com/s/mada/v18/7Auwp_0qnzeSTTXMLCrX0kU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mada" - }, - { - "src": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdcHlCCL8zkwMIFg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mada" - }, - { - "src": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSde3iCCL8zkwMIFg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mada" - }, - { - "src": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdYnjCCL8zkwMIFg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mada" - }, - { - "src": "http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdbHhCCL8zkwMIFg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Mada" - } - ] - }, - { - "name": "Magra", - "fontFamily": "Magra, sans-serif", - "slug": "magra", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/magra/v14/uK_94ruaZus72k5xIDMfO-ed.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Magra" - }, - { - "src": "http://fonts.gstatic.com/s/magra/v14/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Magra" - } - ] - }, - { - "name": "Maiden Orange", - "fontFamily": "Maiden Orange, system-ui", - "slug": "maiden-orange", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/maidenorange/v25/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Maiden Orange" - } - ] - }, - { - "name": "Maitree", - "fontFamily": "Maitree, serif", - "slug": "maitree", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Maitree" - }, - { - "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Maitree" - }, - { - "src": "http://fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Maitree" - }, - { - "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Maitree" - }, - { - "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Maitree" - }, - { - "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Maitree" - } - ] - }, - { - "name": "Major Mono Display", - "fontFamily": "Major Mono Display, monospace", - "slug": "major-mono-display", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/majormonodisplay/v13/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Major Mono Display" - } - ] - }, - { - "name": "Mako", - "fontFamily": "Mako, sans-serif", - "slug": "mako", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mako/v18/H4coBX6Mmc_Z0ST09g478Lo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mako" - } - ] - }, - { - "name": "Mali", - "fontFamily": "Mali, cursive", - "slug": "mali", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0ba2SRONuN4eCrODlxxOd8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bU2SRONuN4SCjECn50Kd_PmA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mali" - }, - { - "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Mali" - } - ] - }, - { - "name": "Mallanna", - "fontFamily": "Mallanna, sans-serif", - "slug": "mallanna", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mallanna/v13/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mallanna" - } - ] - }, - { - "name": "Mandali", - "fontFamily": "Mandali, sans-serif", - "slug": "mandali", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mandali/v14/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mandali" - } - ] - }, - { - "name": "Manjari", - "fontFamily": "Manjari, sans-serif", - "slug": "manjari", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/manjari/v9/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Manjari" - }, - { - "src": "http://fonts.gstatic.com/s/manjari/v9/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Manjari" - }, - { - "src": "http://fonts.gstatic.com/s/manjari/v9/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Manjari" - } - ] - }, - { - "name": "Manrope", - "fontFamily": "Manrope, sans-serif", - "slug": "manrope", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Manrope" - }, - { - "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F87jxeN7B.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Manrope" - }, - { - "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F87jxeN7B.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Manrope" - }, - { - "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Manrope" - }, - { - "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Manrope" - }, - { - "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Manrope" - }, - { - "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Manrope" - } - ] - }, - { - "name": "Mansalva", - "fontFamily": "Mansalva, cursive", - "slug": "mansalva", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mansalva/v12/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mansalva" - } - ] - }, - { - "name": "Manuale", - "fontFamily": "Manuale, serif", - "slug": "manuale", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeG6e7wD1TB_JHHY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wD1TB_JHHY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wD1TB_JHHY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwD1TB_JHHY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwD1TB_JHHY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeFkfLwD1TB_JHHY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOApA3zRdIWHYr8M.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zRdIWHYr8M.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zRdIWHYr8M.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zRdIWHYr8M.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zRdIWHYr8M.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Manuale" - }, - { - "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsONRH3zRdIWHYr8M.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Manuale" - } - ] - }, - { - "name": "Marcellus", - "fontFamily": "Marcellus, serif", - "slug": "marcellus", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marcellus" - } - ] - }, - { - "name": "Marcellus SC", - "fontFamily": "Marcellus SC, serif", - "slug": "marcellus-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marcellus SC" - } - ] - }, - { - "name": "Marck Script", - "fontFamily": "Marck Script, cursive", - "slug": "marck-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/marckscript/v17/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marck Script" - } - ] - }, - { - "name": "Margarine", - "fontFamily": "Margarine, system-ui", - "slug": "margarine", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/margarine/v22/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Margarine" - } - ] - }, - { - "name": "Marhey", - "fontFamily": "Marhey, system-ui", - "slug": "marhey", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBZVwO2cXiGevOMw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Marhey" - }, - { - "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBctwO2cXiGevOMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marhey" - }, - { - "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBflwO2cXiGevOMw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Marhey" - }, - { - "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBRV3O2cXiGevOMw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Marhey" - }, - { - "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBSx3O2cXiGevOMw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Marhey" - } - ] - }, - { - "name": "Markazi Text", - "fontFamily": "Markazi Text, serif", - "slug": "markazi-text", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Markazi Text" - }, - { - "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Markazi Text" - }, - { - "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Markazi Text" - }, - { - "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Markazi Text" - } - ] - }, - { - "name": "Marko One", - "fontFamily": "Marko One, serif", - "slug": "marko-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/markoone/v22/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marko One" - } - ] - }, - { - "name": "Marmelad", - "fontFamily": "Marmelad, sans-serif", - "slug": "marmelad", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/marmelad/v18/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marmelad" - } - ] - }, - { - "name": "Martel", - "fontFamily": "Martel, serif", - "slug": "martel", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Martel" - }, - { - "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Martel" - }, - { - "src": "http://fonts.gstatic.com/s/martel/v10/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Martel" - }, - { - "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Martel" - }, - { - "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Martel" - }, - { - "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Martel" - }, - { - "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Martel" - } - ] - }, - { - "name": "Martel Sans", - "fontFamily": "Martel Sans, sans-serif", - "slug": "martel-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Martel Sans" - }, - { - "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Martel Sans" - }, - { - "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Martel Sans" - }, - { - "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Martel Sans" - }, - { - "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Martel Sans" - }, - { - "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Martel Sans" - }, - { - "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Martel Sans" - } - ] - }, - { - "name": "Martian Mono", - "fontFamily": "Martian Mono, monospace", - "slug": "martian-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qus6WD75kdpF2.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - }, - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qu86WD75kdpF2.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - }, - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY00u86WD75kdpF2.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - }, - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qu86WD75kdpF2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - }, - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1Yu86WD75kdpF2.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - }, - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY20vM6WD75kdpF2.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - }, - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY2NvM6WD75kdpF2.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - }, - { - "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qvM6WD75kdpF2.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Martian Mono" - } - ] - }, - { - "name": "Marvel", - "fontFamily": "Marvel, sans-serif", - "slug": "marvel", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/marvel/v14/nwpVtKeoNgBV0qaIkV7ED366zg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Marvel" - }, - { - "src": "http://fonts.gstatic.com/s/marvel/v14/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Marvel" - }, - { - "src": "http://fonts.gstatic.com/s/marvel/v14/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Marvel" - }, - { - "src": "http://fonts.gstatic.com/s/marvel/v14/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Marvel" - } - ] - }, - { - "name": "Mate", - "fontFamily": "Mate, serif", - "slug": "mate", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mate/v15/m8JdjftRd7WZ2z28WoXSaLU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mate" - }, - { - "src": "http://fonts.gstatic.com/s/mate/v15/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Mate" - } - ] - }, - { - "name": "Mate SC", - "fontFamily": "Mate SC, serif", - "slug": "mate-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/matesc/v22/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mate SC" - } - ] - }, - { - "name": "Material Icons", - "fontFamily": "Material Icons, monospace", - "slug": "material-icons", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNZIhI8tIHh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons" - } - ] - }, - { - "name": "Material Icons Outlined", - "fontFamily": "Material Icons Outlined, monospace", - "slug": "material-icons-outlined", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUcdl5GuI2Ze.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons Outlined" - } - ] - }, - { - "name": "Material Icons Round", - "fontFamily": "Material Icons Round, monospace", - "slug": "material-icons-round", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialiconsround/v108/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmMq_fTTvg-.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons Round" - } - ] - }, - { - "name": "Material Icons Sharp", - "fontFamily": "Material Icons Sharp, monospace", - "slug": "material-icons-sharp", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialiconssharp/v109/oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvmvSImEyc0vd.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons Sharp" - } - ] - }, - { - "name": "Material Icons Two Tone", - "fontFamily": "Material Icons Two Tone, monospace", - "slug": "material-icons-two-tone", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialiconstwotone/v112/hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNCu3NjDrH_77.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Icons Two Tone" - } - ] - }, - { - "name": "Material Symbols Outlined", - "fontFamily": "Material Symbols Outlined, monospace", - "slug": "material-symbols-outlined", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHeembd5zrTgt.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDAvHOembd5zrTgt.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDDxHOembd5zrTgt.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOembd5zrTgt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCdHOembd5zrTgt.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBxG-embd5zrTgt.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBIG-embd5zrTgt.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Material Symbols Outlined" - } - ] - }, - { - "name": "Material Symbols Rounded", - "fontFamily": "Material Symbols Rounded, monospace", - "slug": "material-symbols-rounded", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIekXxKJKJBjAa8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rAelXxKJKJBjAa8.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rNmlXxKJKJBjAa8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIelXxKJKJBjAa8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rLWlXxKJKJBjAa8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rFmiXxKJKJBjAa8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v109/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rGCiXxKJKJBjAa8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Material Symbols Rounded" - } - ] - }, - { - "name": "Material Symbols Sharp", - "fontFamily": "Material Symbols Sharp, monospace", - "slug": "material-symbols-sharp", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLozCOJ1H7-knk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxMLojCOJ1H7-knk.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxPVojCOJ1H7-knk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLojCOJ1H7-knk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxO5ojCOJ1H7-knk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNVpTCOJ1H7-knk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp" - }, - { - "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v106/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNspTCOJ1H7-knk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Material Symbols Sharp" - } - ] - }, - { - "name": "Maven Pro", - "fontFamily": "Maven Pro, sans-serif", - "slug": "maven-pro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nCpozp5GvU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Maven Pro" - }, - { - "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nCpozp5GvU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Maven Pro" - }, - { - "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nCpozp5GvU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Maven Pro" - }, - { - "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nCpozp5GvU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Maven Pro" - }, - { - "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nCpozp5GvU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Maven Pro" - }, - { - "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nCpozp5GvU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Maven Pro" - } - ] - }, - { - "name": "McLaren", - "fontFamily": "McLaren, system-ui", - "slug": "mclaren", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mclaren/v14/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "McLaren" - } - ] - }, - { - "name": "Mea Culpa", - "fontFamily": "Mea Culpa, cursive", - "slug": "mea-culpa", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/meaculpa/v3/AMOTz4GcuWbEIuza8jsZms0QW3mqyg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mea Culpa" - } - ] - }, - { - "name": "Meddon", - "fontFamily": "Meddon, cursive", - "slug": "meddon", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/meddon/v20/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Meddon" - } - ] - }, - { - "name": "MedievalSharp", - "fontFamily": "MedievalSharp, system-ui", - "slug": "medievalsharp", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/medievalsharp/v24/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "MedievalSharp" - } - ] - }, - { - "name": "Medula One", - "fontFamily": "Medula One, system-ui", - "slug": "medula-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Medula One" - } - ] - }, - { - "name": "Meera Inimai", - "fontFamily": "Meera Inimai, sans-serif", - "slug": "meera-inimai", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/meerainimai/v12/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Meera Inimai" - } - ] - }, - { - "name": "Megrim", - "fontFamily": "Megrim, system-ui", - "slug": "megrim", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/megrim/v16/46kulbz5WjvLqJZlbWXgd0RY1g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Megrim" - } - ] - }, - { - "name": "Meie Script", - "fontFamily": "Meie Script, cursive", - "slug": "meie-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Meie Script" - } - ] - }, - { - "name": "Meow Script", - "fontFamily": "Meow Script, cursive", - "slug": "meow-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/meowscript/v5/0FlQVPqanlaJrtr8AnJ0ESch0_0CfDf1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Meow Script" - } - ] - }, - { - "name": "Merienda", - "fontFamily": "Merienda, cursive", - "slug": "merienda", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5JHhoSU78QGBV0A.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Merienda" - }, - { - "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5enhoSU78QGBV0A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Merienda" - }, - { - "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5SHhoSU78QGBV0A.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Merienda" - }, - { - "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5pH9oSU78QGBV0A.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Merienda" - }, - { - "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5nX9oSU78QGBV0A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Merienda" - }, - { - "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5-n9oSU78QGBV0A.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Merienda" - }, - { - "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5039oSU78QGBV0A.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Merienda" - } - ] - }, - { - "name": "Merriweather", - "fontFamily": "Merriweather, serif", - "slug": "merriweather", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Merriweather" - }, - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Merriweather" - }, - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Merriweather" - }, - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Merriweather" - }, - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Merriweather" - }, - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Merriweather" - }, - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Merriweather" - }, - { - "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Merriweather" - } - ] - }, - { - "name": "Merriweather Sans", - "fontFamily": "Merriweather Sans, sans-serif", - "slug": "merriweather-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ljuEG7xFHnQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ljuEG7xFHnQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ljuEG7xFHnQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkljuEG7xFHnQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekljuEG7xFHnQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukljuEG7xFHnQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzesCzRRXnaur.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzesCzRRXnaur.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zesCzRRXnaur.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TyusCzRRXnaur.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qyusCzRRXnaur.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans" - }, - { - "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NyusCzRRXnaur.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Merriweather Sans" - } - ] - }, - { - "name": "Metal", - "fontFamily": "Metal, system-ui", - "slug": "metal", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/metal/v28/lW-wwjUJIXTo7i3nnoQAUdN2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Metal" - } - ] - }, - { - "name": "Metal Mania", - "fontFamily": "Metal Mania, system-ui", - "slug": "metal-mania", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Metal Mania" - } - ] - }, - { - "name": "Metamorphous", - "fontFamily": "Metamorphous, system-ui", - "slug": "metamorphous", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/metamorphous/v18/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Metamorphous" - } - ] - }, - { - "name": "Metrophobic", - "fontFamily": "Metrophobic, sans-serif", - "slug": "metrophobic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/metrophobic/v23/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Metrophobic" - } - ] - }, - { - "name": "Michroma", - "fontFamily": "Michroma, sans-serif", - "slug": "michroma", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/michroma/v16/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Michroma" - } - ] - }, - { - "name": "Milonga", - "fontFamily": "Milonga, system-ui", - "slug": "milonga", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/milonga/v20/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Milonga" - } - ] - }, - { - "name": "Miltonian", - "fontFamily": "Miltonian, system-ui", - "slug": "miltonian", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/miltonian/v26/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miltonian" - } - ] - }, - { - "name": "Miltonian Tattoo", - "fontFamily": "Miltonian Tattoo, system-ui", - "slug": "miltonian-tattoo", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/miltoniantattoo/v28/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miltonian Tattoo" - } - ] - }, - { - "name": "Mina", - "fontFamily": "Mina, sans-serif", - "slug": "mina", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mina/v11/-nFzOGc18vARrz9j7i3y65o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mina" - }, - { - "src": "http://fonts.gstatic.com/s/mina/v11/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mina" - } - ] - }, - { - "name": "Mingzat", - "fontFamily": "Mingzat, sans-serif", - "slug": "mingzat", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mingzat/v5/0QIgMX5C-o-oWWyvBttkm_mv670.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mingzat" - } - ] - }, - { - "name": "Miniver", - "fontFamily": "Miniver, system-ui", - "slug": "miniver", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/miniver/v21/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miniver" - } - ] - }, - { - "name": "Miriam Libre", - "fontFamily": "Miriam Libre, sans-serif", - "slug": "miriam-libre", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/miriamlibre/v14/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miriam Libre" - }, - { - "src": "http://fonts.gstatic.com/s/miriamlibre/v14/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Miriam Libre" - } - ] - }, - { - "name": "Mirza", - "fontFamily": "Mirza, system-ui", - "slug": "mirza", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mirza/v15/co3ImWlikiN5EurdKMewsrvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mirza" - }, - { - "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIpAeO4mafBomDi.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mirza" - }, - { - "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIFBuO4mafBomDi.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mirza" - }, - { - "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtJhB-O4mafBomDi.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mirza" - } - ] - }, - { - "name": "Miss Fajardose", - "fontFamily": "Miss Fajardose, cursive", - "slug": "miss-fajardose", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Miss Fajardose" - } - ] - }, - { - "name": "Mitr", - "fontFamily": "Mitr, sans-serif", - "slug": "mitr", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mitr" - }, - { - "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mitr" - }, - { - "src": "http://fonts.gstatic.com/s/mitr/v11/pxiLypw5ucZFyTsyMJj_b1o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mitr" - }, - { - "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mitr" - }, - { - "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mitr" - }, - { - "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mitr" - } - ] - }, - { - "name": "Mochiy Pop One", - "fontFamily": "Mochiy Pop One, sans-serif", - "slug": "mochiy-pop-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mochiypopone/v7/QdVPSTA9Jh-gg-5XZP2UmU4O9kwwD3s6ZKAi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mochiy Pop One" - } - ] - }, - { - "name": "Mochiy Pop P One", - "fontFamily": "Mochiy Pop P One, sans-serif", - "slug": "mochiy-pop-p-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mochiypoppone/v7/Ktk2AKuPeY_td1-h9LayHYWCjAqyN4O3WYZB_sU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mochiy Pop P One" - } - ] - }, - { - "name": "Modak", - "fontFamily": "Modak, system-ui", - "slug": "modak", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/modak/v18/EJRYQgs1XtIEsnMH8BVZ76KU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Modak" - } - ] - }, - { - "name": "Modern Antiqua", - "fontFamily": "Modern Antiqua, system-ui", - "slug": "modern-antiqua", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/modernantiqua/v22/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Modern Antiqua" - } - ] - }, - { - "name": "Mogra", - "fontFamily": "Mogra, system-ui", - "slug": "mogra", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mogra/v19/f0X40eSs8c95TBo4DvLmxtnG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mogra" - } - ] - }, - { - "name": "Mohave", - "fontFamily": "Mohave, sans-serif", - "slug": "mohave", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdif_HvCQopLSvBk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_HvCQopLSvBk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdkv_HvCQopLSvBk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdqf4HvCQopLSvBk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdp74HvCQopLSvBk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8qLOaprDXrBlSVw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G89rOaprDXrBlSVw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8xLOaprDXrBlSVw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8KLSaprDXrBlSVw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Mohave" - }, - { - "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8EbSaprDXrBlSVw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Mohave" - } - ] - }, - { - "name": "Molengo", - "fontFamily": "Molengo, sans-serif", - "slug": "molengo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Molengo" - } - ] - }, - { - "name": "Molle", - "fontFamily": "Molle, cursive", - "slug": "molle", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/molle/v21/E21n_dL5hOXFhWEsXzgmVydREus.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Molle" - } - ] - }, - { - "name": "Monda", - "fontFamily": "Monda, sans-serif", - "slug": "monda", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/monda/v16/TK3tWkYFABsmjvpmNBsLvPdG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Monda" - }, - { - "src": "http://fonts.gstatic.com/s/monda/v16/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Monda" - } - ] - }, - { - "name": "Monofett", - "fontFamily": "Monofett, system-ui", - "slug": "monofett", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/monofett/v22/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Monofett" - } - ] - }, - { - "name": "Monoton", - "fontFamily": "Monoton, system-ui", - "slug": "monoton", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/monoton/v15/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Monoton" - } - ] - }, - { - "name": "Monsieur La Doulaise", - "fontFamily": "Monsieur La Doulaise, cursive", - "slug": "monsieur-la-doulaise", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/monsieurladoulaise/v15/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Monsieur La Doulaise" - } - ] - }, - { - "name": "Montaga", - "fontFamily": "Montaga, serif", - "slug": "montaga", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montaga" - } - ] - }, - { - "name": "Montagu Slab", - "fontFamily": "Montagu Slab, serif", - "slug": "montagu-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbE3P9Fs7bOSO7.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Montagu Slab" - }, - { - "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkBbEnP9Fs7bOSO7.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Montagu Slab" - }, - { - "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkCFEnP9Fs7bOSO7.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Montagu Slab" - }, - { - "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEnP9Fs7bOSO7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montagu Slab" - }, - { - "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDpEnP9Fs7bOSO7.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Montagu Slab" - }, - { - "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkAFFXP9Fs7bOSO7.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Montagu Slab" - }, - { - "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkA8FXP9Fs7bOSO7.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Montagu Slab" - } - ] - }, - { - "name": "MonteCarlo", - "fontFamily": "MonteCarlo, cursive", - "slug": "montecarlo", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/montecarlo/v8/buEzpo6-f9X01GadLA0G0CoV_NxLeiw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "MonteCarlo" - } - ] - }, - { - "name": "Montez", - "fontFamily": "Montez, cursive", - "slug": "montez", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/montez/v18/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montez" - } - ] - }, - { - "name": "Montserrat", - "fontFamily": "Montserrat, sans-serif", - "slug": "montserrat", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-Y3tcoqK5.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-Y3tcoqK5.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-Y3tcoqK5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-Y3tcoqK5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-Y3tcoqK5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-Y3tcoqK5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-Y3tcoqK5.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w-Y3tcoqK5.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aX9-p7K5ILg.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aX9-p7K5ILg.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aX9-p7K5ILg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aX9-p7K5ILg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aX9-p7K5ILg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aX9-p7K5ILg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aX9-p7K5ILg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aX9-p7K5ILg.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Montserrat" - }, - { - "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aX9-p7K5ILg.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Montserrat" - } - ] - }, - { - "name": "Montserrat Alternates", - "fontFamily": "Montserrat Alternates, sans-serif", - "slug": "montserrat-alternates", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Montserrat Alternates" - }, - { - "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Montserrat Alternates" - } - ] - }, - { - "name": "Montserrat Subrayada", - "fontFamily": "Montserrat Subrayada, sans-serif", - "slug": "montserrat-subrayada", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Montserrat Subrayada" - }, - { - "src": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Montserrat Subrayada" - } - ] - }, - { - "name": "Moo Lah Lah", - "fontFamily": "Moo Lah Lah, system-ui", - "slug": "moo-lah-lah", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/moolahlah/v3/dg4h_p_opKZOA0w1AYcm55wtYQYugjW4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Moo Lah Lah" - } - ] - }, - { - "name": "Moon Dance", - "fontFamily": "Moon Dance, cursive", - "slug": "moon-dance", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/moondance/v3/WBLgrEbUbFlYW9ekmGawe2XiKMiokE4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Moon Dance" - } - ] - }, - { - "name": "Moul", - "fontFamily": "Moul, system-ui", - "slug": "moul", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/moul/v25/nuF2D__FSo_3E-RYiJCy-00.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Moul" - } - ] - }, - { - "name": "Moulpali", - "fontFamily": "Moulpali, system-ui", - "slug": "moulpali", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/moulpali/v28/H4ckBXKMl9HagUWymyY6wr-wg763.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Moulpali" - } - ] - }, - { - "name": "Mountains of Christmas", - "fontFamily": "Mountains of Christmas, system-ui", - "slug": "mountains-of-christmas", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mountains of Christmas" - }, - { - "src": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mountains of Christmas" - } - ] - }, - { - "name": "Mouse Memoirs", - "fontFamily": "Mouse Memoirs, sans-serif", - "slug": "mouse-memoirs", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mousememoirs/v14/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mouse Memoirs" - } - ] - }, - { - "name": "Mr Bedfort", - "fontFamily": "Mr Bedfort, cursive", - "slug": "mr-bedfort", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mrbedfort/v22/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mr Bedfort" - } - ] - }, - { - "name": "Mr Dafoe", - "fontFamily": "Mr Dafoe, cursive", - "slug": "mr-dafoe", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mr Dafoe" - } - ] - }, - { - "name": "Mr De Haviland", - "fontFamily": "Mr De Haviland, cursive", - "slug": "mr-de-haviland", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mr De Haviland" - } - ] - }, - { - "name": "Mrs Saint Delafield", - "fontFamily": "Mrs Saint Delafield, cursive", - "slug": "mrs-saint-delafield", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mrs Saint Delafield" - } - ] - }, - { - "name": "Mrs Sheppards", - "fontFamily": "Mrs Sheppards, cursive", - "slug": "mrs-sheppards", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mrssheppards/v21/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mrs Sheppards" - } - ] - }, - { - "name": "Ms Madi", - "fontFamily": "Ms Madi, cursive", - "slug": "ms-madi", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1N-DPiI7QAYo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ms Madi" - } - ] - }, - { - "name": "Mukta", - "fontFamily": "Mukta, sans-serif", - "slug": "mukta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mukta" - }, - { - "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mukta" - }, - { - "src": "http://fonts.gstatic.com/s/mukta/v14/iJWKBXyXfDDVXYnGp32S0H3f.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mukta" - }, - { - "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mukta" - }, - { - "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mukta" - }, - { - "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mukta" - }, - { - "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mukta" - } - ] - }, - { - "name": "Mukta Mahee", - "fontFamily": "Mukta Mahee, sans-serif", - "slug": "mukta-mahee", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee" - }, - { - "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee" - }, - { - "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee" - }, - { - "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee" - }, - { - "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee" - }, - { - "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee" - }, - { - "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mukta Mahee" - } - ] - }, - { - "name": "Mukta Malar", - "fontFamily": "Mukta Malar, sans-serif", - "slug": "mukta-malar", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mukta Malar" - }, - { - "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mukta Malar" - }, - { - "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mukta Malar" - }, - { - "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mukta Malar" - }, - { - "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mukta Malar" - }, - { - "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mukta Malar" - }, - { - "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mukta Malar" - } - ] - }, - { - "name": "Mukta Vaani", - "fontFamily": "Mukta Vaani, sans-serif", - "slug": "mukta-vaani", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani" - }, - { - "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani" - }, - { - "src": "http://fonts.gstatic.com/s/muktavaani/v13/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani" - }, - { - "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani" - }, - { - "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani" - }, - { - "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani" - }, - { - "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mukta Vaani" - } - ] - }, - { - "name": "Mulish", - "fontFamily": "Mulish, sans-serif", - "slug": "mulish", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNRwaClGrw-PTY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaClGrw-PTY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaClGrw-PTY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaClGrw-PTY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaClGrw-PTY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaClGrw-PTY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaClGrw-PTY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexTpWwaClGrw-PTY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeOvHp47LTZFwA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSd-OvHp47LTZFwA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvHp47LTZFwA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSG-OvHp47LTZFwA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsS9-SvHp47LTZFwA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSzuSvHp47LTZFwA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeSvHp47LTZFwA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Mulish" - }, - { - "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSgOSvHp47LTZFwA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Mulish" - } - ] - }, - { - "name": "Murecho", - "fontFamily": "Murecho, sans-serif", - "slug": "murecho", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Murecho" - }, - { - "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrC4nWZLCpUOaM6.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Murecho" - } - ] - }, - { - "name": "MuseoModerno", - "fontFamily": "MuseoModerno, system-ui", - "slug": "museomoderno", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuewajeKlCdo.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuewajeKlCdo.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuewajeKlCdo.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuewajeKlCdo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuewajeKlCdo.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuewajeKlCdo.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuewajeKlCdo.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuewajeKlCdo.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuewajeKlCdo.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa4QicCgGdrS3g.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0a8QicCgGdrS3g.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HD68QicCgGdrS3g.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa8QicCgGdrS3g.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HY68QicCgGdrS3g.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54Hj6gQicCgGdrS3g.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HtqgQicCgGdrS3g.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0agQicCgGdrS3g.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - }, - { - "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H-KgQicCgGdrS3g.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "MuseoModerno" - } - ] - }, - { - "name": "My Soul", - "fontFamily": "My Soul, cursive", - "slug": "my-soul", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mysoul/v2/3XFqErcuy945_u6KF_Ulk2nnXf0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "My Soul" - } - ] - }, - { - "name": "Mynerve", - "fontFamily": "Mynerve, cursive", - "slug": "mynerve", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mynerve/v2/P5sCzZKPdNjb4jt7xCRuiZ-uydg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mynerve" - } - ] - }, - { - "name": "Mystery Quest", - "fontFamily": "Mystery Quest, system-ui", - "slug": "mystery-quest", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Mystery Quest" - } - ] - }, - { - "name": "NTR", - "fontFamily": "NTR, sans-serif", - "slug": "ntr", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ntr/v15/RLpzK5Xy0ZjiGGhs5TA4bg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "NTR" - } - ] - }, - { - "name": "Nabla", - "fontFamily": "Nabla, system-ui", - "slug": "nabla", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nabla/v9/j8_D6-LI0Lvpe7Makz5UhJt9C3uqg_X_75gyGS4jAxsNIjrRNRBUFFR_198.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nabla" - } - ] - }, - { - "name": "Nanum Brush Script", - "fontFamily": "Nanum Brush Script, cursive", - "slug": "nanum-brush-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nanumbrushscript/v22/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Brush Script" - } - ] - }, - { - "name": "Nanum Gothic", - "fontFamily": "Nanum Gothic, sans-serif", - "slug": "nanum-gothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic" - }, - { - "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic" - }, - { - "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic" - } - ] - }, - { - "name": "Nanum Gothic Coding", - "fontFamily": "Nanum Gothic Coding, monospace", - "slug": "nanum-gothic-coding", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic Coding" - }, - { - "src": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nanum Gothic Coding" - } - ] - }, - { - "name": "Nanum Myeongjo", - "fontFamily": "Nanum Myeongjo, serif", - "slug": "nanum-myeongjo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Myeongjo" - }, - { - "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nanum Myeongjo" - }, - { - "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Nanum Myeongjo" - } - ] - }, - { - "name": "Nanum Pen Script", - "fontFamily": "Nanum Pen Script, cursive", - "slug": "nanum-pen-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nanumpenscript/v19/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nanum Pen Script" - } - ] - }, - { - "name": "Neonderthaw", - "fontFamily": "Neonderthaw, cursive", - "slug": "neonderthaw", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/neonderthaw/v3/Iure6Yx5-oWVZI0r-17AeZZJprVA4XQ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Neonderthaw" - } - ] - }, - { - "name": "Nerko One", - "fontFamily": "Nerko One, cursive", - "slug": "nerko-one", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nerkoone/v16/m8JQjfZSc7OXlB3ZMOjzcJ5BZmqa3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nerko One" - } - ] - }, - { - "name": "Neucha", - "fontFamily": "Neucha, cursive", - "slug": "neucha", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bvugNsCxVEgA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Neucha" - } - ] - }, - { - "name": "Neuton", - "fontFamily": "Neuton, serif", - "slug": "neuton", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Neuton" - }, - { - "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Neuton" - }, - { - "src": "http://fonts.gstatic.com/s/neuton/v19/UMBTrPtMoH62xUZyyII7civlBw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Neuton" - }, - { - "src": "http://fonts.gstatic.com/s/neuton/v19/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Neuton" - }, - { - "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Neuton" - }, - { - "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Neuton" - } - ] - }, - { - "name": "New Rocker", - "fontFamily": "New Rocker, system-ui", - "slug": "new-rocker", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "New Rocker" - } - ] - }, - { - "name": "New Tegomin", - "fontFamily": "New Tegomin, serif", - "slug": "new-tegomin", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/newtegomin/v10/SLXMc1fV7Gd9USdBAfPlqfN0Q3ptkDMN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "New Tegomin" - } - ] - }, - { - "name": "News Cycle", - "fontFamily": "News Cycle, sans-serif", - "slug": "news-cycle", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/newscycle/v23/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "News Cycle" - }, - { - "src": "http://fonts.gstatic.com/s/newscycle/v23/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "News Cycle" - } - ] - }, - { - "name": "Newsreader", - "fontFamily": "Newsreader, serif", - "slug": "newsreader", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-I_ADOxEPjCggA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wJo_ADOxEPjCggA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ADOxEPjCggA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wSo_ADOxEPjCggA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wpojADOxEPjCggA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wn4jADOxEPjCggA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-IjADOxEPjCggA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoT-ZAHDWwgECi.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMx2T-ZAHDWwgECi.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZAHDWwgECi.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwaT-ZAHDWwgECi.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMz2SOZAHDWwgECi.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMzPSOZAHDWwgECi.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Newsreader" - }, - { - "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoSOZAHDWwgECi.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Newsreader" - } - ] - }, - { - "name": "Niconne", - "fontFamily": "Niconne, cursive", - "slug": "niconne", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Niconne" - } - ] - }, - { - "name": "Niramit", - "fontFamily": "Niramit, sans-serif", - "slug": "niramit", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Niramit" - }, - { - "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Niramit" - } - ] - }, - { - "name": "Nixie One", - "fontFamily": "Nixie One, system-ui", - "slug": "nixie-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nixie One" - } - ] - }, - { - "name": "Nobile", - "fontFamily": "Nobile, sans-serif", - "slug": "nobile", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nobile/v17/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nobile" - }, - { - "src": "http://fonts.gstatic.com/s/nobile/v17/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Nobile" - }, - { - "src": "http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Nobile" - }, - { - "src": "http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Nobile" - }, - { - "src": "http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nobile" - }, - { - "src": "http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Nobile" - } - ] - }, - { - "name": "Nokora", - "fontFamily": "Nokora, sans-serif", - "slug": "nokora", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nokora/v30/~CgoKBk5va29yYRhkIAAqBAgBGAE=.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Nokora" - }, - { - "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRisAiAAKgQIARgB.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Nokora" - }, - { - "src": "http://fonts.gstatic.com/s/nokora/v30/~CggKBk5va29yYSAAKgQIARgB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nokora" - }, - { - "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRi8BSAAKgQIARgB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nokora" - }, - { - "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRiEByAAKgQIARgB.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Nokora" - } - ] - }, - { - "name": "Norican", - "fontFamily": "Norican, cursive", - "slug": "norican", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/norican/v14/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Norican" - } - ] - }, - { - "name": "Nosifer", - "fontFamily": "Nosifer, system-ui", - "slug": "nosifer", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nosifer/v20/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nosifer" - } - ] - }, - { - "name": "Notable", - "fontFamily": "Notable, sans-serif", - "slug": "notable", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notable/v14/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Notable" - } - ] - }, - { - "name": "Nothing You Could Do", - "fontFamily": "Nothing You Could Do, cursive", - "slug": "nothing-you-could-do", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nothingyoucoulddo/v15/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nothing You Could Do" - } - ] - }, - { - "name": "Noticia Text", - "fontFamily": "Noticia Text, serif", - "slug": "noticia-text", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noticia Text" - }, - { - "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noticia Text" - }, - { - "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noticia Text" - }, - { - "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noticia Text" - } - ] - }, - { - "name": "Noto Color Emoji", - "fontFamily": "Noto Color Emoji, sans-serif", - "slug": "noto-color-emoji", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notocoloremoji/v24/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFab5s79iz64w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Color Emoji" - } - ] - }, - { - "name": "Noto Emoji", - "fontFamily": "Noto Emoji, sans-serif", - "slug": "noto-emoji", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob_10jwvS-FGJCMY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Emoji" - }, - { - "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwvS-FGJCMY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Emoji" - }, - { - "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-Z0jwvS-FGJCMY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Emoji" - }, - { - "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob911TwvS-FGJCMY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Emoji" - }, - { - "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob9M1TwvS-FGJCMY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Emoji" - } - ] - }, - { - "name": "Noto Kufi Arabic", - "fontFamily": "Noto Kufi Arabic, sans-serif", - "slug": "noto-kufi-arabic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v3obPnLSmf5yD.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v34bPnLSmf5yD.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh4x34bPnLSmf5yD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v34bPnLSmf5yD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5d34bPnLSmf5yD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6x2IbPnLSmf5yD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6I2IbPnLSmf5yD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v2IbPnLSmf5yD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7G2IbPnLSmf5yD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Kufi Arabic" - } - ] - }, - { - "name": "Noto Music", - "fontFamily": "Noto Music, sans-serif", - "slug": "noto-music", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notomusic/v17/pe0rMIiSN5pO63htf1sxIteQB9Zra1U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Music" - } - ] - }, - { - "name": "Noto Naskh Arabic", - "fontFamily": "Noto Naskh Arabic, serif", - "slug": "noto-naskh-arabic", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5krK0z9_Mnuw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Naskh Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwj85krK0z9_Mnuw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Naskh Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwY8lkrK0z9_Mnuw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Naskh Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwWslkrK0z9_Mnuw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Naskh Arabic" - } - ] - }, - { - "name": "Noto Nastaliq Urdu", - "fontFamily": "Noto Nastaliq Urdu, serif", - "slug": "noto-nastaliq-urdu", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qt_-DK2f2-_8mEw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Nastaliq Urdu" - }, - { - "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qu3-DK2f2-_8mEw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Nastaliq Urdu" - }, - { - "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3QgH5DK2f2-_8mEw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Nastaliq Urdu" - }, - { - "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qjj5DK2f2-_8mEw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Nastaliq Urdu" - } - ] - }, - { - "name": "Noto Rashi Hebrew", - "fontFamily": "Noto Rashi Hebrew, serif", - "slug": "noto-rashi-hebrew", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-DkRyq6Nf2pfA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-HkRyq6Nf2pfA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZWeHkRyq6Nf2pfA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HkRyq6Nf2pfA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZNeHkRyq6Nf2pfA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ2ebkRyq6Nf2pfA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ4ObkRyq6Nf2pfA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-bkRyq6Nf2pfA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZrubkRyq6Nf2pfA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Rashi Hebrew" - } - ] - }, - { - "name": "Noto Sans", - "fontFamily": "Noto Sans, sans-serif", - "slug": "noto-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNjhjRFSfiM7HBj.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0MIpQlx3QUlC5A4PNr4AwhQ_yu6WBjJLE.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjKhVlY9aA5Wl6PQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AyNYtyEx2xqPaif.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZlY9aA5Wl6PQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzpYdyEx2xqPaif.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjFhdlY9aA5Wl6PQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AyxYNyEx2xqPaif.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBlY9aA5Wl6PQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AydZ9yEx2xqPaif.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjQhJlY9aA5Wl6PQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzlZdyEx2xqPaif.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjZhNlY9aA5Wl6PQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans" - }, - { - "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzBZNyEx2xqPaif.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Noto Sans" - } - ] - }, - { - "name": "Noto Sans Adlam", - "fontFamily": "Noto Sans Adlam, sans-serif", - "slug": "noto-sans-adlam", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufkn0TGnBZLwhuvk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufqXzTGnBZLwhuvk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufpzzTGnBZLwhuvk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam" - } - ] - }, - { - "name": "Noto Sans Adlam Unjoined", - "fontFamily": "Noto Sans Adlam Unjoined, sans-serif", - "slug": "noto-sans-adlam-unjoined", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35PMEe-E3slUg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam Unjoined" - }, - { - "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Yd_5PMEe-E3slUg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam Unjoined" - }, - { - "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YTP-PMEe-E3slUg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam Unjoined" - }, - { - "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YQr-PMEe-E3slUg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Adlam Unjoined" - } - ] - }, - { - "name": "Noto Sans Anatolian Hieroglyphs", - "fontFamily": "Noto Sans Anatolian Hieroglyphs, sans-serif", - "slug": "noto-sans-anatolian-hieroglyphs", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v14/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Anatolian Hieroglyphs" - } - ] - }, - { - "name": "Noto Sans Arabic", - "fontFamily": "Noto Sans Arabic, sans-serif", - "slug": "noto-sans-arabic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyG2vu3CBFQLaig.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGyvu3CBFQLaig.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCflmyvu3CBFQLaig.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCf-myvu3CBFQLaig.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfFmuvu3CBFQLaig.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfL2uvu3CBFQLaig.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGuvu3CBFQLaig.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfYWuvu3CBFQLaig.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Arabic" - } - ] - }, - { - "name": "Noto Sans Armenian", - "fontFamily": "Noto Sans Armenian, sans-serif", - "slug": "noto-sans-armenian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxbq0iYy6zF3Eg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxb60iYy6zF3Eg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoqvb60iYy6zF3Eg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorDb60iYy6zF3Eg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoovaK0iYy6zF3Eg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLooWaK0iYy6zF3Eg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxaK0iYy6zF3Eg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopYaK0iYy6zF3Eg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Armenian" - } - ] - }, - { - "name": "Noto Sans Avestan", - "fontFamily": "Noto Sans Avestan, sans-serif", - "slug": "noto-sans-avestan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansavestan/v20/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Avestan" - } - ] - }, - { - "name": "Noto Sans Balinese", - "fontFamily": "Noto Sans Balinese, sans-serif", - "slug": "noto-sans-balinese", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Balinese" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov4XdhE5Vd222PPY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Balinese" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov2nahE5Vd222PPY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Balinese" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov1DahE5Vd222PPY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Balinese" - } - ] - }, - { - "name": "Noto Sans Bamum", - "fontFamily": "Noto Sans Bamum, sans-serif", - "slug": "noto-sans-bamum", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bamum" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEeVO-_gLykxEkxA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bamum" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEQlJ-_gLykxEkxA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bamum" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPETBJ-_gLykxEkxA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bamum" - } - ] - }, - { - "name": "Noto Sans Bassa Vah", - "fontFamily": "Noto Sans Bassa Vah, sans-serif", - "slug": "noto-sans-bassa-vah", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAc6p34gH-GD7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bassa Vah" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MoAc6p34gH-GD7.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bassa Vah" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4PEBs6p34gH-GD7.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bassa Vah" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4P9Bs6p34gH-GD7.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bassa Vah" - } - ] - }, - { - "name": "Noto Sans Batak", - "fontFamily": "Noto Sans Batak, sans-serif", - "slug": "noto-sans-batak", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Batak" - } - ] - }, - { - "name": "Noto Sans Bengali", - "fontFamily": "Noto Sans Bengali, sans-serif", - "slug": "noto-sans-bengali", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolKudCk8izI0lc.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglLudCk8izI0lc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmstdLudCk8izI0lc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsrtLudCk8izI0lc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsldMudCk8izI0lc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6Kmsm5MudCk8izI0lc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglMudCk8izI0lc.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsiBMudCk8izI0lc.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bengali" - } - ] - }, - { - "name": "Noto Sans Bhaiksuki", - "fontFamily": "Noto Sans Bhaiksuki, sans-serif", - "slug": "noto-sans-bhaiksuki", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Bhaiksuki" - } - ] - }, - { - "name": "Noto Sans Brahmi", - "fontFamily": "Noto Sans Brahmi, sans-serif", - "slug": "noto-sans-brahmi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbrahmi/v15/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Brahmi" - } - ] - }, - { - "name": "Noto Sans Buginese", - "fontFamily": "Noto Sans Buginese, sans-serif", - "slug": "noto-sans-buginese", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbuginese/v18/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Buginese" - } - ] - }, - { - "name": "Noto Sans Buhid", - "fontFamily": "Noto Sans Buhid, sans-serif", - "slug": "noto-sans-buhid", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansbuhid/v18/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Buhid" - } - ] - }, - { - "name": "Noto Sans Canadian Aboriginal", - "fontFamily": "Noto Sans Canadian Aboriginal, sans-serif", - "slug": "noto-sans-canadian-aboriginal", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLj_yAsg0q0uhQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2Ln_yAsg0q0uhQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigBrn_yAsg0q0uhQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigarn_yAsg0q0uhQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzighr7_yAsg0q0uhQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigv77_yAsg0q0uhQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2L7_yAsg0q0uhQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig8b7_yAsg0q0uhQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Canadian Aboriginal" - } - ] - }, - { - "name": "Noto Sans Carian", - "fontFamily": "Noto Sans Carian, sans-serif", - "slug": "noto-sans-carian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscarian/v15/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Carian" - } - ] - }, - { - "name": "Noto Sans Caucasian Albanian", - "fontFamily": "Noto Sans Caucasian Albanian, sans-serif", - "slug": "noto-sans-caucasian-albanian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Caucasian Albanian" - } - ] - }, - { - "name": "Noto Sans Chakma", - "fontFamily": "Noto Sans Chakma, sans-serif", - "slug": "noto-sans-chakma", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Chakma" - } - ] - }, - { - "name": "Noto Sans Cham", - "fontFamily": "Noto Sans Cham, sans-serif", - "slug": "noto-sans-cham", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcER0cv7GykboaLg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRwcv7GykboaLg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcTxwcv7GykboaLg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcIxwcv7GykboaLg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfczxscv7GykboaLg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfc9hscv7GykboaLg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRscv7GykboaLg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcuBscv7GykboaLg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cham" - } - ] - }, - { - "name": "Noto Sans Cherokee", - "fontFamily": "Noto Sans Cherokee, sans-serif", - "slug": "noto-sans-cherokee", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5ODkm5rAffjl0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5PDkm5rAffjl0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWnBPDkm5rAffjl0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWhxPDkm5rAffjl0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWvBIDkm5rAffjl0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWslIDkm5rAffjl0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5IDkm5rAffjl0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - }, - { - "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWodIDkm5rAffjl0.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cherokee" - } - ] - }, - { - "name": "Noto Sans Coptic", - "fontFamily": "Noto Sans Coptic, sans-serif", - "slug": "noto-sans-coptic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Coptic" - } - ] - }, - { - "name": "Noto Sans Cuneiform", - "fontFamily": "Noto Sans Cuneiform, sans-serif", - "slug": "noto-sans-cuneiform", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscuneiform/v15/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cuneiform" - } - ] - }, - { - "name": "Noto Sans Cypriot", - "fontFamily": "Noto Sans Cypriot, sans-serif", - "slug": "noto-sans-cypriot", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Cypriot" - } - ] - }, - { - "name": "Noto Sans Deseret", - "fontFamily": "Noto Sans Deseret, sans-serif", - "slug": "noto-sans-deseret", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansdeseret/v15/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Deseret" - } - ] - }, - { - "name": "Noto Sans Devanagari", - "fontFamily": "Noto Sans Devanagari, sans-serif", - "slug": "noto-sans-devanagari", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQky-AzoFoW4Ow.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQly-AzoFoW4Ow.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlSoly-AzoFoW4Ow.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-AzoFoW4Ow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlUYly-AzoFoW4Ow.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Alaoiy-AzoFoW4Ow.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlZMiy-AzoFoW4Ow.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQiy-AzoFoW4Ow.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Ald0iy-AzoFoW4Ow.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Devanagari" - } - ] - }, - { - "name": "Noto Sans Display", - "fontFamily": "Noto Sans Display, sans-serif", - "slug": "noto-sans-display", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cLVTGQ2iHrvWM.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cKVTGQ2iHrvWM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_ykKVTGQ2iHrvWM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKVTGQ2iHrvWM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_0UKVTGQ2iHrvWM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_6kNVTGQ2iHrvWM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_5ANVTGQ2iHrvWM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cNVTGQ2iHrvWM.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_94NVTGQ2iHrvWM.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXOa3gPurWM9uQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXKa3gPurWM9uQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9J43Ka3gPurWM9uQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXKa3gPurWM9uQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9Jj3Ka3gPurWM9uQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JY3Wa3gPurWM9uQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JWnWa3gPurWM9uQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXWa3gPurWM9uQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - }, - { - "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JFHWa3gPurWM9uQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Noto Sans Display" - } - ] - }, - { - "name": "Noto Sans Duployan", - "fontFamily": "Noto Sans Duployan, sans-serif", - "slug": "noto-sans-duployan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansduployan/v16/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Duployan" - } - ] - }, - { - "name": "Noto Sans Egyptian Hieroglyphs", - "fontFamily": "Noto Sans Egyptian Hieroglyphs, sans-serif", - "slug": "noto-sans-egyptian-hieroglyphs", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v26/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Egyptian Hieroglyphs" - } - ] - }, - { - "name": "Noto Sans Elbasan", - "fontFamily": "Noto Sans Elbasan, sans-serif", - "slug": "noto-sans-elbasan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanselbasan/v15/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Elbasan" - } - ] - }, - { - "name": "Noto Sans Elymaic", - "fontFamily": "Noto Sans Elymaic, sans-serif", - "slug": "noto-sans-elymaic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Elymaic" - } - ] - }, - { - "name": "Noto Sans Ethiopic", - "fontFamily": "Noto Sans Ethiopic, sans-serif", - "slug": "noto-sans-ethiopic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OKqDjwmfeaY9u.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OK6DjwmfeaY9u.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T34QK6DjwmfeaY9u.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OK6DjwmfeaY9u.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T358K6DjwmfeaY9u.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36QLKDjwmfeaY9u.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36pLKDjwmfeaY9u.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OLKDjwmfeaY9u.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37nLKDjwmfeaY9u.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ethiopic" - } - ] - }, - { - "name": "Noto Sans Georgian", - "fontFamily": "Noto Sans Georgian, sans-serif", - "slug": "noto-sans-georgian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzVj-f5WK0OQV.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptnzFj-f5WK0OQV.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpu5zFj-f5WK0OQV.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvVzFj-f5WK0OQV.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdps5y1j-f5WK0OQV.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpsAy1j-f5WK0OQV.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptny1j-f5WK0OQV.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptOy1j-f5WK0OQV.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Georgian" - } - ] - }, - { - "name": "Noto Sans Glagolitic", - "fontFamily": "Noto Sans Glagolitic, sans-serif", - "slug": "noto-sans-glagolitic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansglagolitic/v15/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Glagolitic" - } - ] - }, - { - "name": "Noto Sans Gothic", - "fontFamily": "Noto Sans Gothic, sans-serif", - "slug": "noto-sans-gothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansgothic/v15/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gothic" - } - ] - }, - { - "name": "Noto Sans Grantha", - "fontFamily": "Noto Sans Grantha, sans-serif", - "slug": "noto-sans-grantha", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Grantha" - } - ] - }, - { - "name": "Noto Sans Gujarati", - "fontFamily": "Noto Sans Gujarati, sans-serif", - "slug": "noto-sans-gujarati", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFgPM_OdiEH0s.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpFwPM_OdiEH0s.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_z3FwPM_OdiEH0s.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPM_OdiEH0s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ybFwPM_OdiEH0s.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_x3EAPM_OdiEH0s.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_xOEAPM_OdiEH0s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpEAPM_OdiEH0s.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wAEAPM_OdiEH0s.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gujarati" - } - ] - }, - { - "name": "Noto Sans Gunjala Gondi", - "fontFamily": "Noto Sans Gunjala Gondi, sans-serif", - "slug": "noto-sans-gunjala-gondi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansgunjalagondi/v15/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gunjala Gondi" - } - ] - }, - { - "name": "Noto Sans Gurmukhi", - "fontFamily": "Noto Sans Gurmukhi, sans-serif", - "slug": "noto-sans-gurmukhi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oe3bxZ_trdp7h.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OenbxZ_trdp7h.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG0QenbxZ_trdp7h.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG18enbxZ_trdp7h.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2QfXbxZ_trdp7h.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2pfXbxZ_trdp7h.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OfXbxZ_trdp7h.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3nfXbxZ_trdp7h.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Gurmukhi" - } - ] - }, - { - "name": "Noto Sans HK", - "fontFamily": "Noto Sans HK, sans-serif", - "slug": "noto-sans-hk", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans HK" - } - ] - }, - { - "name": "Noto Sans Hanifi Rohingya", - "fontFamily": "Noto Sans Hanifi Rohingya, sans-serif", - "slug": "noto-sans-hanifi-rohingya", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4j6vvcudK8rN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanifi Rohingya" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYq4j6vvcudK8rN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanifi Rohingya" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIbG5T6vvcudK8rN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanifi Rohingya" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIb_5T6vvcudK8rN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanifi Rohingya" - } - ] - }, - { - "name": "Noto Sans Hanunoo", - "fontFamily": "Noto Sans Hanunoo, sans-serif", - "slug": "noto-sans-hanunoo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanshanunoo/v17/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hanunoo" - } - ] - }, - { - "name": "Noto Sans Hatran", - "fontFamily": "Noto Sans Hatran, sans-serif", - "slug": "noto-sans-hatran", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanshatran/v15/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hatran" - } - ] - }, - { - "name": "Noto Sans Hebrew", - "fontFamily": "Noto Sans Hebrew, sans-serif", - "slug": "noto-sans-hebrew", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4utoiJltutR2g.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX94qtoiJltutR2g.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXKYqtoiJltutR2g.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXRYqtoiJltutR2g.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXqY2toiJltutR2g.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXkI2toiJltutR2g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX942toiJltutR2g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX3o2toiJltutR2g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Hebrew" - } - ] - }, - { - "name": "Noto Sans Imperial Aramaic", - "fontFamily": "Noto Sans Imperial Aramaic, sans-serif", - "slug": "noto-sans-imperial-aramaic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansimperialaramaic/v15/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Imperial Aramaic" - } - ] - }, - { - "name": "Noto Sans Indic Siyaq Numbers", - "fontFamily": "Noto Sans Indic Siyaq Numbers, sans-serif", - "slug": "noto-sans-indic-siyaq-numbers", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v15/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Indic Siyaq Numbers" - } - ] - }, - { - "name": "Noto Sans Inscriptional Pahlavi", - "fontFamily": "Noto Sans Inscriptional Pahlavi, sans-serif", - "slug": "noto-sans-inscriptional-pahlavi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v15/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Inscriptional Pahlavi" - } - ] - }, - { - "name": "Noto Sans Inscriptional Parthian", - "fontFamily": "Noto Sans Inscriptional Parthian, sans-serif", - "slug": "noto-sans-inscriptional-parthian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansinscriptionalparthian/v15/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Inscriptional Parthian" - } - ] - }, - { - "name": "Noto Sans JP", - "fontFamily": "Noto Sans JP, sans-serif", - "slug": "noto-sans-jp", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEi75vY0rw-oME.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEj75vY0rw-oME.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFE8j75vY0rw-oME.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj75vY0rw-oME.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj75vY0rw-oME.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFM8k75vY0rw-oME.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk75vY0rw-oME.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEk75vY0rw-oME.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFLgk75vY0rw-oME.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans JP" - } - ] - }, - { - "name": "Noto Sans Javanese", - "fontFamily": "Noto Sans Javanese, sans-serif", - "slug": "noto-sans-javanese", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFliZYWj4O8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Javanese" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxKvkFFliZYWj4O8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Javanese" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxEfjFFliZYWj4O8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Javanese" - }, - { - "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxH7jFFliZYWj4O8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Javanese" - } - ] - }, - { - "name": "Noto Sans KR", - "fontFamily": "Noto Sans KR, sans-serif", - "slug": "noto-sans-kr", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskr/v27/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans KR" - } - ] - }, - { - "name": "Noto Sans Kaithi", - "fontFamily": "Noto Sans Kaithi, sans-serif", - "slug": "noto-sans-kaithi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskaithi/v16/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kaithi" - } - ] - }, - { - "name": "Noto Sans Kannada", - "fontFamily": "Noto Sans Kannada, sans-serif", - "slug": "noto-sans-kannada", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvMzSIMLsPKrkY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvNzSIMLsPKrkY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrGXNzSIMLsPKrkY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrAnNzSIMLsPKrkY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrOXKzSIMLsPKrkY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrNzKzSIMLsPKrkY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvKzSIMLsPKrkY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrJLKzSIMLsPKrkY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kannada" - } - ] - }, - { - "name": "Noto Sans Kayah Li", - "fontFamily": "Noto Sans Kayah Li, sans-serif", - "slug": "noto-sans-kayah-li", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kayah Li" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WBU3CZH4EXLuKVM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kayah Li" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WPkwCZH4EXLuKVM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kayah Li" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WMAwCZH4EXLuKVM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kayah Li" - } - ] - }, - { - "name": "Noto Sans Kharoshthi", - "fontFamily": "Noto Sans Kharoshthi, sans-serif", - "slug": "noto-sans-kharoshthi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskharoshthi/v16/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Kharoshthi" - } - ] - }, - { - "name": "Noto Sans Khmer", - "fontFamily": "Noto Sans Khmer, sans-serif", - "slug": "noto-sans-khmer", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAZz4kAbrddiA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNAJz4kAbrddiA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYvTAJz4kAbrddiA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYu_AJz4kAbrddiA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtTB5z4kAbrddiA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtqB5z4kAbrddiA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNB5z4kAbrddiA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYskB5z4kAbrddiA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khmer" - } - ] - }, - { - "name": "Noto Sans Khojki", - "fontFamily": "Noto Sans Khojki, sans-serif", - "slug": "noto-sans-khojki", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskhojki/v16/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khojki" - } - ] - }, - { - "name": "Noto Sans Khudawadi", - "fontFamily": "Noto Sans Khudawadi, sans-serif", - "slug": "noto-sans-khudawadi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanskhudawadi/v16/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Khudawadi" - } - ] - }, - { - "name": "Noto Sans Lao", - "fontFamily": "Noto Sans Lao, sans-serif", - "slug": "noto-sans-lao", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccfdf5MK3riB2w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cbdf5MK3riB2w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4L8bdf5MK3riB2w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4Q8bdf5MK3riB2w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4r8Hdf5MK3riB2w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4lsHdf5MK3riB2w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cHdf5MK3riB2w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt42MHdf5MK3riB2w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao" - } - ] - }, - { - "name": "Noto Sans Lao Looped", - "fontFamily": "Noto Sans Lao Looped, sans-serif", - "slug": "noto-sans-lao-looped", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr2M-Zw5V_T71k.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHr3M-Zw5V_T71k.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomKT3M-Zw5V_T71k.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr3M-Zw5V_T71k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomMj3M-Zw5V_T71k.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomCTwM-Zw5V_T71k.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomB3wM-Zw5V_T71k.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHrwM-Zw5V_T71k.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomFPwM-Zw5V_T71k.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lao Looped" - } - ] - }, - { - "name": "Noto Sans Lepcha", - "fontFamily": "Noto Sans Lepcha, sans-serif", - "slug": "noto-sans-lepcha", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslepcha/v16/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lepcha" - } - ] - }, - { - "name": "Noto Sans Limbu", - "fontFamily": "Noto Sans Limbu, sans-serif", - "slug": "noto-sans-limbu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Limbu" - } - ] - }, - { - "name": "Noto Sans Linear A", - "fontFamily": "Noto Sans Linear A, sans-serif", - "slug": "noto-sans-linear-a", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslineara/v16/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Linear A" - } - ] - }, - { - "name": "Noto Sans Linear B", - "fontFamily": "Noto Sans Linear B, sans-serif", - "slug": "noto-sans-linear-b", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslinearb/v15/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Linear B" - } - ] - }, - { - "name": "Noto Sans Lisu", - "fontFamily": "Noto Sans Lisu, sans-serif", - "slug": "noto-sans-lisu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lisu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP61wt29IlxkVdig.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lisu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPB1st29IlxkVdig.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lisu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPPlst29IlxkVdig.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lisu" - } - ] - }, - { - "name": "Noto Sans Lycian", - "fontFamily": "Noto Sans Lycian, sans-serif", - "slug": "noto-sans-lycian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lycian" - } - ] - }, - { - "name": "Noto Sans Lydian", - "fontFamily": "Noto Sans Lydian, sans-serif", - "slug": "noto-sans-lydian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanslydian/v15/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Lydian" - } - ] - }, - { - "name": "Noto Sans Mahajani", - "fontFamily": "Noto Sans Mahajani, sans-serif", - "slug": "noto-sans-mahajani", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmahajani/v15/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mahajani" - } - ] - }, - { - "name": "Noto Sans Malayalam", - "fontFamily": "Noto Sans Malayalam, sans-serif", - "slug": "noto-sans-malayalam", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuH9BFzEr6HxEA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuD9BFzEr6HxEA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_GOD9BFzEr6HxEA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_dOD9BFzEr6HxEA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_mOf9BFzEr6HxEA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_oef9BFzEr6HxEA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuf9BFzEr6HxEA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_7-f9BFzEr6HxEA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Malayalam" - } - ] - }, - { - "name": "Noto Sans Mandaic", - "fontFamily": "Noto Sans Mandaic, sans-serif", - "slug": "noto-sans-mandaic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmandaic/v15/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mandaic" - } - ] - }, - { - "name": "Noto Sans Manichaean", - "fontFamily": "Noto Sans Manichaean, sans-serif", - "slug": "noto-sans-manichaean", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmanichaean/v15/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Manichaean" - } - ] - }, - { - "name": "Noto Sans Marchen", - "fontFamily": "Noto Sans Marchen, sans-serif", - "slug": "noto-sans-marchen", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmarchen/v17/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Marchen" - } - ] - }, - { - "name": "Noto Sans Masaram Gondi", - "fontFamily": "Noto Sans Masaram Gondi, sans-serif", - "slug": "noto-sans-masaram-gondi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Masaram Gondi" - } - ] - }, - { - "name": "Noto Sans Math", - "fontFamily": "Noto Sans Math, sans-serif", - "slug": "noto-sans-math", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Math" - } - ] - }, - { - "name": "Noto Sans Mayan Numerals", - "fontFamily": "Noto Sans Mayan Numerals, sans-serif", - "slug": "noto-sans-mayan-numerals", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmayannumerals/v15/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mayan Numerals" - } - ] - }, - { - "name": "Noto Sans Medefaidrin", - "fontFamily": "Noto Sans Medefaidrin, sans-serif", - "slug": "noto-sans-medefaidrin", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Medefaidrin" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmHjWlT318e5A3rw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Medefaidrin" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmJTRlT318e5A3rw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Medefaidrin" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmK3RlT318e5A3rw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Medefaidrin" - } - ] - }, - { - "name": "Noto Sans Meetei Mayek", - "fontFamily": "Noto Sans Meetei Mayek, sans-serif", - "slug": "noto-sans-meetei-mayek", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ__TW5PgeFYVa.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ_vTW5PgeFYVa.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1SX_vTW5PgeFYVa.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1T7_vTW5PgeFYVa.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1QX-fTW5PgeFYVa.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Qu-fTW5PgeFYVa.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ-fTW5PgeFYVa.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Rg-fTW5PgeFYVa.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meetei Mayek" - } - ] - }, - { - "name": "Noto Sans Mende Kikakui", - "fontFamily": "Noto Sans Mende Kikakui, sans-serif", - "slug": "noto-sans-mende-kikakui", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmendekikakui/v28/11hRGoLHz17aKjQCWj-JHcLvu2Q5zZrnkbNCLUx_aDJLAHer.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mende Kikakui" - } - ] - }, - { - "name": "Noto Sans Meroitic", - "fontFamily": "Noto Sans Meroitic, sans-serif", - "slug": "noto-sans-meroitic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmeroitic/v16/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Meroitic" - } - ] - }, - { - "name": "Noto Sans Miao", - "fontFamily": "Noto Sans Miao, sans-serif", - "slug": "noto-sans-miao", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Miao" - } - ] - }, - { - "name": "Noto Sans Modi", - "fontFamily": "Noto Sans Modi, sans-serif", - "slug": "noto-sans-modi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmodi/v20/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Modi" - } - ] - }, - { - "name": "Noto Sans Mongolian", - "fontFamily": "Noto Sans Mongolian, sans-serif", - "slug": "noto-sans-mongolian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mongolian" - } - ] - }, - { - "name": "Noto Sans Mono", - "fontFamily": "Noto Sans Mono, monospace", - "slug": "noto-sans-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNI49rXVEQQL8Y.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNJ49rXVEQQL8Y.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_A1J49rXVEQQL8Y.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49rXVEQQL8Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_GFJ49rXVEQQL8Y.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_I1O49rXVEQQL8Y.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_LRO49rXVEQQL8Y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNO49rXVEQQL8Y.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmono/v26/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_PpO49rXVEQQL8Y.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mono" - } - ] - }, - { - "name": "Noto Sans Mro", - "fontFamily": "Noto Sans Mro, sans-serif", - "slug": "noto-sans-mro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Mro" - } - ] - }, - { - "name": "Noto Sans Multani", - "fontFamily": "Noto Sans Multani, sans-serif", - "slug": "noto-sans-multani", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Multani" - } - ] - }, - { - "name": "Noto Sans Myanmar", - "fontFamily": "Noto Sans Myanmar, sans-serif", - "slug": "noto-sans-myanmar", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZs_y1ZtY3ymOryg38hOCSdOnFq0HGS1uEapkAC3AY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HE-98EwiEwLxR-r.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFa9MEwiEwLxR-r.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEC9cEwiEwLxR-r.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEu8sEwiEwLxR-r.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFK88EwiEwLxR-r.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFW8MEwiEwLxR-r.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFy8cEwiEwLxR-r.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Myanmar" - } - ] - }, - { - "name": "Noto Sans NKo", - "fontFamily": "Noto Sans NKo, sans-serif", - "slug": "noto-sans-nko", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansnko/v2/esDX31ZdNv-KYGGJpKGk2_RpMpCMHMLBrdA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans NKo" - } - ] - }, - { - "name": "Noto Sans Nabataean", - "fontFamily": "Noto Sans Nabataean, sans-serif", - "slug": "noto-sans-nabataean", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansnabataean/v15/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nabataean" - } - ] - }, - { - "name": "Noto Sans Nag Mundari", - "fontFamily": "Noto Sans Nag Mundari, sans-serif", - "slug": "noto-sans-nag-mundari", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHRxirbUGA0whP19M.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nag Mundari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHRyqrbUGA0whP19M.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nag Mundari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHR8asbUGA0whP19M.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nag Mundari" - }, - { - "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHR_-sbUGA0whP19M.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nag Mundari" - } - ] - }, - { - "name": "Noto Sans Nandinagari", - "fontFamily": "Noto Sans Nandinagari, sans-serif", - "slug": "noto-sans-nandinagari", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansnandinagari/v3/or38Q7733eiDljA1IufXSNFT-1KI5y10H4jVa5RXzC1KOw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nandinagari" - } - ] - }, - { - "name": "Noto Sans New Tai Lue", - "fontFamily": "Noto Sans New Tai Lue, sans-serif", - "slug": "noto-sans-new-tai-lue", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAYUbghFPKzeY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans New Tai Lue" - }, - { - "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pddfAYUbghFPKzeY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans New Tai Lue" - }, - { - "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdTvHYUbghFPKzeY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans New Tai Lue" - }, - { - "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdQLHYUbghFPKzeY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans New Tai Lue" - } - ] - }, - { - "name": "Noto Sans Newa", - "fontFamily": "Noto Sans Newa, sans-serif", - "slug": "noto-sans-newa", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Newa" - } - ] - }, - { - "name": "Noto Sans Nushu", - "fontFamily": "Noto Sans Nushu, sans-serif", - "slug": "noto-sans-nushu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansnushu/v19/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Nushu" - } - ] - }, - { - "name": "Noto Sans Ogham", - "fontFamily": "Noto Sans Ogham, sans-serif", - "slug": "noto-sans-ogham", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansogham/v15/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ogham" - } - ] - }, - { - "name": "Noto Sans Ol Chiki", - "fontFamily": "Noto Sans Ol Chiki, sans-serif", - "slug": "noto-sans-ol-chiki", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ol Chiki" - }, - { - "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALVs267I6gVrz5gQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ol Chiki" - }, - { - "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALbcx67I6gVrz5gQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ol Chiki" - }, - { - "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALY4x67I6gVrz5gQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ol Chiki" - } - ] - }, - { - "name": "Noto Sans Old Hungarian", - "fontFamily": "Noto Sans Old Hungarian, sans-serif", - "slug": "noto-sans-old-hungarian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoldhungarian/v15/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Hungarian" - } - ] - }, - { - "name": "Noto Sans Old Italic", - "fontFamily": "Noto Sans Old Italic, sans-serif", - "slug": "noto-sans-old-italic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansolditalic/v15/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Italic" - } - ] - }, - { - "name": "Noto Sans Old North Arabian", - "fontFamily": "Noto Sans Old North Arabian, sans-serif", - "slug": "noto-sans-old-north-arabian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoldnortharabian/v15/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old North Arabian" - } - ] - }, - { - "name": "Noto Sans Old Permic", - "fontFamily": "Noto Sans Old Permic, sans-serif", - "slug": "noto-sans-old-permic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoldpermic/v16/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Permic" - } - ] - }, - { - "name": "Noto Sans Old Persian", - "fontFamily": "Noto Sans Old Persian, sans-serif", - "slug": "noto-sans-old-persian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoldpersian/v15/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Persian" - } - ] - }, - { - "name": "Noto Sans Old Sogdian", - "fontFamily": "Noto Sans Old Sogdian, sans-serif", - "slug": "noto-sans-old-sogdian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoldsogdian/v15/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Sogdian" - } - ] - }, - { - "name": "Noto Sans Old South Arabian", - "fontFamily": "Noto Sans Old South Arabian, sans-serif", - "slug": "noto-sans-old-south-arabian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoldsoutharabian/v15/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old South Arabian" - } - ] - }, - { - "name": "Noto Sans Old Turkic", - "fontFamily": "Noto Sans Old Turkic, sans-serif", - "slug": "noto-sans-old-turkic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoldturkic/v15/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Old Turkic" - } - ] - }, - { - "name": "Noto Sans Oriya", - "fontFamily": "Noto Sans Oriya, sans-serif", - "slug": "noto-sans-oriya", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0fq_c6LhHBRe-.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0f6_c6LhHBRe-.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Iviqf6_c6LhHBRe-.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_c6LhHBRe-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvjGf6_c6LhHBRe-.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgqeK_c6LhHBRe-.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgTeK_c6LhHBRe-.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0eK_c6LhHBRe-.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvhdeK_c6LhHBRe-.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Oriya" - } - ] - }, - { - "name": "Noto Sans Osage", - "fontFamily": "Noto Sans Osage, sans-serif", - "slug": "noto-sans-osage", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Osage" - } - ] - }, - { - "name": "Noto Sans Osmanya", - "fontFamily": "Noto Sans Osmanya, sans-serif", - "slug": "noto-sans-osmanya", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Osmanya" - } - ] - }, - { - "name": "Noto Sans Pahawh Hmong", - "fontFamily": "Noto Sans Pahawh Hmong, sans-serif", - "slug": "noto-sans-pahawh-hmong", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanspahawhhmong/v18/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Pahawh Hmong" - } - ] - }, - { - "name": "Noto Sans Palmyrene", - "fontFamily": "Noto Sans Palmyrene, sans-serif", - "slug": "noto-sans-palmyrene", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanspalmyrene/v15/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Palmyrene" - } - ] - }, - { - "name": "Noto Sans Pau Cin Hau", - "fontFamily": "Noto Sans Pau Cin Hau, sans-serif", - "slug": "noto-sans-pau-cin-hau", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanspaucinhau/v20/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Pau Cin Hau" - } - ] - }, - { - "name": "Noto Sans Phags Pa", - "fontFamily": "Noto Sans Phags Pa, sans-serif", - "slug": "noto-sans-phags-pa", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Phags Pa" - } - ] - }, - { - "name": "Noto Sans Phoenician", - "fontFamily": "Noto Sans Phoenician, sans-serif", - "slug": "noto-sans-phoenician", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansphoenician/v15/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Phoenician" - } - ] - }, - { - "name": "Noto Sans Psalter Pahlavi", - "fontFamily": "Noto Sans Psalter Pahlavi, sans-serif", - "slug": "noto-sans-psalter-pahlavi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanspsalterpahlavi/v15/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Psalter Pahlavi" - } - ] - }, - { - "name": "Noto Sans Rejang", - "fontFamily": "Noto Sans Rejang, sans-serif", - "slug": "noto-sans-rejang", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansrejang/v18/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Rejang" - } - ] - }, - { - "name": "Noto Sans Runic", - "fontFamily": "Noto Sans Runic, sans-serif", - "slug": "noto-sans-runic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansrunic/v15/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Runic" - } - ] - }, - { - "name": "Noto Sans SC", - "fontFamily": "Noto Sans SC, sans-serif", - "slug": "noto-sans-sc", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans SC" - } - ] - }, - { - "name": "Noto Sans Samaritan", - "fontFamily": "Noto Sans Samaritan, sans-serif", - "slug": "noto-sans-samaritan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssamaritan/v15/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUo5jNlOVMzQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Samaritan" - } - ] - }, - { - "name": "Noto Sans Saurashtra", - "fontFamily": "Noto Sans Saurashtra, sans-serif", - "slug": "noto-sans-saurashtra", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssaurashtra/v19/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Saurashtra" - } - ] - }, - { - "name": "Noto Sans Sharada", - "fontFamily": "Noto Sans Sharada, sans-serif", - "slug": "noto-sans-sharada", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sharada" - } - ] - }, - { - "name": "Noto Sans Shavian", - "fontFamily": "Noto Sans Shavian, sans-serif", - "slug": "noto-sans-shavian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansshavian/v15/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Shavian" - } - ] - }, - { - "name": "Noto Sans Siddham", - "fontFamily": "Noto Sans Siddham, sans-serif", - "slug": "noto-sans-siddham", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssiddham/v17/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Siddham" - } - ] - }, - { - "name": "Noto Sans SignWriting", - "fontFamily": "Noto Sans SignWriting, sans-serif", - "slug": "noto-sans-signwriting", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssignwriting/v1/Noas6VX_wIWFbTTCrYmvy9A2UnkL-2SZAWiUEVCARYQemg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans SignWriting" - } - ] - }, - { - "name": "Noto Sans Sinhala", - "fontFamily": "Noto Sans Sinhala, sans-serif", - "slug": "noto-sans-sinhala", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2b5lgLpJwbQRM.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2a5lgLpJwbQRM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwlOa5lgLpJwbQRM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwj-a5lgLpJwbQRM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwtOd5lgLpJwbQRM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwuqd5lgLpJwbQRM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2d5lgLpJwbQRM.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwqSd5lgLpJwbQRM.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sinhala" - } - ] - }, - { - "name": "Noto Sans Sogdian", - "fontFamily": "Noto Sans Sogdian, sans-serif", - "slug": "noto-sans-sogdian", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssogdian/v15/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sogdian" - } - ] - }, - { - "name": "Noto Sans Sora Sompeng", - "fontFamily": "Noto Sans Sora Sompeng, sans-serif", - "slug": "noto-sans-sora-sompeng", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sora Sompeng" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHRO18DpZXJQd4Mu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sora Sompeng" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSi0MDpZXJQd4Mu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sora Sompeng" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSb0MDpZXJQd4Mu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sora Sompeng" - } - ] - }, - { - "name": "Noto Sans Soyombo", - "fontFamily": "Noto Sans Soyombo, sans-serif", - "slug": "noto-sans-soyombo", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssoyombo/v15/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Soyombo" - } - ] - }, - { - "name": "Noto Sans Sundanese", - "fontFamily": "Noto Sans Sundanese, sans-serif", - "slug": "noto-sans-sundanese", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sundanese" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxbNNHCizv7fQES.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sundanese" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6cty3M9HCizv7fQES.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sundanese" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctyOM9HCizv7fQES.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Sundanese" - } - ] - }, - { - "name": "Noto Sans Syloti Nagri", - "fontFamily": "Noto Sans Syloti Nagri, sans-serif", - "slug": "noto-sans-syloti-nagri", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syloti Nagri" - } - ] - }, - { - "name": "Noto Sans Symbols", - "fontFamily": "Noto Sans Symbols, sans-serif", - "slug": "noto-sans-symbols", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ4gavVFRkzrbQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_Q8gavVFRkzrbQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gIw8gavVFRkzrbQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gTw8gavVFRkzrbQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gowggavVFRkzrbQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gmgggavVFRkzrbQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_QggavVFRkzrbQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g1AggavVFRkzrbQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols" - } - ] - }, - { - "name": "Noto Sans Symbols 2", - "fontFamily": "Noto Sans Symbols 2, sans-serif", - "slug": "noto-sans-symbols-2", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssymbols2/v19/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Symbols 2" - } - ] - }, - { - "name": "Noto Sans Syriac", - "fontFamily": "Noto Sans Syriac, sans-serif", - "slug": "noto-sans-syriac", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9caJyZfUL_FC.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD9MaJyZfUL_FC.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Ud9MaJyZfUL_FC.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9MaJyZfUL_FC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Vx9MaJyZfUL_FC.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wd88aJyZfUL_FC.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wk88aJyZfUL_FC.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD88aJyZfUL_FC.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - }, - { - "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Xq88aJyZfUL_FC.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Syriac" - } - ] - }, - { - "name": "Noto Sans TC", - "fontFamily": "Noto Sans TC, sans-serif", - "slug": "noto-sans-tc", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans TC" - } - ] - }, - { - "name": "Noto Sans Tagalog", - "fontFamily": "Noto Sans Tagalog, sans-serif", - "slug": "noto-sans-tagalog", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstagalog/v18/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tagalog" - } - ] - }, - { - "name": "Noto Sans Tagbanwa", - "fontFamily": "Noto Sans Tagbanwa, sans-serif", - "slug": "noto-sans-tagbanwa", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstagbanwa/v18/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tagbanwa" - } - ] - }, - { - "name": "Noto Sans Tai Le", - "fontFamily": "Noto Sans Tai Le, sans-serif", - "slug": "noto-sans-tai-le", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Le" - } - ] - }, - { - "name": "Noto Sans Tai Tham", - "fontFamily": "Noto Sans Tai Tham, sans-serif", - "slug": "noto-sans-tai-tham", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Tham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBBcbPgquyaRGKMw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Tham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBPscPgquyaRGKMw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Tham" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBMIcPgquyaRGKMw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Tham" - } - ] - }, - { - "name": "Noto Sans Tai Viet", - "fontFamily": "Noto Sans Tai Viet, sans-serif", - "slug": "noto-sans-tai-viet", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstaiviet/v16/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tai Viet" - } - ] - }, - { - "name": "Noto Sans Takri", - "fontFamily": "Noto Sans Takri, sans-serif", - "slug": "noto-sans-takri", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstakri/v21/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Takri" - } - ] - }, - { - "name": "Noto Sans Tamil", - "fontFamily": "Noto Sans Tamil, sans-serif", - "slug": "noto-sans-tamil", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGor0RqKDt_EvT.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGo70RqKDt_EvT.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7uYo70RqKDt_EvT.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7v0o70RqKDt_EvT.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7sYpL0RqKDt_EvT.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7shpL0RqKDt_EvT.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGpL0RqKDt_EvT.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tvpL0RqKDt_EvT.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil" - } - ] - }, - { - "name": "Noto Sans Tamil Supplement", - "fontFamily": "Noto Sans Tamil Supplement, sans-serif", - "slug": "noto-sans-tamil-supplement", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstamilsupplement/v19/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tamil Supplement" - } - ] - }, - { - "name": "Noto Sans Tangsa", - "fontFamily": "Noto Sans Tangsa, sans-serif", - "slug": "noto-sans-tangsa", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1YkyoRYdplyJDA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tangsa" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1qkyoRYdplyJDA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tangsa" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2GlCoRYdplyJDA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tangsa" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2_lCoRYdplyJDA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tangsa" - } - ] - }, - { - "name": "Noto Sans Telugu", - "fontFamily": "Noto Sans Telugu, sans-serif", - "slug": "noto-sans-telugu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezfqQUbf-3v37w.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zbqQUbf-3v37w.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntJTbqQUbf-3v37w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntSTbqQUbf-3v37w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntpTHqQUbf-3v37w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntnDHqQUbf-3v37w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zHqQUbf-3v37w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt0jHqQUbf-3v37w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Telugu" - } - ] - }, - { - "name": "Noto Sans Thaana", - "fontFamily": "Noto Sans Thaana, sans-serif", - "slug": "noto-sans-thaana", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbxLhnu4-tbNu.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VrbhLhnu4-tbNu.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4W1bhLhnu4-tbNu.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XZbhLhnu4-tbNu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4U1aRLhnu4-tbNu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4UMaRLhnu4-tbNu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VraRLhnu4-tbNu.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VCaRLhnu4-tbNu.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thaana" - } - ] - }, - { - "name": "Noto Sans Thai", - "fontFamily": "Noto Sans Thai, sans-serif", - "slug": "noto-sans-thai", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RspzF-QRvzzXg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRtpzF-QRvzzXg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU8ptpzF-QRvzzXg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU6ZtpzF-QRvzzXg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU0pqpzF-QRvzzXg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU3NqpzF-QRvzzXg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRqpzF-QRvzzXg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUz1qpzF-QRvzzXg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai" - } - ] - }, - { - "name": "Noto Sans Thai Looped", - "fontFamily": "Noto Sans Thai Looped, sans-serif", - "slug": "noto-sans-thai-looped", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50fF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3YX6AYeCT_Wfd1.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y84E4UgrzUO5sKA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yl4I4UgrzUO5sKA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gO6ocWiHvWQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yz4M4UgrzUO5sKA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y44Q4UgrzUO5sKA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yh4U4UgrzUO5sKA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Ym4Y4UgrzUO5sKA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - }, - { - "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yv4c4UgrzUO5sKA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Sans Thai Looped" - } - ] - }, - { - "name": "Noto Sans Tifinagh", - "fontFamily": "Noto Sans Tifinagh, sans-serif", - "slug": "noto-sans-tifinagh", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstifinagh/v17/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tifinagh" - } - ] - }, - { - "name": "Noto Sans Tirhuta", - "fontFamily": "Noto Sans Tirhuta, sans-serif", - "slug": "noto-sans-tirhuta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanstirhuta/v15/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Tirhuta" - } - ] - }, - { - "name": "Noto Sans Ugaritic", - "fontFamily": "Noto Sans Ugaritic, sans-serif", - "slug": "noto-sans-ugaritic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansugaritic/v15/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Ugaritic" - } - ] - }, - { - "name": "Noto Sans Vai", - "fontFamily": "Noto Sans Vai, sans-serif", - "slug": "noto-sans-vai", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Vai" - } - ] - }, - { - "name": "Noto Sans Wancho", - "fontFamily": "Noto Sans Wancho, sans-serif", - "slug": "noto-sans-wancho", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Wancho" - } - ] - }, - { - "name": "Noto Sans Warang Citi", - "fontFamily": "Noto Sans Warang Citi, sans-serif", - "slug": "noto-sans-warang-citi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Warang Citi" - } - ] - }, - { - "name": "Noto Sans Yi", - "fontFamily": "Noto Sans Yi, sans-serif", - "slug": "noto-sans-yi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosansyi/v19/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Yi" - } - ] - }, - { - "name": "Noto Sans Zanabazar Square", - "fontFamily": "Noto Sans Zanabazar Square, sans-serif", - "slug": "noto-sans-zanabazar-square", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notosanszanabazarsquare/v16/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Sans Zanabazar Square" - } - ] - }, - { - "name": "Noto Serif", - "fontFamily": "Noto Serif, serif", - "slug": "noto-serif", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserif/v21/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v21/ga6Kaw1J5X9T9RW6j9bNfFIWbTq6fMRRMw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v21/ga6Law1J5X9T9RW6j9bNdOwzTRCUcM1IKoY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/notoserif/v21/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedO9NOoYIDg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Serif" - } - ] - }, - { - "name": "Noto Serif Ahom", - "fontFamily": "Noto Serif Ahom, serif", - "slug": "noto-serif-ahom", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifahom/v19/FeVIS0hfp6cprmEUffAW_fUL_AN-wuYrPFiwaw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ahom" - } - ] - }, - { - "name": "Noto Serif Armenian", - "fontFamily": "Noto Serif Armenian, serif", - "slug": "noto-serif-armenian", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8ObxvXagGdkbg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8KbxvXagGdkbg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZ1cKbxvXagGdkbg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8KbxvXagGdkbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZucKbxvXagGdkbg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZVcWbxvXagGdkbg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZbMWbxvXagGdkbg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8WbxvXagGdkbg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZIsWbxvXagGdkbg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Armenian" - } - ] - }, - { - "name": "Noto Serif Balinese", - "fontFamily": "Noto Serif Balinese, serif", - "slug": "noto-serif-balinese", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifbalinese/v18/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRbgJdhapcUU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Balinese" - } - ] - }, - { - "name": "Noto Serif Bengali", - "fontFamily": "Noto Serif Bengali, serif", - "slug": "noto-serif-bengali", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAH3qn4LjQH8yD.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAHnqn4LjQH8yD.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfdeHnqn4LjQH8yD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHnqn4LjQH8yD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcyHnqn4LjQH8yD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffeGXqn4LjQH8yD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffnGXqn4LjQH8yD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAGXqn4LjQH8yD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfepGXqn4LjQH8yD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Bengali" - } - ] - }, - { - "name": "Noto Serif Devanagari", - "fontFamily": "Noto Serif Devanagari, serif", - "slug": "noto-serif-devanagari", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-og-HMUe1u_dv.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-ow-HMUe1u_dv.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTBgow-HMUe1u_dv.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-ow-HMUe1u_dv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTAMow-HMUe1u_dv.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDgpA-HMUe1u_dv.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDZpA-HMUe1u_dv.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-pA-HMUe1u_dv.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTCXpA-HMUe1u_dv.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Devanagari" - } - ] - }, - { - "name": "Noto Serif Display", - "fontFamily": "Noto Serif Display, serif", - "slug": "noto-serif-display", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd49gKaDU9hvzC.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd4tgKaDU9hvzC.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVoD4tgKaDU9hvzC.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4tgKaDU9hvzC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpv4tgKaDU9hvzC.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVqD5dgKaDU9hvzC.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVq65dgKaDU9hvzC.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd5dgKaDU9hvzC.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVr05dgKaDU9hvzC.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBIYjEfg-zCmf4.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBJYjEfg-zCmf4.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoW5JYjEfg-zCmf4.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBJYjEfg-zCmf4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoQJJYjEfg-zCmf4.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-Voe5OYjEfg-zCmf4.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoddOYjEfg-zCmf4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBOYjEfg-zCmf4.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoZlOYjEfg-zCmf4.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Noto Serif Display" - } - ] - }, - { - "name": "Noto Serif Dogra", - "fontFamily": "Noto Serif Dogra, serif", - "slug": "noto-serif-dogra", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifdogra/v16/MQpP-XquKMC7ROPP3QOOlm7xPu3fGy63IbPzkns.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Dogra" - } - ] - }, - { - "name": "Noto Serif Ethiopic", - "fontFamily": "Noto Serif Ethiopic, serif", - "slug": "noto-serif-ethiopic", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSQjkaO9UVLyiw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSUjkaO9UVLyiw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCkyUjkaO9UVLyiw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUjkaO9UVLyiw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxC_yUjkaO9UVLyiw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCEyIjkaO9UVLyiw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCKiIjkaO9UVLyiw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSIjkaO9UVLyiw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCZCIjkaO9UVLyiw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Ethiopic" - } - ] - }, - { - "name": "Noto Serif Georgian", - "fontFamily": "Noto Serif Georgian, serif", - "slug": "noto-serif-georgian", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvsfdzTw-FgZxQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzvofdzTw-FgZxQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSEPofdzTw-FgZxQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvofdzTw-FgZxQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSfPofdzTw-FgZxQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSkP0fdzTw-FgZxQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSqf0fdzTw-FgZxQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzv0fdzTw-FgZxQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aS5_0fdzTw-FgZxQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Georgian" - } - ] - }, - { - "name": "Noto Serif Grantha", - "fontFamily": "Noto Serif Grantha, serif", - "slug": "noto-serif-grantha", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifgrantha/v19/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqFENLR7fHGw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Grantha" - } - ] - }, - { - "name": "Noto Serif Gujarati", - "fontFamily": "Noto Serif Gujarati, serif", - "slug": "noto-serif-gujarati", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycYzuM1Kf-OJu.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuaycIzuM1Kf-OJu.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuZscIzuM1Kf-OJu.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycIzuM1Kf-OJu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYAcIzuM1Kf-OJu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Hubsd4zuM1Kf-OJu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HubVd4zuM1Kf-OJu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huayd4zuM1Kf-OJu.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huabd4zuM1Kf-OJu.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gujarati" - } - ] - }, - { - "name": "Noto Serif Gurmukhi", - "fontFamily": "Noto Serif Gurmukhi, serif", - "slug": "noto-serif-gurmukhi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eBTNmqVU7y6l.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-eRTNmqVU7y6l.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr7geRTNmqVU7y6l.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eRTNmqVU7y6l.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6MeRTNmqVU7y6l.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5gfhTNmqVU7y6l.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5ZfhTNmqVU7y6l.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-fhTNmqVU7y6l.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4XfhTNmqVU7y6l.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Gurmukhi" - } - ] - }, - { - "name": "Noto Serif HK", - "fontFamily": "Noto Serif HK, serif", - "slug": "noto-serif-hk", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-K2RmV9Su1M6i.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMcgK2RmV9Su1M6i.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMd-K2RmV9Su1M6i.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMdMK2RmV9Su1M6i.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMegLGRmV9Su1M6i.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMeZLGRmV9Su1M6i.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-LGRmV9Su1M6i.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMfXLGRmV9Su1M6i.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif HK" - } - ] - }, - { - "name": "Noto Serif Hebrew", - "fontFamily": "Noto Serif Hebrew, serif", - "slug": "noto-serif-hebrew", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwTAG8_vlQxz24.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwSAG8_vlQxz24.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVFISAG8_vlQxz24.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSAG8_vlQxz24.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVD4SAG8_vlQxz24.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVNIVAG8_vlQxz24.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVOsVAG8_vlQxz24.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwVAG8_vlQxz24.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVKUVAG8_vlQxz24.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Hebrew" - } - ] - }, - { - "name": "Noto Serif JP", - "fontFamily": "Noto Serif JP, serif", - "slug": "noto-serif-jp", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif JP" - } - ] - }, - { - "name": "Noto Serif KR", - "fontFamily": "Noto Serif KR, serif", - "slug": "noto-serif-kr", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif KR" - } - ] - }, - { - "name": "Noto Serif Kannada", - "fontFamily": "Noto Serif Kannada, serif", - "slug": "noto-serif-kannada", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYCceRJ71svgcI.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYDceRJ71svgcI.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgZgDceRJ71svgcI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDceRJ71svgcI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgfQDceRJ71svgcI.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgRgEceRJ71svgcI.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgSEEceRJ71svgcI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYEceRJ71svgcI.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgW8EceRJ71svgcI.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Kannada" - } - ] - }, - { - "name": "Noto Serif Khmer", - "fontFamily": "Noto Serif Khmer, serif", - "slug": "noto-serif-khmer", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B4wXEZK9Xo4xg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaB8wXEZK9Xo4xg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNth8wXEZK9Xo4xg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8wXEZK9Xo4xg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN2h8wXEZK9Xo4xg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNNhgwXEZK9Xo4xg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNDxgwXEZK9Xo4xg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaBgwXEZK9Xo4xg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNQRgwXEZK9Xo4xg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khmer" - } - ] - }, - { - "name": "Noto Serif Khojki", - "fontFamily": "Noto Serif Khojki, serif", - "slug": "noto-serif-khojki", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY0ghvyZ0Qtc5HAQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khojki" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY4AhvyZ0Qtc5HAQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khojki" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYDA9vyZ0Qtc5HAQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khojki" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYNQ9vyZ0Qtc5HAQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Khojki" - } - ] - }, - { - "name": "Noto Serif Lao", - "fontFamily": "Noto Serif Lao, serif", - "slug": "noto-serif-lao", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMLrvOjlmyhHHQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMKrvOjlmyhHHQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8Vb0KrvOjlmyhHHQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKrvOjlmyhHHQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VdEKrvOjlmyhHHQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VT0NrvOjlmyhHHQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VQQNrvOjlmyhHHQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMNrvOjlmyhHHQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VUoNrvOjlmyhHHQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Lao" - } - ] - }, - { - "name": "Noto Serif Malayalam", - "fontFamily": "Noto Serif Malayalam, serif", - "slug": "noto-serif-malayalam", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-1fnVwHpQVySg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-xfnVwHpQVySg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL16exfnVwHpQVySg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xfnVwHpQVySg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1hexfnVwHpQVySg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1aetfnVwHpQVySg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1UOtfnVwHpQVySg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-tfnVwHpQVySg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1HutfnVwHpQVySg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Malayalam" - } - ] - }, - { - "name": "Noto Serif Myanmar", - "fontFamily": "Noto Serif Myanmar, serif", - "slug": "noto-serif-myanmar", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJudM7F2Yv76aBKKs-bHMQfAHUw3jnNwBDsU9X6RPzQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNbDHMefv2TeXJng.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNCDLMefv2TeXJng.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1pBrocdDqRA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNUDPMefv2TeXJng.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNfDTMefv2TeXJng.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNGDXMefv2TeXJng.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNBDbMefv2TeXJng.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNIDfMefv2TeXJng.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Myanmar" - } - ] - }, - { - "name": "Noto Serif NP Hmong", - "fontFamily": "Noto Serif NP Hmong, serif", - "slug": "noto-serif-np-hmong", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbjPhFLp3u0rVO-d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif NP Hmong" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbj9hFLp3u0rVO-d.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif NP Hmong" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgRg1Lp3u0rVO-d.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif NP Hmong" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgog1Lp3u0rVO-d.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif NP Hmong" - } - ] - }, - { - "name": "Noto Serif Oriya", - "fontFamily": "Noto Serif Oriya, serif", - "slug": "noto-serif-oriya", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxrc_Hy-v039MF1j.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxru_Hy-v039MF1j.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxoC-3y-v039MF1j.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Oriya" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxo7-3y-v039MF1j.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Oriya" - } - ] - }, - { - "name": "Noto Serif SC", - "fontFamily": "Noto Serif SC, serif", - "slug": "noto-serif-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif SC" - } - ] - }, - { - "name": "Noto Serif Sinhala", - "fontFamily": "Noto Serif Sinhala, serif", - "slug": "noto-serif-sinhala", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxRlMsxaLRn3W-.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExR1MsxaLRn3W-.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pHvR1MsxaLRn3W-.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR1MsxaLRn3W-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGDR1MsxaLRn3W-.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFvQFMsxaLRn3W-.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFWQFMsxaLRn3W-.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExQFMsxaLRn3W-.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pEYQFMsxaLRn3W-.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Sinhala" - } - ] - }, - { - "name": "Noto Serif TC", - "fontFamily": "Noto Serif TC, serif", - "slug": "noto-serif-tc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif TC" - } - ] - }, - { - "name": "Noto Serif Tamil", - "fontFamily": "Noto Serif Tamil, serif", - "slug": "noto-serif-tamil", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN6R8Pz3v8Etew.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNN-R8Pz3v8Etew.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecat6t-R8Pz3v8Etew.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-R8Pz3v8Etew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatht-R8Pz3v8Etew.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatatiR8Pz3v8Etew.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatU9iR8Pz3v8Etew.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNNiR8Pz3v8Etew.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatHdiR8Pz3v8Etew.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5svbzncQ9e3wx.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5s_bzncQ9e3wx.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJwns_bzncQ9e3wx.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5s_bzncQ9e3wx.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJxLs_bzncQ9e3wx.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyntPbzncQ9e3wx.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyetPbzncQ9e3wx.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5tPbzncQ9e3wx.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJzQtPbzncQ9e3wx.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Noto Serif Tamil" - } - ] - }, - { - "name": "Noto Serif Tangut", - "fontFamily": "Noto Serif Tangut, serif", - "slug": "noto-serif-tangut", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriftangut/v15/xn76YGc72GKoTvER4Gn3b4m9Ern7Em41fcvN2KT4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tangut" - } - ] - }, - { - "name": "Noto Serif Telugu", - "fontFamily": "Noto Serif Telugu, serif", - "slug": "noto-serif-telugu", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TGwuY2fjgrZYA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTCwuY2fjgrZYA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DqzCwuY2fjgrZYA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCwuY2fjgrZYA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DxzCwuY2fjgrZYA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DKzewuY2fjgrZYA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DEjewuY2fjgrZYA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTewuY2fjgrZYA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DXDewuY2fjgrZYA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Telugu" - } - ] - }, - { - "name": "Noto Serif Thai", - "fontFamily": "Noto Serif Thai, serif", - "slug": "noto-serif-thai", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiFuRRCmsdu0Qx.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiF-RRCmsdu0Qx.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0p8F-RRCmsdu0Qx.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF-RRCmsdu0Qx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oQF-RRCmsdu0Qx.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0r8EORRCmsdu0Qx.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0rFEORRCmsdu0Qx.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiEORRCmsdu0Qx.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qLEORRCmsdu0Qx.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Thai" - } - ] - }, - { - "name": "Noto Serif Tibetan", - "fontFamily": "Noto Serif Tibetan, serif", - "slug": "noto-serif-tibetan", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYdPS7rdSy_32c.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYcPS7rdSy_32c.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIugcPS7rdSy_32c.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcPS7rdSy_32c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIoQcPS7rdSy_32c.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmImgbPS7rdSy_32c.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIlEbPS7rdSy_32c.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYbPS7rdSy_32c.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIh8bPS7rdSy_32c.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Noto Serif Tibetan" - } - ] - }, - { - "name": "Noto Serif Toto", - "fontFamily": "Noto Serif Toto, serif", - "slug": "noto-serif-toto", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCy3Il-aj55vdNug.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Toto" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCx_Il-aj55vdNug.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Toto" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC_PPl-aj55vdNug.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Toto" - }, - { - "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC8rPl-aj55vdNug.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Toto" - } - ] - }, - { - "name": "Noto Serif Yezidi", - "fontFamily": "Noto Serif Yezidi, serif", - "slug": "noto-serif-yezidi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEkrlGJgmVCqg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Serif Yezidi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD6SEkrlGJgmVCqg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Noto Serif Yezidi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDBSYkrlGJgmVCqg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Noto Serif Yezidi" - }, - { - "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDPCYkrlGJgmVCqg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Noto Serif Yezidi" - } - ] - }, - { - "name": "Noto Traditional Nushu", - "fontFamily": "Noto Traditional Nushu, sans-serif", - "slug": "noto-traditional-nushu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v16/SZco3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67J011GNh6SYA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Noto Traditional Nushu" - } - ] - }, - { - "name": "Nova Cut", - "fontFamily": "Nova Cut, system-ui", - "slug": "nova-cut", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novacut/v24/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Cut" - } - ] - }, - { - "name": "Nova Flat", - "fontFamily": "Nova Flat, system-ui", - "slug": "nova-flat", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novaflat/v24/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Flat" - } - ] - }, - { - "name": "Nova Mono", - "fontFamily": "Nova Mono, monospace", - "slug": "nova-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novamono/v18/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Mono" - } - ] - }, - { - "name": "Nova Oval", - "fontFamily": "Nova Oval, system-ui", - "slug": "nova-oval", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novaoval/v24/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Oval" - } - ] - }, - { - "name": "Nova Round", - "fontFamily": "Nova Round, system-ui", - "slug": "nova-round", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novaround/v21/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Round" - } - ] - }, - { - "name": "Nova Script", - "fontFamily": "Nova Script, system-ui", - "slug": "nova-script", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novascript/v25/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Script" - } - ] - }, - { - "name": "Nova Slim", - "fontFamily": "Nova Slim, system-ui", - "slug": "nova-slim", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novaslim/v24/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Slim" - } - ] - }, - { - "name": "Nova Square", - "fontFamily": "Nova Square, system-ui", - "slug": "nova-square", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/novasquare/v20/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nova Square" - } - ] - }, - { - "name": "Numans", - "fontFamily": "Numans, sans-serif", - "slug": "numans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Numans" - } - ] - }, - { - "name": "Nunito", - "fontFamily": "Nunito, sans-serif", - "slug": "nunito", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshRTM9jo7eTWk.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhRTM9jo7eTWk.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM9jo7eTWk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTM9jo7eTWk.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM9jo7eTWk.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM9jo7eTWk.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTM9jo7eTWk.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTM9jo7eTWk.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXA3iqzbXWnoeg.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83A3iqzbXWnoeg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3iqzbXWnoeg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNin3A3iqzbXWnoeg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3c3iqzbXWnoeg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSnc3iqzbXWnoeg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXc3iqzbXWnoeg.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Nunito" - }, - { - "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3iqzbXWnoeg.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Nunito" - } - ] - }, - { - "name": "Nunito Sans", - "fontFamily": "Nunito Sans, sans-serif", - "slug": "nunito-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVilntF8kA_Ykqw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GiClntF8kA_Ykqw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilntF8kA_Ykqw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G5ClntF8kA_Ykqw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GCC5ntF8kA_Ykqw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5ntF8kA_Ykqw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVi5ntF8kA_Ykqw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4Gfy5ntF8kA_Ykqw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP91UgIfM0qxVd.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmrR91UgIfM0qxVd.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmqP91UgIfM0qxVd.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmq991UgIfM0qxVd.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpR8FUgIfM0qxVd.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpo8FUgIfM0qxVd.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP8FUgIfM0qxVd.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - }, - { - "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmom8FUgIfM0qxVd.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Nunito Sans" - } - ] - }, - { - "name": "Nuosu SIL", - "fontFamily": "Nuosu SIL, serif", - "slug": "nuosu-sil", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/nuosusil/v5/8vIK7wM3wmRn_kc4uAjeFGxbO_zo-w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Nuosu SIL" - } - ] - }, - { - "name": "Odibee Sans", - "fontFamily": "Odibee Sans, system-ui", - "slug": "odibee-sans", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/odibeesans/v14/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Odibee Sans" - } - ] - }, - { - "name": "Odor Mean Chey", - "fontFamily": "Odor Mean Chey, serif", - "slug": "odor-mean-chey", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/odormeanchey/v27/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Odor Mean Chey" - } - ] - }, - { - "name": "Offside", - "fontFamily": "Offside, system-ui", - "slug": "offside", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/offside/v22/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Offside" - } - ] - }, - { - "name": "Oi", - "fontFamily": "Oi, system-ui", - "slug": "oi", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oi/v16/w8gXH2EuRqtaut6yjBOG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oi" - } - ] - }, - { - "name": "Old Standard TT", - "fontFamily": "Old Standard TT, serif", - "slug": "old-standard-tt", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Old Standard TT" - }, - { - "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Old Standard TT" - }, - { - "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Old Standard TT" - } - ] - }, - { - "name": "Oldenburg", - "fontFamily": "Oldenburg, system-ui", - "slug": "oldenburg", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oldenburg/v20/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oldenburg" - } - ] - }, - { - "name": "Ole", - "fontFamily": "Ole, cursive", - "slug": "ole", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rd89fw69qJ_ew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ole" - } - ] - }, - { - "name": "Oleo Script", - "fontFamily": "Oleo Script, system-ui", - "slug": "oleo-script", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oleo Script" - }, - { - "src": "http://fonts.gstatic.com/s/oleoscript/v14/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oleo Script" - } - ] - }, - { - "name": "Oleo Script Swash Caps", - "fontFamily": "Oleo Script Swash Caps, system-ui", - "slug": "oleo-script-swash-caps", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oleo Script Swash Caps" - }, - { - "src": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oleo Script Swash Caps" - } - ] - }, - { - "name": "Oooh Baby", - "fontFamily": "Oooh Baby, cursive", - "slug": "oooh-baby", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ooohbaby/v4/2sDcZGJWgJTT2Jf76xQDb2-4C7wFZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oooh Baby" - } - ] - }, - { - "name": "Open Sans", - "fontFamily": "Open Sans, sans-serif", - "slug": "open-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4nY1M2xLER.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4nY1M2xLER.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4nY1M2xLER.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4nY1M2xLER.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4nY1M2xLER.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4nY1M2xLER.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVcUwaERZjA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVcUwaERZjA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVcUwaERZjA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVcUwaERZjA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVcUwaERZjA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Open Sans" - }, - { - "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVcUwaERZjA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Open Sans" - } - ] - }, - { - "name": "Oranienbaum", - "fontFamily": "Oranienbaum, serif", - "slug": "oranienbaum", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oranienbaum" - } - ] - }, - { - "name": "Orbitron", - "fontFamily": "Orbitron, sans-serif", - "slug": "orbitron", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Orbitron" - }, - { - "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xpmIyXjU1pg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Orbitron" - }, - { - "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxpmIyXjU1pg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Orbitron" - }, - { - "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_CmxpmIyXjU1pg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Orbitron" - }, - { - "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxpmIyXjU1pg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Orbitron" - }, - { - "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxpmIyXjU1pg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Orbitron" - } - ] - }, - { - "name": "Oregano", - "fontFamily": "Oregano, system-ui", - "slug": "oregano", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oregano/v13/If2IXTPxciS3H4S2kZffPznO3yM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oregano" - }, - { - "src": "http://fonts.gstatic.com/s/oregano/v13/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Oregano" - } - ] - }, - { - "name": "Orelega One", - "fontFamily": "Orelega One, system-ui", - "slug": "orelega-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/orelegaone/v10/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Orelega One" - } - ] - }, - { - "name": "Orienta", - "fontFamily": "Orienta, sans-serif", - "slug": "orienta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/orienta/v15/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Orienta" - } - ] - }, - { - "name": "Original Surfer", - "fontFamily": "Original Surfer, system-ui", - "slug": "original-surfer", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/originalsurfer/v18/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Original Surfer" - } - ] - }, - { - "name": "Oswald", - "fontFamily": "Oswald, sans-serif", - "slug": "oswald", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Oswald" - }, - { - "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Oswald" - }, - { - "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oswald" - }, - { - "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Oswald" - }, - { - "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Oswald" - }, - { - "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oswald" - } - ] - }, - { - "name": "Outfit", - "fontFamily": "Outfit, sans-serif", - "slug": "outfit", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4G-EiAou6Y.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bC1C4G-EiAou6Y.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4G-EiAou6Y.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4G-EiAou6Y.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4G-EiAou6Y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bCyC4G-EiAou6Y.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Outfit" - }, - { - "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4G-EiAou6Y.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Outfit" - } - ] - }, - { - "name": "Over the Rainbow", - "fontFamily": "Over the Rainbow, cursive", - "slug": "over-the-rainbow", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/overtherainbow/v16/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Over the Rainbow" - } - ] - }, - { - "name": "Overlock", - "fontFamily": "Overlock, system-ui", - "slug": "overlock", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Overlock" - }, - { - "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Overlock" - }, - { - "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Overlock" - }, - { - "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Overlock" - }, - { - "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Overlock" - }, - { - "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Overlock" - } - ] - }, - { - "name": "Overlock SC", - "fontFamily": "Overlock SC, system-ui", - "slug": "overlock-sc", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/overlocksc/v21/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Overlock SC" - } - ] - }, - { - "name": "Overpass", - "fontFamily": "Overpass, sans-serif", - "slug": "overpass", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PLrOZCLtce-og.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPPrOZCLtce-og.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrOZCLtce-og.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrOZCLtce-og.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6zvPrOZCLtce-og.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6IvTrOZCLtce-og.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6G_TrOZCLtce-og.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPTrOZCLtce-og.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6VfTrOZCLtce-og.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADe5qPl8Kuosgz.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDepqPl8Kuosgz.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqPl8Kuosgz.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqPl8Kuosgz.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLAxepqPl8Kuosgz.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDdfZqPl8Kuosgz.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDkfZqPl8Kuosgz.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDfZqPl8Kuosgz.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Overpass" - }, - { - "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCqfZqPl8Kuosgz.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Overpass" - } - ] - }, - { - "name": "Overpass Mono", - "fontFamily": "Overpass Mono, monospace", - "slug": "overpass-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EWKokzzXur-SmIr.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Overpass Mono" - }, - { - "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUokzzXur-SmIr.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Overpass Mono" - }, - { - "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXmokzzXur-SmIr.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Overpass Mono" - }, - { - "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUKpUzzXur-SmIr.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Overpass Mono" - }, - { - "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUzpUzzXur-SmIr.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Overpass Mono" - } - ] - }, - { - "name": "Ovo", - "fontFamily": "Ovo, serif", - "slug": "ovo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ovo/v17/yYLl0h7Wyfzjy4Q5_3WVxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ovo" - } - ] - }, - { - "name": "Oxanium", - "fontFamily": "Oxanium, system-ui", - "slug": "oxanium", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JfniMBXQ7d67x.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Oxanium" - }, - { - "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G80XfniMBXQ7d67x.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Oxanium" - }, - { - "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfniMBXQ7d67x.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oxanium" - }, - { - "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G817fniMBXQ7d67x.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Oxanium" - }, - { - "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82XeXiMBXQ7d67x.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Oxanium" - }, - { - "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82ueXiMBXQ7d67x.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oxanium" - }, - { - "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JeXiMBXQ7d67x.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Oxanium" - } - ] - }, - { - "name": "Oxygen", - "fontFamily": "Oxygen, sans-serif", - "slug": "oxygen", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Oxygen" - }, - { - "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oxygen" - }, - { - "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Oxygen" - } - ] - }, - { - "name": "Oxygen Mono", - "fontFamily": "Oxygen Mono, monospace", - "slug": "oxygen-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/oxygenmono/v14/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Oxygen Mono" - } - ] - }, - { - "name": "PT Mono", - "fontFamily": "PT Mono, monospace", - "slug": "pt-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Mono" - } - ] - }, - { - "name": "PT Sans", - "fontFamily": "PT Sans, sans-serif", - "slug": "pt-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79P0WOxOGMMDQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ptsans/v17/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "PT Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "PT Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ptsans/v17/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "PT Sans" - } - ] - }, - { - "name": "PT Sans Caption", - "fontFamily": "PT Sans Caption, sans-serif", - "slug": "pt-sans-caption", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Sans Caption" - }, - { - "src": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "PT Sans Caption" - } - ] - }, - { - "name": "PT Sans Narrow", - "fontFamily": "PT Sans Narrow, sans-serif", - "slug": "pt-sans-narrow", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Sans Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "PT Sans Narrow" - } - ] - }, - { - "name": "PT Serif", - "fontFamily": "PT Serif, serif", - "slug": "pt-serif", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "PT Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "PT Serif" - }, - { - "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "PT Serif" - } - ] - }, - { - "name": "PT Serif Caption", - "fontFamily": "PT Serif Caption, serif", - "slug": "pt-serif-caption", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "PT Serif Caption" - }, - { - "src": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "PT Serif Caption" - } - ] - }, - { - "name": "Pacifico", - "fontFamily": "Pacifico, cursive", - "slug": "pacifico", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pacifico" - } - ] - }, - { - "name": "Padauk", - "fontFamily": "Padauk, sans-serif", - "slug": "padauk", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/padauk/v16/RrQRboJg-id7OnbBa0_g3LlYbg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Padauk" - }, - { - "src": "http://fonts.gstatic.com/s/padauk/v16/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Padauk" - } - ] - }, - { - "name": "Padyakke Expanded One", - "fontFamily": "Padyakke Expanded One, system-ui", - "slug": "padyakke-expanded-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/padyakkeexpandedone/v2/K2FvfY9El_tbR0JfHb6WWvrBaU6XAUvC4IAYOKRkpDjeoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Padyakke Expanded One" - } - ] - }, - { - "name": "Palanquin", - "fontFamily": "Palanquin, sans-serif", - "slug": "palanquin", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Palanquin" - }, - { - "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Palanquin" - }, - { - "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Palanquin" - }, - { - "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Palanquin" - }, - { - "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Palanquin" - }, - { - "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Palanquin" - }, - { - "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Palanquin" - } - ] - }, - { - "name": "Palanquin Dark", - "fontFamily": "Palanquin Dark, sans-serif", - "slug": "palanquin-dark", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Palanquin Dark" - }, - { - "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Palanquin Dark" - }, - { - "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Palanquin Dark" - }, - { - "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Palanquin Dark" - } - ] - }, - { - "name": "Pangolin", - "fontFamily": "Pangolin, cursive", - "slug": "pangolin", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pangolin/v11/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pangolin" - } - ] - }, - { - "name": "Paprika", - "fontFamily": "Paprika, system-ui", - "slug": "paprika", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/paprika/v21/8QIJdijZitv49rDfuIgOq7jkAOw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Paprika" - } - ] - }, - { - "name": "Parisienne", - "fontFamily": "Parisienne, cursive", - "slug": "parisienne", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Parisienne" - } - ] - }, - { - "name": "Passero One", - "fontFamily": "Passero One, system-ui", - "slug": "passero-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/passeroone/v24/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Passero One" - } - ] - }, - { - "name": "Passion One", - "fontFamily": "Passion One, system-ui", - "slug": "passion-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/passionone/v16/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Passion One" - }, - { - "src": "http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Passion One" - }, - { - "src": "http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Passion One" - } - ] - }, - { - "name": "Passions Conflict", - "fontFamily": "Passions Conflict, cursive", - "slug": "passions-conflict", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/passionsconflict/v5/kmKnZrcrFhfafnWX9x0GuEC-zowow5NeYRI4CN2V.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Passions Conflict" - } - ] - }, - { - "name": "Pathway Extreme", - "fontFamily": "Pathway Extreme, sans-serif", - "slug": "pathway-extreme", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2Nx1Kyw3igP5eg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWN11Kyw3igP5eg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakht11Kyw3igP5eg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2N11Kyw3igP5eg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak6t11Kyw3igP5eg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakBtp1Kyw3igP5eg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakP9p1Kyw3igP5eg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWNp1Kyw3igP5eg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakcdp1Kyw3igP5eg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daSYzqAbpepnF.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4daCYzqAbpepnF.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ7DaCYzqAbpepnF.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daCYzqAbpepnF.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6vaCYzqAbpepnF.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ5DbyYzqAbpepnF.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ56byYzqAbpepnF.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4dbyYzqAbpepnF.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - }, - { - "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ40byYzqAbpepnF.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Pathway Extreme" - } - ] - }, - { - "name": "Pathway Gothic One", - "fontFamily": "Pathway Gothic One, sans-serif", - "slug": "pathway-gothic-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pathwaygothicone/v15/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pathway Gothic One" - } - ] - }, - { - "name": "Patrick Hand", - "fontFamily": "Patrick Hand, cursive", - "slug": "patrick-hand", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/patrickhand/v20/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Patrick Hand" - } - ] - }, - { - "name": "Patrick Hand SC", - "fontFamily": "Patrick Hand SC, cursive", - "slug": "patrick-hand-sc", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/patrickhandsc/v13/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Patrick Hand SC" - } - ] - }, - { - "name": "Pattaya", - "fontFamily": "Pattaya, sans-serif", - "slug": "pattaya", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pattaya/v13/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pattaya" - } - ] - }, - { - "name": "Patua One", - "fontFamily": "Patua One, system-ui", - "slug": "patua-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/patuaone/v16/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Patua One" - } - ] - }, - { - "name": "Pavanam", - "fontFamily": "Pavanam, sans-serif", - "slug": "pavanam", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pavanam/v11/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pavanam" - } - ] - }, - { - "name": "Paytone One", - "fontFamily": "Paytone One, sans-serif", - "slug": "paytone-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/paytoneone/v21/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Paytone One" - } - ] - }, - { - "name": "Peddana", - "fontFamily": "Peddana, serif", - "slug": "peddana", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/peddana/v20/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Peddana" - } - ] - }, - { - "name": "Peralta", - "fontFamily": "Peralta, system-ui", - "slug": "peralta", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/peralta/v17/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Peralta" - } - ] - }, - { - "name": "Permanent Marker", - "fontFamily": "Permanent Marker, cursive", - "slug": "permanent-marker", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Permanent Marker" - } - ] - }, - { - "name": "Petemoss", - "fontFamily": "Petemoss, cursive", - "slug": "petemoss", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/petemoss/v5/A2BZn5tA2xgtGWHZgxkesKb9UouQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Petemoss" - } - ] - }, - { - "name": "Petit Formal Script", - "fontFamily": "Petit Formal Script, cursive", - "slug": "petit-formal-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/petitformalscript/v14/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Petit Formal Script" - } - ] - }, - { - "name": "Petrona", - "fontFamily": "Petrona, serif", - "slug": "petrona", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsARBH452Mvds.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NsQRBH452Mvds.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk7TsQRBH452Mvds.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsQRBH452Mvds.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6_sQRBH452Mvds.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5TtgRBH452Mvds.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5qtgRBH452Mvds.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NtgRBH452Mvds.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4ktgRBH452Mvds.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwDFYpUN-dsIWs.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwCFYpUN-dsIWs.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8rICFYpUN-dsIWs.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwCFYpUN-dsIWs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8t4CFYpUN-dsIWs.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8jIFFYpUN-dsIWs.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8gsFFYpUN-dsIWs.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwFFYpUN-dsIWs.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Petrona" - }, - { - "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8kUFFYpUN-dsIWs.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Petrona" - } - ] - }, - { - "name": "Philosopher", - "fontFamily": "Philosopher, sans-serif", - "slug": "philosopher", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Philosopher" - }, - { - "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Philosopher" - }, - { - "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Philosopher" - }, - { - "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Philosopher" - } - ] - }, - { - "name": "Phudu", - "fontFamily": "Phudu, system-ui", - "slug": "phudu", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkK62zUSwWuz38Tgg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Phudu" - }, - { - "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKtWzUSwWuz38Tgg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Phudu" - }, - { - "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKh2zUSwWuz38Tgg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Phudu" - }, - { - "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKa2vUSwWuz38Tgg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Phudu" - }, - { - "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKUmvUSwWuz38Tgg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Phudu" - }, - { - "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKNWvUSwWuz38Tgg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Phudu" - }, - { - "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKHGvUSwWuz38Tgg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Phudu" - } - ] - }, - { - "name": "Piazzolla", - "fontFamily": "Piazzolla, serif", - "slug": "piazzolla", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYx3Ly1AHfAAy5.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYxnLy1AHfAAy5.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7KGxnLy1AHfAAy5.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxnLy1AHfAAy5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LqxnLy1AHfAAy5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7IGwXLy1AHfAAy5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7I_wXLy1AHfAAy5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYwXLy1AHfAAy5.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JxwXLy1AHfAAy5.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqw3gX9BRy5m5M.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRqx3gX9BRy5m5M.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhcSx3gX9BRy5m5M.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhaix3gX9BRy5m5M.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhUS23gX9BRy5m5M.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhX223gX9BRy5m5M.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRq23gX9BRy5m5M.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - }, - { - "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhTO23gX9BRy5m5M.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Piazzolla" - } - ] - }, - { - "name": "Piedra", - "fontFamily": "Piedra, system-ui", - "slug": "piedra", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/piedra/v22/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Piedra" - } - ] - }, - { - "name": "Pinyon Script", - "fontFamily": "Pinyon Script, cursive", - "slug": "pinyon-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pinyonscript/v18/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pinyon Script" - } - ] - }, - { - "name": "Pirata One", - "fontFamily": "Pirata One, system-ui", - "slug": "pirata-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pirata One" - } - ] - }, - { - "name": "Plaster", - "fontFamily": "Plaster, system-ui", - "slug": "plaster", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Plaster" - } - ] - }, - { - "name": "Play", - "fontFamily": "Play, sans-serif", - "slug": "play", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/play/v17/6aez4K2oVqwIjtI8Hp8Tx3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Play" - }, - { - "src": "http://fonts.gstatic.com/s/play/v17/6ae84K2oVqwItm4TOpc423nTJTM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Play" - } - ] - }, - { - "name": "Playball", - "fontFamily": "Playball, system-ui", - "slug": "playball", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/playball/v17/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Playball" - } - ] - }, - { - "name": "Playfair Display", - "fontFamily": "Playfair Display, serif", - "slug": "playfair-display", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQZNLo_U2r.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQZNLo_U2r.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQZNLo_U2r.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQZNLo_U2r.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQZNLo_U2r.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtbK-F2rA0s.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtbK-F2rA0s.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtbK-F2rA0s.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtbK-F2rA0s.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtbK-F2rA0s.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Playfair Display" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtbK-F2rA0s.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Playfair Display" - } - ] - }, - { - "name": "Playfair Display SC", - "fontFamily": "Playfair Display SC, serif", - "slug": "playfair-display-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Playfair Display SC" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Playfair Display SC" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Playfair Display SC" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Playfair Display SC" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Playfair Display SC" - }, - { - "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Playfair Display SC" - } - ] - }, - { - "name": "Plus Jakarta Sans", - "fontFamily": "Plus Jakarta Sans, sans-serif", - "slug": "plus-jakarta-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NShXUEKi4Rw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_907NShXUEKi4Rw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NShXUEKi4Rw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NShXUEKi4Rw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNShXUEKi4Rw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNShXUEKi4Rw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lCR_QMq2oR82k.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ17CR_QMq2oR82k.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_QMq2oR82k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_QMq2oR82k.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ37Dh_QMq2oR82k.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_QMq2oR82k.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans" - }, - { - "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_QMq2oR82k.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Plus Jakarta Sans" - } - ] - }, - { - "name": "Podkova", - "fontFamily": "Podkova, serif", - "slug": "podkova", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Podkova" - }, - { - "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Podkova" - }, - { - "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Podkova" - }, - { - "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Podkova" - }, - { - "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Podkova" - } - ] - }, - { - "name": "Poiret One", - "fontFamily": "Poiret One, system-ui", - "slug": "poiret-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/poiretone/v14/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poiret One" - } - ] - }, - { - "name": "Poller One", - "fontFamily": "Poller One, system-ui", - "slug": "poller-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pollerone/v19/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poller One" - } - ] - }, - { - "name": "Poltawski Nowy", - "fontFamily": "Poltawski Nowy, serif", - "slug": "poltawski-nowy", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KqCWnDS6V5CzCoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poltawski Nowy" - }, - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KmiWnDS6V5CzCoQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Poltawski Nowy" - }, - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KdiKnDS6V5CzCoQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Poltawski Nowy" - }, - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KTyKnDS6V5CzCoQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Poltawski Nowy" - }, - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZPTiSRxinSoROp.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Poltawski Nowy" - }, - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZ9TiSRxinSoROp.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Poltawski Nowy" - }, - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaRSSSRxinSoROp.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Poltawski Nowy" - }, - { - "src": "http://fonts.gstatic.com/s/poltawskinowy/v1/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaoSSSRxinSoROp.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Poltawski Nowy" - } - ] - }, - { - "name": "Poly", - "fontFamily": "Poly, serif", - "slug": "poly", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/poly/v16/MQpb-W6wKNitRLCAq2Lpris.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poly" - }, - { - "src": "http://fonts.gstatic.com/s/poly/v16/MQpV-W6wKNitdLKKr0DsviuGWA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Poly" - } - ] - }, - { - "name": "Pompiere", - "fontFamily": "Pompiere, system-ui", - "slug": "pompiere", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pompiere/v15/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pompiere" - } - ] - }, - { - "name": "Pontano Sans", - "fontFamily": "Pontano Sans, sans-serif", - "slug": "pontano-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOSzMncaMp9gzWsE.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Pontano Sans" - }, - { - "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOXLMncaMp9gzWsE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pontano Sans" - }, - { - "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOUDMncaMp9gzWsE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Pontano Sans" - }, - { - "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOazLncaMp9gzWsE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Pontano Sans" - }, - { - "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOZXLncaMp9gzWsE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Pontano Sans" - } - ] - }, - { - "name": "Poor Story", - "fontFamily": "Poor Story, system-ui", - "slug": "poor-story", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/poorstory/v20/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poor Story" - } - ] - }, - { - "name": "Poppins", - "fontFamily": "Poppins, sans-serif", - "slug": "poppins", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Poppins" - }, - { - "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Poppins" - } - ] - }, - { - "name": "Port Lligat Sans", - "fontFamily": "Port Lligat Sans, sans-serif", - "slug": "port-lligat-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/portlligatsans/v18/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Port Lligat Sans" - } - ] - }, - { - "name": "Port Lligat Slab", - "fontFamily": "Port Lligat Slab, serif", - "slug": "port-lligat-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/portlligatslab/v21/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Port Lligat Slab" - } - ] - }, - { - "name": "Potta One", - "fontFamily": "Potta One, system-ui", - "slug": "potta-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pottaone/v16/FeVSS05Bp6cy7xI-YfxQ3Z5nm29Gww.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Potta One" - } - ] - }, - { - "name": "Pragati Narrow", - "fontFamily": "Pragati Narrow, sans-serif", - "slug": "pragati-narrow", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pragati Narrow" - }, - { - "src": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Pragati Narrow" - } - ] - }, - { - "name": "Praise", - "fontFamily": "Praise, cursive", - "slug": "praise", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/praise/v5/qkBUXvUZ-cnFXcFyDvO67L9XmQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Praise" - } - ] - }, - { - "name": "Prata", - "fontFamily": "Prata, serif", - "slug": "prata", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/prata/v18/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Prata" - } - ] - }, - { - "name": "Preahvihear", - "fontFamily": "Preahvihear, sans-serif", - "slug": "preahvihear", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/preahvihear/v27/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Preahvihear" - } - ] - }, - { - "name": "Press Start 2P", - "fontFamily": "Press Start 2P, system-ui", - "slug": "press-start-2p", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pressstart2p/v15/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Press Start 2P" - } - ] - }, - { - "name": "Pridi", - "fontFamily": "Pridi, serif", - "slug": "pridi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Pridi" - }, - { - "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Pridi" - }, - { - "src": "http://fonts.gstatic.com/s/pridi/v11/2sDQZG5JnZLfkfWao2krbl29.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Pridi" - }, - { - "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Pridi" - }, - { - "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Pridi" - }, - { - "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Pridi" - } - ] - }, - { - "name": "Princess Sofia", - "fontFamily": "Princess Sofia, cursive", - "slug": "princess-sofia", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/princesssofia/v22/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Princess Sofia" - } - ] - }, - { - "name": "Prociono", - "fontFamily": "Prociono, serif", - "slug": "prociono", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/prociono/v22/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Prociono" - } - ] - }, - { - "name": "Prompt", - "fontFamily": "Prompt, sans-serif", - "slug": "prompt", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Prompt" - }, - { - "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Prompt" - } - ] - }, - { - "name": "Prosto One", - "fontFamily": "Prosto One, system-ui", - "slug": "prosto-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/prostoone/v17/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Prosto One" - } - ] - }, - { - "name": "Proza Libre", - "fontFamily": "Proza Libre, sans-serif", - "slug": "proza-libre", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Proza Libre" - }, - { - "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Proza Libre" - } - ] - }, - { - "name": "Public Sans", - "fontFamily": "Public Sans, sans-serif", - "slug": "public-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5ww0pX189fg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww0pX189fg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww0pX189fg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww0pX189fg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww0pX189fg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww0pX189fg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww0pX189fg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww0pX189fg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQctfVotfj7j.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgActfVotfj7j.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgActfVotfj7j.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgActfVotfj7j.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgActfVotfj7j.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwctfVotfj7j.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwctfVotfj7j.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwctfVotfj7j.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Public Sans" - }, - { - "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwctfVotfj7j.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Public Sans" - } - ] - }, - { - "name": "Puppies Play", - "fontFamily": "Puppies Play, cursive", - "slug": "puppies-play", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/puppiesplay/v6/wlp2gwHZEV99rG6M3NR9uB9vaAJSA_JN3Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Puppies Play" - } - ] - }, - { - "name": "Puritan", - "fontFamily": "Puritan, sans-serif", - "slug": "puritan", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Puritan" - }, - { - "src": "http://fonts.gstatic.com/s/puritan/v24/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Puritan" - }, - { - "src": "http://fonts.gstatic.com/s/puritan/v24/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Puritan" - }, - { - "src": "http://fonts.gstatic.com/s/puritan/v24/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Puritan" - } - ] - }, - { - "name": "Purple Purse", - "fontFamily": "Purple Purse, system-ui", - "slug": "purple-purse", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/purplepurse/v21/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Purple Purse" - } - ] - }, - { - "name": "Qahiri", - "fontFamily": "Qahiri, sans-serif", - "slug": "qahiri", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/qahiri/v9/tsssAp1RZy0C_hGuU3Chrnmupw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Qahiri" - } - ] - }, - { - "name": "Quando", - "fontFamily": "Quando, serif", - "slug": "quando", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/quando/v14/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quando" - } - ] - }, - { - "name": "Quantico", - "fontFamily": "Quantico, sans-serif", - "slug": "quantico", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/quantico/v15/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quantico" - }, - { - "src": "http://fonts.gstatic.com/s/quantico/v15/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Quantico" - }, - { - "src": "http://fonts.gstatic.com/s/quantico/v15/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Quantico" - }, - { - "src": "http://fonts.gstatic.com/s/quantico/v15/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Quantico" - } - ] - }, - { - "name": "Quattrocento", - "fontFamily": "Quattrocento, serif", - "slug": "quattrocento", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/quattrocento/v18/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quattrocento" - }, - { - "src": "http://fonts.gstatic.com/s/quattrocento/v18/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Quattrocento" - } - ] - }, - { - "name": "Quattrocento Sans", - "fontFamily": "Quattrocento Sans, sans-serif", - "slug": "quattrocento-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quattrocento Sans" - }, - { - "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Quattrocento Sans" - }, - { - "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Quattrocento Sans" - }, - { - "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Quattrocento Sans" - } - ] - }, - { - "name": "Questrial", - "fontFamily": "Questrial, sans-serif", - "slug": "questrial", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Questrial" - } - ] - }, - { - "name": "Quicksand", - "fontFamily": "Quicksand, sans-serif", - "slug": "quicksand", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Quicksand" - }, - { - "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quicksand" - }, - { - "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Quicksand" - }, - { - "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Quicksand" - }, - { - "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Quicksand" - } - ] - }, - { - "name": "Quintessential", - "fontFamily": "Quintessential, cursive", - "slug": "quintessential", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/quintessential/v20/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Quintessential" - } - ] - }, - { - "name": "Qwigley", - "fontFamily": "Qwigley, cursive", - "slug": "qwigley", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/qwigley/v16/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Qwigley" - } - ] - }, - { - "name": "Qwitcher Grypen", - "fontFamily": "Qwitcher Grypen, cursive", - "slug": "qwitcher-grypen", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxicypclp9tDilN9RrC5BSI1dZmrSGNAom-wpw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Qwitcher Grypen" - }, - { - "src": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxiZypclp9tDilN9RrC5BSI1dZmT9ExkqkSsrvNXiA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Qwitcher Grypen" - } - ] - }, - { - "name": "Racing Sans One", - "fontFamily": "Racing Sans One, system-ui", - "slug": "racing-sans-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/racingsansone/v13/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Racing Sans One" - } - ] - }, - { - "name": "Radio Canada", - "fontFamily": "Radio Canada, sans-serif", - "slug": "radio-canada", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nESkQPIJOdSSfOT.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nFMkQPIJOdSSfOT.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nF-kQPIJOdSSfOT.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGSlgPIJOdSSfOT.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGrlgPIJOdSSfOT.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0rWLLuNwTOOTa9k.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0uuLLuNwTOOTa9k.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0tmLLuNwTOOTa9k.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0jWMLuNwTOOTa9k.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Radio Canada" - }, - { - "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0gyMLuNwTOOTa9k.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Radio Canada" - } - ] - }, - { - "name": "Radley", - "fontFamily": "Radley, serif", - "slug": "radley", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/radley/v20/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Radley" - }, - { - "src": "http://fonts.gstatic.com/s/radley/v20/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Radley" - } - ] - }, - { - "name": "Rajdhani", - "fontFamily": "Rajdhani, sans-serif", - "slug": "rajdhani", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rajdhani" - }, - { - "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rajdhani" - }, - { - "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rajdhani" - }, - { - "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rajdhani" - }, - { - "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rajdhani" - } - ] - }, - { - "name": "Rakkas", - "fontFamily": "Rakkas, system-ui", - "slug": "rakkas", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rakkas/v17/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rakkas" - } - ] - }, - { - "name": "Raleway", - "fontFamily": "Raleway, sans-serif", - "slug": "raleway", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CPNLA3JC9c.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCPNLA3JC9c.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCPNLA3JC9c.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCPNLA3JC9c.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCPNLA3JC9c.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCPNLA3JC9c.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCPNLA3JC9c.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQVIT9c2c8.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQVIT9c2c8.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQVIT9c2c8.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Raleway" - }, - { - "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQVIT9c2c8.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Raleway" - } - ] - }, - { - "name": "Raleway Dots", - "fontFamily": "Raleway Dots, system-ui", - "slug": "raleway-dots", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ralewaydots/v14/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Raleway Dots" - } - ] - }, - { - "name": "Ramabhadra", - "fontFamily": "Ramabhadra, sans-serif", - "slug": "ramabhadra", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ramabhadra/v15/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ramabhadra" - } - ] - }, - { - "name": "Ramaraja", - "fontFamily": "Ramaraja, serif", - "slug": "ramaraja", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ramaraja/v15/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ramaraja" - } - ] - }, - { - "name": "Rambla", - "fontFamily": "Rambla, sans-serif", - "slug": "rambla", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mr0I7IONthkwQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rambla" - }, - { - "src": "http://fonts.gstatic.com/s/rambla/v13/snfps0ip98hx6mrEIbgKFN10wYKa.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rambla" - }, - { - "src": "http://fonts.gstatic.com/s/rambla/v13/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rambla" - }, - { - "src": "http://fonts.gstatic.com/s/rambla/v13/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rambla" - } - ] - }, - { - "name": "Rammetto One", - "fontFamily": "Rammetto One, system-ui", - "slug": "rammetto-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rammettoone/v15/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rammetto One" - } - ] - }, - { - "name": "Rampart One", - "fontFamily": "Rampart One, system-ui", - "slug": "rampart-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rampartone/v7/K2F1fZFGl_JSR1tAWNG9R6qgLS76ZHOM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rampart One" - } - ] - }, - { - "name": "Ranchers", - "fontFamily": "Ranchers, system-ui", - "slug": "ranchers", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ranchers/v14/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ranchers" - } - ] - }, - { - "name": "Rancho", - "fontFamily": "Rancho, cursive", - "slug": "rancho", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rancho/v17/46kulbzmXjLaqZRlbWXgd0RY1g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rancho" - } - ] - }, - { - "name": "Ranga", - "fontFamily": "Ranga, system-ui", - "slug": "ranga", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ranga/v18/C8ct4cYisGb28p6CLDwZwmGE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ranga" - }, - { - "src": "http://fonts.gstatic.com/s/ranga/v18/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ranga" - } - ] - }, - { - "name": "Rasa", - "fontFamily": "Rasa, serif", - "slug": "rasa", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN4YJW41fcvN2KT4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJW41fcvN2KT4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN50JW41fcvN2KT4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN6YIm41fcvN2KT4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN6hIm41fcvN2KT4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZth2d8_v3bT4Ycc.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZoZ2d8_v3bT4Ycc.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZrR2d8_v3bT4Ycc.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZlhxd8_v3bT4Ycc.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Rasa" - }, - { - "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZmFxd8_v3bT4Ycc.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rasa" - } - ] - }, - { - "name": "Rationale", - "fontFamily": "Rationale, sans-serif", - "slug": "rationale", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rationale/v24/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rationale" - } - ] - }, - { - "name": "Ravi Prakash", - "fontFamily": "Ravi Prakash, system-ui", - "slug": "ravi-prakash", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/raviprakash/v19/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ravi Prakash" - } - ] - }, - { - "name": "Readex Pro", - "fontFamily": "Readex Pro, sans-serif", - "slug": "readex-pro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCYUSmgmsglvjkag.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Readex Pro" - }, - { - "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCv0Smgmsglvjkag.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Readex Pro" - }, - { - "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC4USmgmsglvjkag.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Readex Pro" - }, - { - "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC00Smgmsglvjkag.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Readex Pro" - }, - { - "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCP0Omgmsglvjkag.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Readex Pro" - }, - { - "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCBkOmgmsglvjkag.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Readex Pro" - } - ] - }, - { - "name": "Recursive", - "fontFamily": "Recursive, sans-serif", - "slug": "recursive", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadDck018vwxjDJCL.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Recursive" - }, - { - "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk018vwxjDJCL.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Recursive" - }, - { - "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCwk018vwxjDJCL.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Recursive" - }, - { - "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBclE18vwxjDJCL.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Recursive" - }, - { - "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBllE18vwxjDJCL.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Recursive" - }, - { - "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadAClE18vwxjDJCL.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Recursive" - }, - { - "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadArlE18vwxjDJCL.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Recursive" - } - ] - }, - { - "name": "Red Hat Display", - "fontFamily": "Red Hat Display, sans-serif", - "slug": "red-hat-display", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWckg5-Xecg3w.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWckg5-Xecg3w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbl6Wckg5-Xecg3w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbrKRckg5-Xecg3w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbouRckg5-Xecg3w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbuyRckg5-Xecg3w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbsWRckg5-Xecg3w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVxAsz_VWZk3zJGg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVmgsz_VWZk3zJGg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVqAsz_VWZk3zJGg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVRAwz_VWZk3zJGg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVfQwz_VWZk3zJGg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVGgwz_VWZk3zJGg.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Red Hat Display" - }, - { - "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVMwwz_VWZk3zJGg.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Red Hat Display" - } - ] - }, - { - "name": "Red Hat Mono", - "fontFamily": "Red Hat Mono, monospace", - "slug": "red-hat-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQQPI-7HNuW4QuKI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3I-7HNuW4QuKI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQW_I-7HNuW4QuKI.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQYPP-7HNuW4QuKI.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQbrP-7HNuW4QuKI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLTfLHvUwVqKIJuw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLE_LHvUwVqKIJuw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLIfLHvUwVqKIJuw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLzfXHvUwVqKIJuw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono" - }, - { - "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWL9PXHvUwVqKIJuw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Red Hat Mono" - } - ] - }, - { - "name": "Red Hat Text", - "fontFamily": "Red Hat Text, sans-serif", - "slug": "red-hat-text", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML-ZwVrbacYVFtIY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrbacYVFtIY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrbacYVFtIY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML2Z3VrbacYVFtIY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML193VrbacYVFtIY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAz4PXQdadApIYv_g.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzvvXQdadApIYv_g.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzjPXQdadApIYv_g.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzYPLQdadApIYv_g.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Red Hat Text" - }, - { - "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzWfLQdadApIYv_g.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Red Hat Text" - } - ] - }, - { - "name": "Red Rose", - "fontFamily": "Red Rose, system-ui", - "slug": "red-rose", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8y8_sDcjSsYUVUjg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Red Rose" - }, - { - "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfsDcjSsYUVUjg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Red Rose" - }, - { - "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yn_sDcjSsYUVUjg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Red Rose" - }, - { - "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yc_wDcjSsYUVUjg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Red Rose" - }, - { - "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8ySvwDcjSsYUVUjg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Red Rose" - } - ] - }, - { - "name": "Redacted", - "fontFamily": "Redacted, system-ui", - "slug": "redacted", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/redacted/v6/Z9XVDmdRShme2O_7aITe4u2El6GC.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Redacted" - } - ] - }, - { - "name": "Redacted Script", - "fontFamily": "Redacted Script, system-ui", - "slug": "redacted-script", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvEbXGRglhokR7dcC3d1-R6zmxqHUzVmbI397ldkg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Redacted Script" - }, - { - "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvBbXGRglhokR7dcC3d1-R6zmxSsWTxkZkr_g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Redacted Script" - }, - { - "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvEbXGRglhokR7dcC3d1-R6zmxqDUvVmbI397ldkg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Redacted Script" - } - ] - }, - { - "name": "Redressed", - "fontFamily": "Redressed, cursive", - "slug": "redressed", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/redressed/v25/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Redressed" - } - ] - }, - { - "name": "Reem Kufi", - "fontFamily": "Reem Kufi, sans-serif", - "slug": "reem-kufi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reem Kufi" - }, - { - "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Reem Kufi" - }, - { - "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Reem Kufi" - }, - { - "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Reem Kufi" - } - ] - }, - { - "name": "Reem Kufi Fun", - "fontFamily": "Reem Kufi Fun, sans-serif", - "slug": "reem-kufi-fun", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYj3nCgrvqZzZXq.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Fun" - }, - { - "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYR3nCgrvqZzZXq.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Fun" - }, - { - "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChob92XCgrvqZzZXq.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Fun" - }, - { - "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChobE2XCgrvqZzZXq.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Fun" - } - ] - }, - { - "name": "Reem Kufi Ink", - "fontFamily": "Reem Kufi Ink, sans-serif", - "slug": "reem-kufi-ink", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/reemkufiink/v8/oPWJ_kJmmu8hCvB9iFumxZSnRj5dQnSX1ko.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reem Kufi Ink" - } - ] - }, - { - "name": "Reenie Beanie", - "fontFamily": "Reenie Beanie, cursive", - "slug": "reenie-beanie", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/reeniebeanie/v16/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reenie Beanie" - } - ] - }, - { - "name": "Reggae One", - "fontFamily": "Reggae One, system-ui", - "slug": "reggae-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/reggaeone/v15/~CgwKClJlZ2dhZSBPbmUgACoECAEYAQ==.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Reggae One" - } - ] - }, - { - "name": "Revalia", - "fontFamily": "Revalia, system-ui", - "slug": "revalia", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/revalia/v20/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Revalia" - } - ] - }, - { - "name": "Rhodium Libre", - "fontFamily": "Rhodium Libre, serif", - "slug": "rhodium-libre", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rhodiumlibre/v17/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rhodium Libre" - } - ] - }, - { - "name": "Ribeye", - "fontFamily": "Ribeye, system-ui", - "slug": "ribeye", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ribeye/v22/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ribeye" - } - ] - }, - { - "name": "Ribeye Marrow", - "fontFamily": "Ribeye Marrow, system-ui", - "slug": "ribeye-marrow", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ribeyemarrow/v22/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ribeye Marrow" - } - ] - }, - { - "name": "Righteous", - "fontFamily": "Righteous, system-ui", - "slug": "righteous", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/righteous/v14/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Righteous" - } - ] - }, - { - "name": "Risque", - "fontFamily": "Risque, system-ui", - "slug": "risque", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/risque/v20/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Risque" - } - ] - }, - { - "name": "Road Rage", - "fontFamily": "Road Rage, system-ui", - "slug": "road-rage", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/roadrage/v5/6NUU8F2fKAOBKjjr4ekvtMYAwdRZfw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Road Rage" - } - ] - }, - { - "name": "Roboto", - "fontFamily": "Roboto, sans-serif", - "slug": "roboto", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Roboto" - }, - { - "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Roboto" - } - ] - }, - { - "name": "Roboto Condensed", - "fontFamily": "Roboto Condensed, sans-serif", - "slug": "roboto-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Roboto Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Roboto Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Roboto Condensed" - } - ] - }, - { - "name": "Roboto Flex", - "fontFamily": "Roboto Flex, sans-serif", - "slug": "roboto-flex", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/robotoflex/v9/NaN4epOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGfttPZktqc2VdZ80KvCLZaPcSBZtOx2MifRuWR28sPJtUMbsFEK6cRrleUx9Xgbm3WLHa_F4Ep4Fm0PN19Ik5Dntczx0wZGzhPlL1YNMYKbv9_1IQXOw7AiUJVXpRJ6cXW4O8TNGoXjC79QRyaLshNDUf3e0O-gn5rrZCu20YNYG0EACUTNK-QKavMlxGIY8dxef0jQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Flex" - } - ] - }, - { - "name": "Roboto Mono", - "fontFamily": "Roboto Mono, monospace", - "slug": "roboto-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQ--5Ip2sSQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQ--5Ip2sSQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQ--5Ip2sSQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQ--5Ip2sSQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQ--5Ip2sSQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQ--5Ip2sSQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQ--5Ip2sSQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9AJi8SZwt.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9AJi8SZwt.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9AJi8SZwt.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9AJi8SZwt.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9AJi8SZwt.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9AJi8SZwt.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Roboto Mono" - }, - { - "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9AJi8SZwt.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Roboto Mono" - } - ] - }, - { - "name": "Roboto Serif", - "fontFamily": "Roboto Serif, serif", - "slug": "roboto-serif", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliosp6d2Af5fR4k.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqotp6d2Af5fR4k.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElnQtp6d2Af5fR4k.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6d2Af5fR4k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6d2Af5fR4k.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElvQqp6d2Af5fR4k.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6d2Af5fR4k.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqoqp6d2Af5fR4k.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEloMqp6d2Af5fR4k.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-V8BdxaV4nUFw.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-R8BdxaV4nUFw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuEeR8BdxaV4nUFw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8BdxaV4nUFw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JufeR8BdxaV4nUFw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JukeN8BdxaV4nUFw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8BdxaV4nUFw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-N8BdxaV4nUFw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - }, - { - "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Ju5uN8BdxaV4nUFw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Roboto Serif" - } - ] - }, - { - "name": "Roboto Slab", - "fontFamily": "Roboto Slab, serif", - "slug": "roboto-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaG5iddG-1A.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaG5iddG-1A.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaG5iddG-1A.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaG5iddG-1A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaG5iddG-1A.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaG5iddG-1A.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaG5iddG-1A.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaG5iddG-1A.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - }, - { - "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaG5iddG-1A.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Roboto Slab" - } - ] - }, - { - "name": "Rochester", - "fontFamily": "Rochester, cursive", - "slug": "rochester", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rochester/v18/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rochester" - } - ] - }, - { - "name": "Rock Salt", - "fontFamily": "Rock Salt, cursive", - "slug": "rock-salt", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rocksalt/v18/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rock Salt" - } - ] - }, - { - "name": "RocknRoll One", - "fontFamily": "RocknRoll One, sans-serif", - "slug": "rocknroll-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rocknrollone/v10/kmK7ZqspGAfCeUiW6FFlmEC9guVhs7tfUxc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "RocknRoll One" - } - ] - }, - { - "name": "Rokkitt", - "fontFamily": "Rokkitt, serif", - "slug": "rokkitt", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDLE76HvN6n.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DLE76HvN6n.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DLE76HvN6n.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DLE76HvN6n.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DLE76HvN6n.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDLE76HvN6n.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDLE76HvN6n.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDLE76HvN6n.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDLE76HvN6n.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiJGbqluc6nu9E.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiIGbqluc6nu9E.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NCaIGbqluc6nu9E.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiIGbqluc6nu9E.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NEqIGbqluc6nu9E.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NKaPGbqluc6nu9E.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NJ-PGbqluc6nu9E.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiPGbqluc6nu9E.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - }, - { - "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NNGPGbqluc6nu9E.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Rokkitt" - } - ] - }, - { - "name": "Romanesco", - "fontFamily": "Romanesco, cursive", - "slug": "romanesco", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Romanesco" - } - ] - }, - { - "name": "Ropa Sans", - "fontFamily": "Ropa Sans, sans-serif", - "slug": "ropa-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ropa Sans" - }, - { - "src": "http://fonts.gstatic.com/s/ropasans/v15/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ropa Sans" - } - ] - }, - { - "name": "Rosario", - "fontFamily": "Rosario, sans-serif", - "slug": "rosario", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Rosario" - }, - { - "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rosario" - } - ] - }, - { - "name": "Rosarivo", - "fontFamily": "Rosarivo, serif", - "slug": "rosarivo", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rosarivo/v20/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rosarivo" - }, - { - "src": "http://fonts.gstatic.com/s/rosarivo/v20/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rosarivo" - } - ] - }, - { - "name": "Rouge Script", - "fontFamily": "Rouge Script, cursive", - "slug": "rouge-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rougescript/v14/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rouge Script" - } - ] - }, - { - "name": "Rowdies", - "fontFamily": "Rowdies, system-ui", - "slug": "rowdies", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219hth5O7yKQNute8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rowdies" - }, - { - "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRJTieMYPNBAK21zrdJwObZNQo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rowdies" - }, - { - "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219gtm5O7yKQNute8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rowdies" - } - ] - }, - { - "name": "Rozha One", - "fontFamily": "Rozha One, serif", - "slug": "rozha-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rozhaone/v13/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rozha One" - } - ] - }, - { - "name": "Rubik", - "fontFamily": "Rubik, sans-serif", - "slug": "rubik", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UE80V4bVkA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UE80V4bVkA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UE80V4bVkA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1UE80V4bVkA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UE80V4bVkA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1UE80V4bVkA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1UE80V4bVkA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0UwdYPFkJ1O.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0UwdYPFkJ1O.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0UwdYPFkJ1O.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEUwdYPFkJ1O.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEUwdYPFkJ1O.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEUwdYPFkJ1O.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Rubik" - }, - { - "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEUwdYPFkJ1O.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Rubik" - } - ] - }, - { - "name": "Rubik 80s Fade", - "fontFamily": "Rubik 80s Fade, system-ui", - "slug": "rubik-80s-fade", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubik80sfade/v2/U9MF6dW37nLSmnwZXyoV-uPXUhHwkbL8IHcK.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik 80s Fade" - } - ] - }, - { - "name": "Rubik Beastly", - "fontFamily": "Rubik Beastly, system-ui", - "slug": "rubik-beastly", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikbeastly/v10/0QImMXRd5oOmSC2ZQ7o9653X07z8_ApHqqk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Beastly" - } - ] - }, - { - "name": "Rubik Bubbles", - "fontFamily": "Rubik Bubbles, system-ui", - "slug": "rubik-bubbles", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikbubbles/v3/JIA1UVdwbHFJtwA7Us1BPFbRNTENfDxyRXI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Bubbles" - } - ] - }, - { - "name": "Rubik Burned", - "fontFamily": "Rubik Burned, system-ui", - "slug": "rubik-burned", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqniHQuaCY5ZSg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Burned" - } - ] - }, - { - "name": "Rubik Dirt", - "fontFamily": "Rubik Dirt, system-ui", - "slug": "rubik-dirt", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikdirt/v2/DtVmJxC7WLEj1uIXEWAdulwm6gDXvwE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Dirt" - } - ] - }, - { - "name": "Rubik Distressed", - "fontFamily": "Rubik Distressed, system-ui", - "slug": "rubik-distressed", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldcWAhatVBaGM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Distressed" - } - ] - }, - { - "name": "Rubik Gemstones", - "fontFamily": "Rubik Gemstones, system-ui", - "slug": "rubik-gemstones", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikgemstones/v1/zrf90HrL0-_8Xb4DFM2rUkWbOVrOiCnGqi1GMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Gemstones" - } - ] - }, - { - "name": "Rubik Glitch", - "fontFamily": "Rubik Glitch, system-ui", - "slug": "rubik-glitch", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZvmC7HONiSFQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Glitch" - } - ] - }, - { - "name": "Rubik Iso", - "fontFamily": "Rubik Iso, system-ui", - "slug": "rubik-iso", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikiso/v2/x3dickHUfr-S4VAI4sABfPACvy_1BA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Iso" - } - ] - }, - { - "name": "Rubik Marker Hatch", - "fontFamily": "Rubik Marker Hatch, system-ui", - "slug": "rubik-marker-hatch", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHQDL4iw0H6zw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Marker Hatch" - } - ] - }, - { - "name": "Rubik Maze", - "fontFamily": "Rubik Maze, system-ui", - "slug": "rubik-maze", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikmaze/v2/xMQRuF9ZVa2ftiJEavXSAX7inS-bxV4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Maze" - } - ] - }, - { - "name": "Rubik Microbe", - "fontFamily": "Rubik Microbe, system-ui", - "slug": "rubik-microbe", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZcs8aaKgiauE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Microbe" - } - ] - }, - { - "name": "Rubik Mono One", - "fontFamily": "Rubik Mono One, sans-serif", - "slug": "rubik-mono-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikmonoone/v15/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Mono One" - } - ] - }, - { - "name": "Rubik Moonrocks", - "fontFamily": "Rubik Moonrocks, system-ui", - "slug": "rubik-moonrocks", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikmoonrocks/v2/845ANMAmAI2VUZMLu_W0M7HqlDHnXcD7JGy1Sw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Moonrocks" - } - ] - }, - { - "name": "Rubik Pixels", - "fontFamily": "Rubik Pixels, system-ui", - "slug": "rubik-pixels", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikpixels/v2/SlGXmQOaupkIeSx4CEpB7AdSaBYRagrQrA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Pixels" - } - ] - }, - { - "name": "Rubik Puddles", - "fontFamily": "Rubik Puddles, system-ui", - "slug": "rubik-puddles", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcJfC0wVMT-aE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Puddles" - } - ] - }, - { - "name": "Rubik Spray Paint", - "fontFamily": "Rubik Spray Paint, system-ui", - "slug": "rubik-spray-paint", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikspraypaint/v1/WnzhHBAoeBPUDTB4EWR82y6EXWPH-Ro-QoaBZQxP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Spray Paint" - } - ] - }, - { - "name": "Rubik Storm", - "fontFamily": "Rubik Storm, system-ui", - "slug": "rubik-storm", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikstorm/v1/eLGYP-_uPgO5Ag7ju9JaouL9T2Xh9NQk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Storm" - } - ] - }, - { - "name": "Rubik Vinyl", - "fontFamily": "Rubik Vinyl, system-ui", - "slug": "rubik-vinyl", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikvinyl/v1/iJWABXKIfDnIV4mQ5BfjvUXexox2ztOU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Vinyl" - } - ] - }, - { - "name": "Rubik Wet Paint", - "fontFamily": "Rubik Wet Paint, system-ui", - "slug": "rubik-wet-paint", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-F-zz313DuvQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rubik Wet Paint" - } - ] - }, - { - "name": "Ruda", - "fontFamily": "Ruda, sans-serif", - "slug": "ruda", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_-2KiSGg-H.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruda" - }, - { - "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_-2KiSGg-H.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ruda" - }, - { - "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_-2KiSGg-H.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Ruda" - }, - { - "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_-2KiSGg-H.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ruda" - }, - { - "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_-2KiSGg-H.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Ruda" - }, - { - "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_-2KiSGg-H.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Ruda" - } - ] - }, - { - "name": "Rufina", - "fontFamily": "Rufina, serif", - "slug": "rufina", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rufina/v13/Yq6V-LyURyLy-aKyoxRktOdClg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rufina" - }, - { - "src": "http://fonts.gstatic.com/s/rufina/v13/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Rufina" - } - ] - }, - { - "name": "Ruge Boogie", - "fontFamily": "Ruge Boogie, cursive", - "slug": "ruge-boogie", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rugeboogie/v25/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruge Boogie" - } - ] - }, - { - "name": "Ruluko", - "fontFamily": "Ruluko, sans-serif", - "slug": "ruluko", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruluko" - } - ] - }, - { - "name": "Rum Raisin", - "fontFamily": "Rum Raisin, sans-serif", - "slug": "rum-raisin", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rumraisin/v20/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rum Raisin" - } - ] - }, - { - "name": "Ruslan Display", - "fontFamily": "Ruslan Display, system-ui", - "slug": "ruslan-display", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ruslandisplay/v22/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruslan Display" - } - ] - }, - { - "name": "Russo One", - "fontFamily": "Russo One, sans-serif", - "slug": "russo-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Russo One" - } - ] - }, - { - "name": "Ruthie", - "fontFamily": "Ruthie, cursive", - "slug": "ruthie", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ruthie/v24/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ruthie" - } - ] - }, - { - "name": "Rye", - "fontFamily": "Rye, system-ui", - "slug": "rye", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/rye/v13/r05XGLJT86YDFpTsXOqx4w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Rye" - } - ] - }, - { - "name": "STIX Two Text", - "fontFamily": "STIX Two Text, serif", - "slug": "stix-two-text", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2SOYWxFMN1WD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "STIX Two Text" - }, - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YihS2SOYWxFMN1WD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "STIX Two Text" - }, - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yii-3iOYWxFMN1WD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "STIX Two Text" - }, - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YiiH3iOYWxFMN1WD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "STIX Two Text" - }, - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omsvbURVuMkWDmSo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "STIX Two Text" - }, - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omvnbURVuMkWDmSo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "STIX Two Text" - }, - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omhXcURVuMkWDmSo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "STIX Two Text" - }, - { - "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omizcURVuMkWDmSo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "STIX Two Text" - } - ] - }, - { - "name": "Sacramento", - "fontFamily": "Sacramento, cursive", - "slug": "sacramento", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sacramento/v13/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sacramento" - } - ] - }, - { - "name": "Sahitya", - "fontFamily": "Sahitya, serif", - "slug": "sahitya", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sahitya/v17/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sahitya" - }, - { - "src": "http://fonts.gstatic.com/s/sahitya/v17/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sahitya" - } - ] - }, - { - "name": "Sail", - "fontFamily": "Sail, system-ui", - "slug": "sail", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJFBTDADYAbvw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sail" - } - ] - }, - { - "name": "Saira", - "fontFamily": "Saira, sans-serif", - "slug": "saira", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rDosg7lwYmUVY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rCosg7lwYmUVY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7wTCosg7lwYmUVY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCosg7lwYmUVY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA72jCosg7lwYmUVY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA74TFosg7lwYmUVY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773Fosg7lwYmUVY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rFosg7lwYmUVY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7_PFosg7lwYmUVY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSooxkyQjQVYmxA.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByosxkyQjQVYmxA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBFIsxkyQjQVYmxA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSosxkyQjQVYmxA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBeIsxkyQjQVYmxA.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBlIwxkyQjQVYmxA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBrYwxkyQjQVYmxA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByowxkyQjQVYmxA.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Saira" - }, - { - "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKB44wxkyQjQVYmxA.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Saira" - } - ] - }, - { - "name": "Saira Condensed", - "fontFamily": "Saira Condensed, sans-serif", - "slug": "saira-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Saira Condensed" - } - ] - }, - { - "name": "Saira Extra Condensed", - "fontFamily": "Saira Extra Condensed, sans-serif", - "slug": "saira-extra-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Saira Extra Condensed" - } - ] - }, - { - "name": "Saira Semi Condensed", - "fontFamily": "Saira Semi Condensed, sans-serif", - "slug": "saira-semi-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Saira Semi Condensed" - } - ] - }, - { - "name": "Saira Stencil One", - "fontFamily": "Saira Stencil One, system-ui", - "slug": "saira-stencil-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sairastencilone/v14/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Saira Stencil One" - } - ] - }, - { - "name": "Salsa", - "fontFamily": "Salsa, system-ui", - "slug": "salsa", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/salsa/v17/gNMKW3FiRpKj-imY8ncKEZez.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Salsa" - } - ] - }, - { - "name": "Sanchez", - "fontFamily": "Sanchez, serif", - "slug": "sanchez", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sanchez/v13/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sanchez" - }, - { - "src": "http://fonts.gstatic.com/s/sanchez/v13/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sanchez" - } - ] - }, - { - "name": "Sancreek", - "fontFamily": "Sancreek, system-ui", - "slug": "sancreek", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sancreek/v23/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sancreek" - } - ] - }, - { - "name": "Sansita", - "fontFamily": "Sansita, sans-serif", - "slug": "sansita", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldONTRRphEb_-V7HBm7TXFf3qw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sansita" - }, - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sansita" - }, - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sansita" - }, - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sansita" - }, - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sansita" - }, - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sansita" - }, - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sansita" - }, - { - "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sansita" - } - ] - }, - { - "name": "Sansita Swashed", - "fontFamily": "Sansita Swashed, system-ui", - "slug": "sansita-swashed", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW-ppbToVehmEa4Q.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed" - }, - { - "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpbToVehmEa4Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed" - }, - { - "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW4ZpbToVehmEa4Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed" - }, - { - "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW2pubToVehmEa4Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed" - }, - { - "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW1NubToVehmEa4Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed" - }, - { - "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWzRubToVehmEa4Q.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed" - }, - { - "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWx1ubToVehmEa4Q.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sansita Swashed" - } - ] - }, - { - "name": "Sarabun", - "fontFamily": "Sarabun, sans-serif", - "slug": "sarabun", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sarabun" - }, - { - "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sarabun" - } - ] - }, - { - "name": "Sarala", - "fontFamily": "Sarala, sans-serif", - "slug": "sarala", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sarala/v10/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sarala" - }, - { - "src": "http://fonts.gstatic.com/s/sarala/v10/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sarala" - } - ] - }, - { - "name": "Sarina", - "fontFamily": "Sarina, system-ui", - "slug": "sarina", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sarina/v21/-F6wfjF3ITQwasLhLkDUriBQxw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sarina" - } - ] - }, - { - "name": "Sarpanch", - "fontFamily": "Sarpanch, sans-serif", - "slug": "sarpanch", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sarpanch/v11/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sarpanch" - }, - { - "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sarpanch" - }, - { - "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sarpanch" - }, - { - "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sarpanch" - }, - { - "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sarpanch" - }, - { - "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sarpanch" - } - ] - }, - { - "name": "Sassy Frass", - "fontFamily": "Sassy Frass, cursive", - "slug": "sassy-frass", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sassyfrass/v5/LhWhMVrGOe0FLb97BjhsE99dGNWQg_am.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sassy Frass" - } - ] - }, - { - "name": "Satisfy", - "fontFamily": "Satisfy, cursive", - "slug": "satisfy", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/satisfy/v17/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Satisfy" - } - ] - }, - { - "name": "Sawarabi Gothic", - "fontFamily": "Sawarabi Gothic, sans-serif", - "slug": "sawarabi-gothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sawarabigothic/v12/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sawarabi Gothic" - } - ] - }, - { - "name": "Sawarabi Mincho", - "fontFamily": "Sawarabi Mincho, serif", - "slug": "sawarabi-mincho", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sawarabi Mincho" - } - ] - }, - { - "name": "Scada", - "fontFamily": "Scada, sans-serif", - "slug": "scada", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/scada/v15/RLpxK5Pv5qumeWJoxzUobkvv.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Scada" - }, - { - "src": "http://fonts.gstatic.com/s/scada/v15/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Scada" - }, - { - "src": "http://fonts.gstatic.com/s/scada/v15/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Scada" - }, - { - "src": "http://fonts.gstatic.com/s/scada/v15/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Scada" - } - ] - }, - { - "name": "Scheherazade New", - "fontFamily": "Scheherazade New, serif", - "slug": "scheherazade-new", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/scheherazadenew/v14/4UaZrFhTvxVnHDvUkUiHg8jprP4DCwNsOl4p5Is.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Scheherazade New" - }, - { - "src": "http://fonts.gstatic.com/s/scheherazadenew/v14/4UaerFhTvxVnHDvUkUiHg8jprP4DM79DHlYC-IKnoSE.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Scheherazade New" - } - ] - }, - { - "name": "Schibsted Grotesk", - "fontFamily": "Schibsted Grotesk, sans-serif", - "slug": "schibsted-grotesk", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNIsEAT8JuXFGVOQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNEMEAT8JuXFGVOQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMN_MYAT8JuXFGVOQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYAT8JuXFGVOQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNosYAT8JuXFGVOQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNi8YAT8JuXFGVOQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLoDMhqflSFOTXs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLaDMhqflSFOTXs.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oI2C8hqflSFOTXs.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oIPC8hqflSFOTXs.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJoC8hqflSFOTXs.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJBC8hqflSFOTXs.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Schibsted Grotesk" - } - ] - }, - { - "name": "Schoolbell", - "fontFamily": "Schoolbell, cursive", - "slug": "schoolbell", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Schoolbell" - } - ] - }, - { - "name": "Scope One", - "fontFamily": "Scope One, serif", - "slug": "scope-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Scope One" - } - ] - }, - { - "name": "Seaweed Script", - "fontFamily": "Seaweed Script, system-ui", - "slug": "seaweed-script", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/seaweedscript/v13/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Seaweed Script" - } - ] - }, - { - "name": "Secular One", - "fontFamily": "Secular One, sans-serif", - "slug": "secular-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/secularone/v11/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Secular One" - } - ] - }, - { - "name": "Sedgwick Ave", - "fontFamily": "Sedgwick Ave, cursive", - "slug": "sedgwick-ave", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sedgwickave/v12/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sedgwick Ave" - } - ] - }, - { - "name": "Sedgwick Ave Display", - "fontFamily": "Sedgwick Ave Display, cursive", - "slug": "sedgwick-ave-display", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sedgwickavedisplay/v19/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sedgwick Ave Display" - } - ] - }, - { - "name": "Sen", - "fontFamily": "Sen, sans-serif", - "slug": "sen", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sen/v7/6xKjdSxYI9_Hm_-MImrpLQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sen" - }, - { - "src": "http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__J9CoKkH1JHUQSQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sen" - }, - { - "src": "http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__O9OoKkH1JHUQSQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sen" - } - ] - }, - { - "name": "Send Flowers", - "fontFamily": "Send Flowers, cursive", - "slug": "send-flowers", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sendflowers/v2/If2PXTjtZS-0Xqy13uCQSULvxwjjouU1iw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Send Flowers" - } - ] - }, - { - "name": "Sevillana", - "fontFamily": "Sevillana, system-ui", - "slug": "sevillana", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sevillana/v21/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sevillana" - } - ] - }, - { - "name": "Seymour One", - "fontFamily": "Seymour One, sans-serif", - "slug": "seymour-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/seymourone/v20/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Seymour One" - } - ] - }, - { - "name": "Shadows Into Light", - "fontFamily": "Shadows Into Light, cursive", - "slug": "shadows-into-light", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shadowsintolight/v15/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shadows Into Light" - } - ] - }, - { - "name": "Shadows Into Light Two", - "fontFamily": "Shadows Into Light Two, cursive", - "slug": "shadows-into-light-two", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shadowsintolighttwo/v14/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shadows Into Light Two" - } - ] - }, - { - "name": "Shalimar", - "fontFamily": "Shalimar, cursive", - "slug": "shalimar", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shalimar/v5/uU9MCBoE6I6iNWFUvTPx8PCOg0uX.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shalimar" - } - ] - }, - { - "name": "Shantell Sans", - "fontFamily": "Shantell Sans, system-ui", - "slug": "shantell-sans", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYQiS2i2yPwxjyRN.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYR8S2i2yPwxjyRN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYROS2i2yPwxjyRN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSiTGi2yPwxjyRN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSbTGi2yPwxjyRN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYT8TGi2yPwxjyRN.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CN71wvgTijRNYgQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CID1wvgTijRNYgQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CLL1wvgTijRNYgQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CF7ywvgTijRNYgQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CGfywvgTijRNYgQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Shantell Sans" - }, - { - "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CADywvgTijRNYgQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Shantell Sans" - } - ] - }, - { - "name": "Shanti", - "fontFamily": "Shanti, sans-serif", - "slug": "shanti", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shanti/v23/t5thIREMM4uSDgzgU0ezpKfwzA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shanti" - } - ] - }, - { - "name": "Share", - "fontFamily": "Share, system-ui", - "slug": "share", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/share/v16/i7dEIFliZjKNF5VNHLq2cV5d.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Share" - }, - { - "src": "http://fonts.gstatic.com/s/share/v16/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Share" - }, - { - "src": "http://fonts.gstatic.com/s/share/v16/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Share" - }, - { - "src": "http://fonts.gstatic.com/s/share/v16/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Share" - } - ] - }, - { - "name": "Share Tech", - "fontFamily": "Share Tech, sans-serif", - "slug": "share-tech", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sharetech/v17/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Share Tech" - } - ] - }, - { - "name": "Share Tech Mono", - "fontFamily": "Share Tech Mono, monospace", - "slug": "share-tech-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Share Tech Mono" - } - ] - }, - { - "name": "Shippori Antique", - "fontFamily": "Shippori Antique, sans-serif", - "slug": "shippori-antique", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shipporiantique/v8/-F6qfid3KC8pdMyzR0qRyFUht11v8ldPg-IUDNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shippori Antique" - } - ] - }, - { - "name": "Shippori Antique B1", - "fontFamily": "Shippori Antique B1, sans-serif", - "slug": "shippori-antique-b1", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shipporiantiqueb1/v8/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRFCj9-5Y8Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shippori Antique B1" - } - ] - }, - { - "name": "Shippori Mincho", - "fontFamily": "Shippori Mincho, serif", - "slug": "shippori-mincho", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGGAZweH5EbgHY6YExcZfDoj0BA2_-C7LoS7g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4L9am5JEO5--2zg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4A9Gm5JEO5--2zg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4Z9Cm5JEO5--2zg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4e9Om5JEO5--2zg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho" - } - ] - }, - { - "name": "Shippori Mincho B1", - "fontFamily": "Shippori Mincho B1, serif", - "slug": "shippori-mincho-b1", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChQKElNoaXBwb3JpIE1pbmNobyBCMSAAKgQIARgB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1" - }, - { - "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRj0AyAAKgQIARgB.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1" - }, - { - "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRjYBCAAKgQIARgB.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1" - }, - { - "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRi8BSAAKgQIARgB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1" - }, - { - "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRigBiAAKgQIARgB.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Shippori Mincho B1" - } - ] - }, - { - "name": "Shojumaru", - "fontFamily": "Shojumaru, system-ui", - "slug": "shojumaru", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shojumaru" - } - ] - }, - { - "name": "Short Stack", - "fontFamily": "Short Stack, cursive", - "slug": "short-stack", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Short Stack" - } - ] - }, - { - "name": "Shrikhand", - "fontFamily": "Shrikhand, system-ui", - "slug": "shrikhand", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/shrikhand/v12/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Shrikhand" - } - ] - }, - { - "name": "Siemreap", - "fontFamily": "Siemreap, system-ui", - "slug": "siemreap", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/siemreap/v24/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Siemreap" - } - ] - }, - { - "name": "Sigmar", - "fontFamily": "Sigmar, system-ui", - "slug": "sigmar", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sigmar/v3/hv-XlzJgIE8a85pUbWY3MTFgVg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sigmar" - } - ] - }, - { - "name": "Sigmar One", - "fontFamily": "Sigmar One, system-ui", - "slug": "sigmar-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sigmarone/v16/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sigmar One" - } - ] - }, - { - "name": "Signika", - "fontFamily": "Signika, sans-serif", - "slug": "signika", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tIJHJbGhs_cfKe1.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Signika" - }, - { - "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJXHJbGhs_cfKe1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Signika" - }, - { - "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJlHJbGhs_cfKe1.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Signika" - }, - { - "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKJG5bGhs_cfKe1.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Signika" - }, - { - "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKwG5bGhs_cfKe1.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Signika" - } - ] - }, - { - "name": "Signika Negative", - "fontFamily": "Signika Negative, sans-serif", - "slug": "signika-negative", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAr5S73st9hiuEq8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Signika Negative" - }, - { - "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS73st9hiuEq8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Signika Negative" - }, - { - "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqVS73st9hiuEq8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Signika Negative" - }, - { - "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAp5TL3st9hiuEq8.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Signika Negative" - }, - { - "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RApATL3st9hiuEq8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Signika Negative" - } - ] - }, - { - "name": "Silkscreen", - "fontFamily": "Silkscreen, system-ui", - "slug": "silkscreen", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/silkscreen/v1/m8JXjfVPf62XiF7kO-i9ULRvamODxdI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Silkscreen" - }, - { - "src": "http://fonts.gstatic.com/s/silkscreen/v1/m8JUjfVPf62XiF7kO-i9aAhATmuo2dudFvc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Silkscreen" - } - ] - }, - { - "name": "Simonetta", - "fontFamily": "Simonetta, system-ui", - "slug": "simonetta", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Simonetta" - }, - { - "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Simonetta" - }, - { - "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Simonetta" - }, - { - "src": "http://fonts.gstatic.com/s/simonetta/v24/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Simonetta" - } - ] - }, - { - "name": "Single Day", - "fontFamily": "Single Day, system-ui", - "slug": "single-day", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/singleday/v15/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Single Day" - } - ] - }, - { - "name": "Sintony", - "fontFamily": "Sintony, sans-serif", - "slug": "sintony", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sintony/v13/XoHm2YDqR7-98cVUITQnu98ojjs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sintony" - }, - { - "src": "http://fonts.gstatic.com/s/sintony/v13/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sintony" - } - ] - }, - { - "name": "Sirin Stencil", - "fontFamily": "Sirin Stencil, system-ui", - "slug": "sirin-stencil", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sirinstencil/v21/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sirin Stencil" - } - ] - }, - { - "name": "Six Caps", - "fontFamily": "Six Caps, sans-serif", - "slug": "six-caps", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sixcaps/v16/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Six Caps" - } - ] - }, - { - "name": "Skranji", - "fontFamily": "Skranji, system-ui", - "slug": "skranji", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Skranji" - }, - { - "src": "http://fonts.gstatic.com/s/skranji/v13/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Skranji" - } - ] - }, - { - "name": "Slabo 13px", - "fontFamily": "Slabo 13px, serif", - "slug": "slabo-13px", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/slabo13px/v13/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Slabo 13px" - } - ] - }, - { - "name": "Slabo 27px", - "fontFamily": "Slabo 27px, serif", - "slug": "slabo-27px", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/slabo27px/v12/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Slabo 27px" - } - ] - }, - { - "name": "Slackey", - "fontFamily": "Slackey, system-ui", - "slug": "slackey", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/slackey/v24/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Slackey" - } - ] - }, - { - "name": "Smokum", - "fontFamily": "Smokum, system-ui", - "slug": "smokum", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/smokum/v24/TK3iWkUbAhopmrdGHjUHte5fKg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Smokum" - } - ] - }, - { - "name": "Smooch", - "fontFamily": "Smooch, cursive", - "slug": "smooch", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/smooch/v5/o-0LIps4xW8U1xUBjqp_6hVdYg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Smooch" - } - ] - }, - { - "name": "Smooch Sans", - "fontFamily": "Smooch Sans, sans-serif", - "slug": "smooch-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUFodqIeNlzayg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUBodqIeNlzayg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oin0BodqIeNlzayg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUBodqIeNlzayg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oi80BodqIeNlzayg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiH0dodqIeNlzayg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiJkdodqIeNlzayg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUdodqIeNlzayg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - }, - { - "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiaEdodqIeNlzayg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Smooch Sans" - } - ] - }, - { - "name": "Smythe", - "fontFamily": "Smythe, system-ui", - "slug": "smythe", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1BOLh_uGInjA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Smythe" - } - ] - }, - { - "name": "Sniglet", - "fontFamily": "Sniglet, system-ui", - "slug": "sniglet", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sniglet" - }, - { - "src": "http://fonts.gstatic.com/s/sniglet/v17/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sniglet" - } - ] - }, - { - "name": "Snippet", - "fontFamily": "Snippet, sans-serif", - "slug": "snippet", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Snippet" - } - ] - }, - { - "name": "Snowburst One", - "fontFamily": "Snowburst One, system-ui", - "slug": "snowburst-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Snowburst One" - } - ] - }, - { - "name": "Sofadi One", - "fontFamily": "Sofadi One, system-ui", - "slug": "sofadi-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofadi One" - } - ] - }, - { - "name": "Sofia", - "fontFamily": "Sofia, cursive", - "slug": "sofia", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_vu-sowsrqjk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia" - } - ] - }, - { - "name": "Sofia Sans", - "fontFamily": "Sofia Sans, sans-serif", - "slug": "sofia-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sa3trvKCXl8k.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6sK3trvKCXl8k.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69AksK3trvKCXl8k.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sK3trvKCXl8k.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69BIsK3trvKCXl8k.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Ckt63trvKCXl8k.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Cdt63trvKCXl8k.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6t63trvKCXl8k.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69DTt63trvKCXl8k.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WvpPagW08kdLY.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WupPagW08kdLY.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8xuupPagW08kdLY.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WupPagW08kdLY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy83eupPagW08kdLY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy85uppPagW08kdLY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy86KppPagW08kdLY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WppPagW08kdLY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8-yppPagW08kdLY.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sofia Sans" - } - ] - }, - { - "name": "Sofia Sans Condensed", - "fontFamily": "Sofia Sans Condensed, sans-serif", - "slug": "sofia-sans-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Csl8QO3OfwQQ.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-Gsl8QO3OfwQQ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUq2eGsl8QO3OfwQQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Gsl8QO3OfwQQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqteGsl8QO3OfwQQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqWeasl8QO3OfwQQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqYOasl8QO3OfwQQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-asl8QO3OfwQQ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqLuasl8QO3OfwQQ.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1c4K_uLgQZ_3.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE1M4K_uLgQZ_3.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ia1M4K_uLgQZ_3.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1M4K_uLgQZ_3.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6J21M4K_uLgQZ_3.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ka084K_uLgQZ_3.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Kj084K_uLgQZ_3.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE084K_uLgQZ_3.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Lt084K_uLgQZ_3.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Condensed" - } - ] - }, - { - "name": "Sofia Sans Extra Condensed", - "fontFamily": "Sofia Sans Extra Condensed, sans-serif", - "slug": "sofia-sans-extra-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmmEfzmM356GxA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGmiEfzmM356GxA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLxGiEfzmM356GxA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmiEfzmM356GxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLqGiEfzmM356GxA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLRG-EfzmM356GxA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLfW-EfzmM356GxA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGm-EfzmM356GxA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLM2-EfzmM356GxA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPTOI_ZuWxFXe.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsPDOI_ZuWxFXe.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUisyPDOI_ZuWxFXe.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPDOI_ZuWxFXe.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitePDOI_ZuWxFXe.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuyOzOI_ZuWxFXe.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuLOzOI_ZuWxFXe.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsOzOI_ZuWxFXe.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivFOzOI_ZuWxFXe.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Extra Condensed" - } - ] - }, - { - "name": "Sofia Sans Semi Condensed", - "fontFamily": "Sofia Sans Semi Condensed, sans-serif", - "slug": "sofia-sans-semi-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEO9TGahllIhN.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbEe9TGahllIhN.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvopFEe9TGahllIhN.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEe9TGahllIhN.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoopEe9TGahllIhN.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvorFFu9TGahllIhN.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvor8Fu9TGahllIhN.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbFu9TGahllIhN.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqyFu9TGahllIhN.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcRE6xHkZhNeas.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocQE6xHkZhNeas.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUlkQE6xHkZhNeas.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcQE6xHkZhNeas.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUjUQE6xHkZhNeas.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUtkXE6xHkZhNeas.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUuAXE6xHkZhNeas.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocXE6xHkZhNeas.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - }, - { - "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUq4XE6xHkZhNeas.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Sofia Sans Semi Condensed" - } - ] - }, - { - "name": "Solitreo", - "fontFamily": "Solitreo, cursive", - "slug": "solitreo", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/solitreo/v2/r05YGLlS5a9KYsyNO8upyDYtStiJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Solitreo" - } - ] - }, - { - "name": "Solway", - "fontFamily": "Solway, serif", - "slug": "solway", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuLlgZms0QW3mqyg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Solway" - }, - { - "src": "http://fonts.gstatic.com/s/solway/v18/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Solway" - }, - { - "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCudlkZms0QW3mqyg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Solway" - }, - { - "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuPl8Zms0QW3mqyg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Solway" - }, - { - "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuIlwZms0QW3mqyg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Solway" - } - ] - }, - { - "name": "Song Myung", - "fontFamily": "Song Myung, serif", - "slug": "song-myung", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/songmyung/v20/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Song Myung" - } - ] - }, - { - "name": "Sono", - "fontFamily": "Sono, sans-serif", - "slug": "sono", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkWdEnR4qYeB4Q.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sono" - }, - { - "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxV6EWdEnR4qYeB4Q.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sono" - }, - { - "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVtkWdEnR4qYeB4Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sono" - }, - { - "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVhEWdEnR4qYeB4Q.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sono" - }, - { - "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVaEKdEnR4qYeB4Q.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sono" - }, - { - "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVUUKdEnR4qYeB4Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sono" - }, - { - "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkKdEnR4qYeB4Q.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sono" - } - ] - }, - { - "name": "Sonsie One", - "fontFamily": "Sonsie One, system-ui", - "slug": "sonsie-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sonsie One" - } - ] - }, - { - "name": "Sora", - "fontFamily": "Sora, sans-serif", - "slug": "sora", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSn3-KIwNhBti0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Sora" - }, - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSnn-KIwNhBti0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Sora" - }, - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmScMnn-KIwNhBti0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sora" - }, - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSnn-KIwNhBti0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sora" - }, - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdgnn-KIwNhBti0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sora" - }, - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSeMmX-KIwNhBti0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Sora" - }, - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSe1mX-KIwNhBti0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sora" - }, - { - "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSmX-KIwNhBti0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Sora" - } - ] - }, - { - "name": "Sorts Mill Goudy", - "fontFamily": "Sorts Mill Goudy, serif", - "slug": "sorts-mill-goudy", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sorts Mill Goudy" - }, - { - "src": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Sorts Mill Goudy" - } - ] - }, - { - "name": "Source Code Pro", - "fontFamily": "Source Code Pro, monospace", - "slug": "source-code-pro", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyQhM5hTXUcdJg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhM5hTXUcdJg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM5hTXUcdJg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXhM5hTXUcdJg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyXhM5hTXUcdJg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DGWXhM5hTXUcdJg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7I1rSVcZZJiGpw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTMo1rSVcZZJiGpw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1rSVcZZJiGpw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTXo1rSVcZZJiGpw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTsoprSVcZZJiGpw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTi4prSVcZZJiGpw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7IprSVcZZJiGpw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTxYprSVcZZJiGpw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Source Code Pro" - } - ] - }, - { - "name": "Source Sans 3", - "fontFamily": "Source Sans 3, sans-serif", - "slug": "source-sans-3", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlO9C4Ym4fB3Ts.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqOdO9C4Ym4fB3Ts.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqLlO9C4Ym4fB3Ts.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqItO9C4Ym4fB3Ts.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9C4Ym4fB3Ts.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9C4Ym4fB3Ts.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlJ9C4Ym4fB3Ts.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9C4Ym4fB3Ts.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Source Sans 3" - } - ] - }, - { - "name": "Source Sans Pro", - "fontFamily": "Source Sans Pro, sans-serif", - "slug": "source-sans-pro", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Source Sans Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Source Sans Pro" - } - ] - }, - { - "name": "Source Serif 4", - "fontFamily": "Source Serif 4, serif", - "slug": "source-serif-4", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdqrhxXD-wGvjU.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiklqrhxXD-wGvjU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhxXD-wGvjU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiiVqrhxXD-wGvjU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjisltrhxXD-wGvjU.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjivBtrhxXD-wGvjU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdtrhxXD-wGvjU.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjir5trhxXD-wGvjU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxl9dC84DrjXEXw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pGF9dC84DrjXEXw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dC84DrjXEXw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pdF9dC84DrjXEXw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pmFhdC84DrjXEXw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdC84DrjXEXw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxlhdC84DrjXEXw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98p71hdC84DrjXEXw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Source Serif 4" - } - ] - }, - { - "name": "Source Serif Pro", - "fontFamily": "Source Serif Pro, serif", - "slug": "source-serif-pro", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasbsfhSugxYUvZrI.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGbSqqwacqdrKvbQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasd8chSugxYUvZrI.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGCSmqwacqdrKvbQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIWzD-0qpwxpaWvjeD0X88SAOeauXE-pQGOyYw2fw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGfS-qwacqdrKvbQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGGS6qwacqdrKvbQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasfcZhSugxYUvZrI.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Source Serif Pro" - }, - { - "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGISyqwacqdrKvbQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Source Serif Pro" - } - ] - }, - { - "name": "Space Grotesk", - "fontFamily": "Space Grotesk, sans-serif", - "slug": "space-grotesk", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsjNsFjTDJK.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Space Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsjNsFjTDJK.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Space Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsjNsFjTDJK.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Space Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksjNsFjTDJK.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Space Grotesk" - }, - { - "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksjNsFjTDJK.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Space Grotesk" - } - ] - }, - { - "name": "Space Mono", - "fontFamily": "Space Mono, monospace", - "slug": "space-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Space Mono" - }, - { - "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Space Mono" - }, - { - "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Space Mono" - }, - { - "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Space Mono" - } - ] - }, - { - "name": "Special Elite", - "fontFamily": "Special Elite, system-ui", - "slug": "special-elite", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Special Elite" - } - ] - }, - { - "name": "Spectral", - "fontFamily": "Spectral, serif", - "slug": "spectral", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Spectral" - }, - { - "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Spectral" - } - ] - }, - { - "name": "Spectral SC", - "fontFamily": "Spectral SC, serif", - "slug": "spectral-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Spectral SC" - }, - { - "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Spectral SC" - } - ] - }, - { - "name": "Spicy Rice", - "fontFamily": "Spicy Rice, system-ui", - "slug": "spicy-rice", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/spicyrice/v21/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spicy Rice" - } - ] - }, - { - "name": "Spinnaker", - "fontFamily": "Spinnaker, sans-serif", - "slug": "spinnaker", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/spinnaker/v17/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spinnaker" - } - ] - }, - { - "name": "Spirax", - "fontFamily": "Spirax, system-ui", - "slug": "spirax", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3cXktt-Csn-Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spirax" - } - ] - }, - { - "name": "Splash", - "fontFamily": "Splash, cursive", - "slug": "splash", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/splash/v2/KtksAL2RZoDkbU6hpPPGNdS6wg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Splash" - } - ] - }, - { - "name": "Spline Sans", - "fontFamily": "Spline Sans, sans-serif", - "slug": "spline-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpZlnYEtvlUfE2kw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Spline Sans" - }, - { - "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnYEtvlUfE2kw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spline Sans" - }, - { - "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpClnYEtvlUfE2kw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Spline Sans" - }, - { - "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp5l7YEtvlUfE2kw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Spline Sans" - }, - { - "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp317YEtvlUfE2kw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Spline Sans" - } - ] - }, - { - "name": "Spline Sans Mono", - "fontFamily": "Spline Sans Mono, monospace", - "slug": "spline-sans-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGA8MrtVy4d4dGb1.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBiMrtVy4d4dGb1.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBQMrtVy4d4dGb1.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGC8NbtVy4d4dGb1.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGCFNbtVy4d4dGb1.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcQ0WwYNacXb12MM.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcVMWwYNacXb12MM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcWEWwYNacXb12MM.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcY0RwYNacXb12MM.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono" - }, - { - "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcbQRwYNacXb12MM.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Spline Sans Mono" - } - ] - }, - { - "name": "Squada One", - "fontFamily": "Squada One, system-ui", - "slug": "squada-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/squadaone/v14/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Squada One" - } - ] - }, - { - "name": "Square Peg", - "fontFamily": "Square Peg, cursive", - "slug": "square-peg", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/squarepeg/v2/y83eW48Nzw6ZlUHc-phrBDHrHHfrFPE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Square Peg" - } - ] - }, - { - "name": "Sree Krushnadevaraya", - "fontFamily": "Sree Krushnadevaraya, serif", - "slug": "sree-krushnadevaraya", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sreekrushnadevaraya/v21/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sree Krushnadevaraya" - } - ] - }, - { - "name": "Sriracha", - "fontFamily": "Sriracha, cursive", - "slug": "sriracha", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sriracha/v11/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sriracha" - } - ] - }, - { - "name": "Srisakdi", - "fontFamily": "Srisakdi, system-ui", - "slug": "srisakdi", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/srisakdi/v16/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Srisakdi" - }, - { - "src": "http://fonts.gstatic.com/s/srisakdi/v16/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Srisakdi" - } - ] - }, - { - "name": "Staatliches", - "fontFamily": "Staatliches, system-ui", - "slug": "staatliches", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/staatliches/v11/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Staatliches" - } - ] - }, - { - "name": "Stalemate", - "fontFamily": "Stalemate, cursive", - "slug": "stalemate", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stalemate/v20/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stalemate" - } - ] - }, - { - "name": "Stalinist One", - "fontFamily": "Stalinist One, system-ui", - "slug": "stalinist-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stalinistone/v54/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stalinist One" - } - ] - }, - { - "name": "Stardos Stencil", - "fontFamily": "Stardos Stencil, system-ui", - "slug": "stardos-stencil", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stardos Stencil" - }, - { - "src": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Stardos Stencil" - } - ] - }, - { - "name": "Stick", - "fontFamily": "Stick, sans-serif", - "slug": "stick", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stick/v15/Qw3TZQpMCyTtJSvfvPVDMPoF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stick" - } - ] - }, - { - "name": "Stick No Bills", - "fontFamily": "Stick No Bills, sans-serif", - "slug": "stick-no-bills", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8Q7KriwKhcTKA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Stick No Bills" - }, - { - "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcV4cQ7KriwKhcTKA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Stick No Bills" - }, - { - "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8Q7KriwKhcTKA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stick No Bills" - }, - { - "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVjcQ7KriwKhcTKA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Stick No Bills" - }, - { - "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVYcM7KriwKhcTKA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Stick No Bills" - }, - { - "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVWMM7KriwKhcTKA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Stick No Bills" - }, - { - "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8M7KriwKhcTKA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Stick No Bills" - } - ] - }, - { - "name": "Stint Ultra Condensed", - "fontFamily": "Stint Ultra Condensed, system-ui", - "slug": "stint-ultra-condensed", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stintultracondensed/v21/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stint Ultra Condensed" - } - ] - }, - { - "name": "Stint Ultra Expanded", - "fontFamily": "Stint Ultra Expanded, system-ui", - "slug": "stint-ultra-expanded", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stintultraexpanded/v20/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stint Ultra Expanded" - } - ] - }, - { - "name": "Stoke", - "fontFamily": "Stoke, serif", - "slug": "stoke", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stoke/v22/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Stoke" - }, - { - "src": "http://fonts.gstatic.com/s/stoke/v22/z7NadRb7aTMfKONpfihK1YTV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stoke" - } - ] - }, - { - "name": "Strait", - "fontFamily": "Strait, sans-serif", - "slug": "strait", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/strait/v15/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Strait" - } - ] - }, - { - "name": "Style Script", - "fontFamily": "Style Script, cursive", - "slug": "style-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stylescript/v8/vm8xdRX3SV7Z0aPa88xzW5npeFT76NZnMw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Style Script" - } - ] - }, - { - "name": "Stylish", - "fontFamily": "Stylish, sans-serif", - "slug": "stylish", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/stylish/v20/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Stylish" - } - ] - }, - { - "name": "Sue Ellen Francisco", - "fontFamily": "Sue Ellen Francisco, cursive", - "slug": "sue-ellen-francisco", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sueellenfrancisco/v16/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sue Ellen Francisco" - } - ] - }, - { - "name": "Suez One", - "fontFamily": "Suez One, serif", - "slug": "suez-one", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/suezone/v11/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Suez One" - } - ] - }, - { - "name": "Sulphur Point", - "fontFamily": "Sulphur Point, sans-serif", - "slug": "sulphur-point", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afVU6n6kFUHPIFaU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sulphur Point" - }, - { - "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sulphur Point" - }, - { - "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afUU9n6kFUHPIFaU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sulphur Point" - } - ] - }, - { - "name": "Sumana", - "fontFamily": "Sumana, serif", - "slug": "sumana", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sumana/v10/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sumana" - }, - { - "src": "http://fonts.gstatic.com/s/sumana/v10/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sumana" - } - ] - }, - { - "name": "Sunflower", - "fontFamily": "Sunflower, sans-serif", - "slug": "sunflower", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Sunflower" - }, - { - "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Sunflower" - }, - { - "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sunflower" - } - ] - }, - { - "name": "Sunshiney", - "fontFamily": "Sunshiney, cursive", - "slug": "sunshiney", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sunshiney" - } - ] - }, - { - "name": "Supermercado One", - "fontFamily": "Supermercado One, system-ui", - "slug": "supermercado-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/supermercadoone/v22/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Supermercado One" - } - ] - }, - { - "name": "Sura", - "fontFamily": "Sura, serif", - "slug": "sura", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/sura/v16/SZc23FL5PbyzFf5UWzXtjUM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Sura" - }, - { - "src": "http://fonts.gstatic.com/s/sura/v16/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Sura" - } - ] - }, - { - "name": "Suranna", - "fontFamily": "Suranna, serif", - "slug": "suranna", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/suranna/v13/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Suranna" - } - ] - }, - { - "name": "Suravaram", - "fontFamily": "Suravaram, serif", - "slug": "suravaram", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/suravaram/v21/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Suravaram" - } - ] - }, - { - "name": "Suwannaphum", - "fontFamily": "Suwannaphum, serif", - "slug": "suwannaphum", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnAgHV7GtDvc8jbe8hXXL3B9cSWXx2VZmk.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Suwannaphum" - }, - { - "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0J1-S8cRGcf3Ai.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Suwannaphum" - }, - { - "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Suwannaphum" - }, - { - "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0Z0OS8cRGcf3Ai.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Suwannaphum" - }, - { - "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0h0uS8cRGcf3Ai.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Suwannaphum" - } - ] - }, - { - "name": "Swanky and Moo Moo", - "fontFamily": "Swanky and Moo Moo, cursive", - "slug": "swanky-and-moo-moo", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/swankyandmoomoo/v22/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Swanky and Moo Moo" - } - ] - }, - { - "name": "Syncopate", - "fontFamily": "Syncopate, sans-serif", - "slug": "syncopate", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/syncopate/v19/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Syncopate" - }, - { - "src": "http://fonts.gstatic.com/s/syncopate/v19/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Syncopate" - } - ] - }, - { - "name": "Syne", - "fontFamily": "Syne, sans-serif", - "slug": "syne", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6kR47NCV5Z.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Syne" - }, - { - "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6kR47NCV5Z.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Syne" - }, - { - "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Syne" - }, - { - "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Syne" - }, - { - "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6kR47NCV5Z.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Syne" - } - ] - }, - { - "name": "Syne Mono", - "fontFamily": "Syne Mono, monospace", - "slug": "syne-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/synemono/v15/K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Syne Mono" - } - ] - }, - { - "name": "Syne Tactile", - "fontFamily": "Syne Tactile, system-ui", - "slug": "syne-tactile", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/synetactile/v15/11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Syne Tactile" - } - ] - }, - { - "name": "Tai Heritage Pro", - "fontFamily": "Tai Heritage Pro, serif", - "slug": "tai-heritage-pro", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/taiheritagepro/v5/sZlfdQid-zgaNiNIYcUzJMU3IYyNoHxSENxuLuE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tai Heritage Pro" - }, - { - "src": "http://fonts.gstatic.com/s/taiheritagepro/v5/sZlYdQid-zgaNiNIYcUzJMU3IYyNmMB9NNRFMuhjCXY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tai Heritage Pro" - } - ] - }, - { - "name": "Tajawal", - "fontFamily": "Tajawal, sans-serif", - "slug": "tajawal", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Tajawal" - }, - { - "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Tajawal" - }, - { - "src": "http://fonts.gstatic.com/s/tajawal/v9/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tajawal" - }, - { - "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tajawal" - }, - { - "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tajawal" - }, - { - "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Tajawal" - }, - { - "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Tajawal" - } - ] - }, - { - "name": "Tangerine", - "fontFamily": "Tangerine, cursive", - "slug": "tangerine", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tangerine" - }, - { - "src": "http://fonts.gstatic.com/s/tangerine/v17/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tangerine" - } - ] - }, - { - "name": "Tapestry", - "fontFamily": "Tapestry, cursive", - "slug": "tapestry", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tapestry/v2/SlGTmQecrosEYXhaGBIkqnB6aSQU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tapestry" - } - ] - }, - { - "name": "Taprom", - "fontFamily": "Taprom, system-ui", - "slug": "taprom", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/taprom/v27/UcCn3F82JHycULbFQyk3-0kvHg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Taprom" - } - ] - }, - { - "name": "Tauri", - "fontFamily": "Tauri, sans-serif", - "slug": "tauri", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tauri/v16/TwMA-IISS0AM3IpVWHU_TBqO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tauri" - } - ] - }, - { - "name": "Taviraj", - "fontFamily": "Taviraj, serif", - "slug": "taviraj", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Taviraj" - }, - { - "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Taviraj" - } - ] - }, - { - "name": "Teko", - "fontFamily": "Teko, sans-serif", - "slug": "teko", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Teko" - }, - { - "src": "http://fonts.gstatic.com/s/teko/v16/LYjNdG7kmE0gTaR3pCtBtVs.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Teko" - }, - { - "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Teko" - }, - { - "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Teko" - }, - { - "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Teko" - } - ] - }, - { - "name": "Telex", - "fontFamily": "Telex, sans-serif", - "slug": "telex", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/telex/v17/ieVw2Y1fKWmIO9fTB1piKFIf.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Telex" - } - ] - }, - { - "name": "Tenali Ramakrishna", - "fontFamily": "Tenali Ramakrishna, sans-serif", - "slug": "tenali-ramakrishna", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tenaliramakrishna/v12/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tenali Ramakrishna" - } - ] - }, - { - "name": "Tenor Sans", - "fontFamily": "Tenor Sans, sans-serif", - "slug": "tenor-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tenorsans/v17/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tenor Sans" - } - ] - }, - { - "name": "Text Me One", - "fontFamily": "Text Me One, sans-serif", - "slug": "text-me-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/textmeone/v21/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Text Me One" - } - ] - }, - { - "name": "Texturina", - "fontFamily": "Texturina, serif", - "slug": "texturina", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYG_Ug25riW1OD.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYGvUg25riW1OD.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2fGGvUg25riW1OD.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGvUg25riW1OD.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eqGvUg25riW1OD.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2dGHfUg25riW1OD.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2d_HfUg25riW1OD.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYHfUg25riW1OD.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cxHfUg25riW1OD.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1i0Z7AXkODN94.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1j0Z7AXkODN94.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWUNj0Z7AXkODN94.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1j0Z7AXkODN94.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWS9j0Z7AXkODN94.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWcNk0Z7AXkODN94.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWfpk0Z7AXkODN94.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1k0Z7AXkODN94.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Texturina" - }, - { - "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWbRk0Z7AXkODN94.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Texturina" - } - ] - }, - { - "name": "Thasadith", - "fontFamily": "Thasadith, sans-serif", - "slug": "thasadith", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Thasadith" - }, - { - "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Thasadith" - }, - { - "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Thasadith" - }, - { - "src": "http://fonts.gstatic.com/s/thasadith/v9/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Thasadith" - } - ] - }, - { - "name": "The Girl Next Door", - "fontFamily": "The Girl Next Door, cursive", - "slug": "the-girl-next-door", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/thegirlnextdoor/v18/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "The Girl Next Door" - } - ] - }, - { - "name": "The Nautigal", - "fontFamily": "The Nautigal, cursive", - "slug": "the-nautigal", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/thenautigal/v3/VdGZAZ8ZH51Lvng9fQV2bfKr5wVk09Se5Q.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "The Nautigal" - }, - { - "src": "http://fonts.gstatic.com/s/thenautigal/v3/VdGGAZ8ZH51Lvng9fQV2bfKTWypA2_-C7LoS7g.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "The Nautigal" - } - ] - }, - { - "name": "Tienne", - "fontFamily": "Tienne, serif", - "slug": "tienne", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tienne" - }, - { - "src": "http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tienne" - }, - { - "src": "http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Tienne" - } - ] - }, - { - "name": "Tillana", - "fontFamily": "Tillana, cursive", - "slug": "tillana", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tillana/v11/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tillana" - }, - { - "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tillana" - }, - { - "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Tillana" - }, - { - "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tillana" - }, - { - "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Tillana" - } - ] - }, - { - "name": "Tilt Neon", - "fontFamily": "Tilt Neon, system-ui", - "slug": "tilt-neon", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tiltneon/v6/E21L_d7gguXdwD9LEFY2WCeElCNtd-eBqpHp1TzrkJSmwpj5ndxquXK9WualJ9DS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tilt Neon" - } - ] - }, - { - "name": "Tilt Prism", - "fontFamily": "Tilt Prism, system-ui", - "slug": "tilt-prism", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tiltprism/v8/5h11iZgyPHoZ3YikNzWGfWey2dCAZXT-bH9V4VGn-FJ7tLI25oc_rIbwoTSrn86NKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tilt Prism" - } - ] - }, - { - "name": "Tilt Warp", - "fontFamily": "Tilt Warp, system-ui", - "slug": "tilt-warp", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tiltwarp/v9/AlZc_zVDs5XpmO7yn3w7flUoytXJp3z29uEwmEMLEJljLXvT8UJSZTBxAVfMGOPb.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tilt Warp" - } - ] - }, - { - "name": "Timmana", - "fontFamily": "Timmana, sans-serif", - "slug": "timmana", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/timmana/v12/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Timmana" - } - ] - }, - { - "name": "Tinos", - "fontFamily": "Tinos, serif", - "slug": "tinos", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwgX8dGVh8TI-.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tinos" - }, - { - "src": "http://fonts.gstatic.com/s/tinos/v24/buE2poGnedXvwjX-fmFD9CI-4NU.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tinos" - }, - { - "src": "http://fonts.gstatic.com/s/tinos/v24/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tinos" - }, - { - "src": "http://fonts.gstatic.com/s/tinos/v24/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Tinos" - } - ] - }, - { - "name": "Tiro Bangla", - "fontFamily": "Tiro Bangla, serif", - "slug": "tiro-bangla", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirobangla/v6/IFSgHe1Tm95E3O8b5i2V8MG9-UPeuz4i.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Bangla" - }, - { - "src": "http://fonts.gstatic.com/s/tirobangla/v6/IFSiHe1Tm95E3O8b5i2V8PG_80f8vi4imBM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Bangla" - } - ] - }, - { - "name": "Tiro Devanagari Hindi", - "fontFamily": "Tiro Devanagari Hindi, serif", - "slug": "tiro-devanagari-hindi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9fSOkOfG0Y3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Devanagari Hindi" - }, - { - "src": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55x8ezN7P8T4e0_CfIJrwdodg9HoYw0i-M9vSuMKXmgI3F_o.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Devanagari Hindi" - } - ] - }, - { - "name": "Tiro Devanagari Marathi", - "fontFamily": "Tiro Devanagari Marathi, serif", - "slug": "tiro-devanagari-marathi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkotDrDJYM2lAZ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Devanagari Marathi" - }, - { - "src": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1zPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkouDpBpIu30AZbUY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Devanagari Marathi" - } - ] - }, - { - "name": "Tiro Devanagari Sanskrit", - "fontFamily": "Tiro Devanagari Sanskrit, serif", - "slug": "tiro-devanagari-sanskrit", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59pEoEqgtOh0w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Devanagari Sanskrit" - }, - { - "src": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoGzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59ZEIsuoNax06MM.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Devanagari Sanskrit" - } - ] - }, - { - "name": "Tiro Gurmukhi", - "fontFamily": "Tiro Gurmukhi, serif", - "slug": "tiro-gurmukhi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3dmckXSYq-Uqjc048JUF7Jvly7HAQsyA2Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Gurmukhi" - }, - { - "src": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3d4ckXSYq-Uqjc048JUF7JvpyzNBSk3E2YljQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Gurmukhi" - } - ] - }, - { - "name": "Tiro Kannada", - "fontFamily": "Tiro Kannada, serif", - "slug": "tiro-kannada", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirokannada/v6/CSR44ztKmvqaDxEDJFY7CIYKSPl6tOU9Eg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Kannada" - }, - { - "src": "http://fonts.gstatic.com/s/tirokannada/v6/CSRm4ztKmvqaDxEDJFY7CIY6SvN-luAtEnKp.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Kannada" - } - ] - }, - { - "name": "Tiro Tamil", - "fontFamily": "Tiro Tamil, serif", - "slug": "tiro-tamil", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirotamil/v10/m8JXjfVIf7OT22n3M-S_ULRvamODxdI.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Tamil" - }, - { - "src": "http://fonts.gstatic.com/s/tirotamil/v10/m8JVjfVIf7OT22n3M-S_YLZlbkGG1dKEDw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Tamil" - } - ] - }, - { - "name": "Tiro Telugu", - "fontFamily": "Tiro Telugu, serif", - "slug": "tiro-telugu", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTQ7PxlZWk2EPiSymjXdKSNQqn0X0BO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tiro Telugu" - }, - { - "src": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTS7PxlZWk2EPiSymjXdJSPSK3WWlBOoas.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tiro Telugu" - } - ] - }, - { - "name": "Titan One", - "fontFamily": "Titan One, system-ui", - "slug": "titan-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/titanone/v13/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Titan One" - } - ] - }, - { - "name": "Titillium Web", - "fontFamily": "Titillium Web, sans-serif", - "slug": "titillium-web", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Titillium Web" - }, - { - "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Titillium Web" - } - ] - }, - { - "name": "Tomorrow", - "fontFamily": "Tomorrow, sans-serif", - "slug": "tomorrow", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgR2xe2XiKMiokE4.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLirETNbFtZCeGqgRXXQwHoLOqtgE5h0A.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0dWkXIBsShiVd4.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ63JDMCDjEd4yVY.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR15WUXIBsShiVd4.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8nKDMCDjEd4yVY.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgRXXe2XiKMiokE4.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0hWEXIBsShiVd4.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ5HLDMCDjEd4yVY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0NX0XIBsShiVd4.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ73MDMCDjEd4yVY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1pXkXIBsShiVd4.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ9nNDMCDjEd4yVY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR11XUXIBsShiVd4.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8XODMCDjEd4yVY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1RXEXIBsShiVd4.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Tomorrow" - }, - { - "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ-HPDMCDjEd4yVY.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Tomorrow" - } - ] - }, - { - "name": "Tourney", - "fontFamily": "Tourney, system-ui", - "slug": "tourney", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQByZTp1I1LcGA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQFyZTp1I1LcGA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GZwFyZTp1I1LcGA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFyZTp1I1LcGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GCwFyZTp1I1LcGA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G5wZyZTp1I1LcGA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G3gZyZTp1I1LcGA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQZyZTp1I1LcGA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GkAZyZTp1I1LcGA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJzBxAVfMGOPb.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaJjBxAVfMGOPb.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8ULEJjBxAVfMGOPb.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJjBxAVfMGOPb.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKoJjBxAVfMGOPb.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJEITBxAVfMGOPb.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJ9ITBxAVfMGOPb.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaITBxAVfMGOPb.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Tourney" - }, - { - "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIzITBxAVfMGOPb.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Tourney" - } - ] - }, - { - "name": "Trade Winds", - "fontFamily": "Trade Winds, system-ui", - "slug": "trade-winds", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tradewinds/v17/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trade Winds" - } - ] - }, - { - "name": "Train One", - "fontFamily": "Train One, system-ui", - "slug": "train-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/trainone/v13/gyB-hwkiNtc6KnxUVjWHOqbZRY7JVQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Train One" - } - ] - }, - { - "name": "Trirong", - "fontFamily": "Trirong, serif", - "slug": "trirong", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Trirong" - }, - { - "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Trirong" - } - ] - }, - { - "name": "Trispace", - "fontFamily": "Trispace, sans-serif", - "slug": "trispace", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9qoQl0zHugpt0.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Trispace" - }, - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9roQl0zHugpt0.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Trispace" - }, - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbCFroQl0zHugpt0.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Trispace" - }, - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9roQl0zHugpt0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trispace" - }, - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbE1roQl0zHugpt0.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Trispace" - }, - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbKFsoQl0zHugpt0.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Trispace" - }, - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbJhsoQl0zHugpt0.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Trispace" - }, - { - "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9soQl0zHugpt0.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Trispace" - } - ] - }, - { - "name": "Trocchi", - "fontFamily": "Trocchi, serif", - "slug": "trocchi", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/trocchi/v15/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trocchi" - } - ] - }, - { - "name": "Trochut", - "fontFamily": "Trochut, system-ui", - "slug": "trochut", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/trochut/v20/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trochut" - }, - { - "src": "http://fonts.gstatic.com/s/trochut/v20/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Trochut" - }, - { - "src": "http://fonts.gstatic.com/s/trochut/v20/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Trochut" - } - ] - }, - { - "name": "Truculenta", - "fontFamily": "Truculenta, sans-serif", - "slug": "truculenta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAjswcFHnJMMhg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAiswcFHnJMMhg.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMg4iswcFHnJMMhg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAiswcFHnJMMhg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMmIiswcFHnJMMhg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMo4lswcFHnJMMhg.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMrclswcFHnJMMhg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAlswcFHnJMMhg.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Truculenta" - }, - { - "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMvklswcFHnJMMhg.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Truculenta" - } - ] - }, - { - "name": "Trykker", - "fontFamily": "Trykker, serif", - "slug": "trykker", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPzhNnoOd2j22U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Trykker" - } - ] - }, - { - "name": "Tulpen One", - "fontFamily": "Tulpen One, system-ui", - "slug": "tulpen-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/tulpenone/v21/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Tulpen One" - } - ] - }, - { - "name": "Turret Road", - "fontFamily": "Turret Road, system-ui", - "slug": "turret-road", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Turret Road" - }, - { - "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Turret Road" - }, - { - "src": "http://fonts.gstatic.com/s/turretroad/v7/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Turret Road" - }, - { - "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Turret Road" - }, - { - "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Turret Road" - }, - { - "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Turret Road" - } - ] - }, - { - "name": "Twinkle Star", - "fontFamily": "Twinkle Star, cursive", - "slug": "twinkle-star", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/twinklestar/v3/pe0pMI6IL4dPoFl9LGEmY6WaA_Rue1UwVg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Twinkle Star" - } - ] - }, - { - "name": "Ubuntu", - "fontFamily": "Ubuntu, sans-serif", - "slug": "ubuntu", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Ubuntu" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Ubuntu" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ubuntu" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ubuntu" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ubuntu" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Ubuntu" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ubuntu" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Ubuntu" - } - ] - }, - { - "name": "Ubuntu Condensed", - "fontFamily": "Ubuntu Condensed, sans-serif", - "slug": "ubuntu-condensed", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ubuntu Condensed" - } - ] - }, - { - "name": "Ubuntu Mono", - "fontFamily": "Ubuntu Mono, monospace", - "slug": "ubuntu-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ubuntu Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ubuntu Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ubuntu Mono" - }, - { - "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Ubuntu Mono" - } - ] - }, - { - "name": "Uchen", - "fontFamily": "Uchen, serif", - "slug": "uchen", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/uchen/v7/nKKZ-GokGZ1baIaSEQGodLxA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Uchen" - } - ] - }, - { - "name": "Ultra", - "fontFamily": "Ultra, serif", - "slug": "ultra", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ultra/v19/zOLy4prXmrtY-tT6yLOD6NxF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ultra" - } - ] - }, - { - "name": "Unbounded", - "fontFamily": "Unbounded, system-ui", - "slug": "unbounded", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65jx043HgP6LR0Y.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Unbounded" - }, - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG60bx043HgP6LR0Y.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Unbounded" - }, - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx043HgP6LR0Y.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unbounded" - }, - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx043HgP6LR0Y.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Unbounded" - }, - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG68b2043HgP6LR0Y.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Unbounded" - }, - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6__2043HgP6LR0Y.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Unbounded" - }, - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65j2043HgP6LR0Y.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Unbounded" - }, - { - "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG67H2043HgP6LR0Y.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Unbounded" - } - ] - }, - { - "name": "Uncial Antiqua", - "fontFamily": "Uncial Antiqua, system-ui", - "slug": "uncial-antiqua", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/uncialantiqua/v20/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Uncial Antiqua" - } - ] - }, - { - "name": "Underdog", - "fontFamily": "Underdog, system-ui", - "slug": "underdog", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/underdog/v23/CHygV-jCElj7diMroVSiU14GN2Il.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Underdog" - } - ] - }, - { - "name": "Unica One", - "fontFamily": "Unica One, system-ui", - "slug": "unica-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/unicaone/v15/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unica One" - } - ] - }, - { - "name": "UnifrakturCook", - "fontFamily": "UnifrakturCook, system-ui", - "slug": "unifrakturcook", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/unifrakturcook/v19/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "UnifrakturCook" - } - ] - }, - { - "name": "UnifrakturMaguntia", - "fontFamily": "UnifrakturMaguntia, system-ui", - "slug": "unifrakturmaguntia", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/unifrakturmaguntia/v16/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "UnifrakturMaguntia" - } - ] - }, - { - "name": "Unkempt", - "fontFamily": "Unkempt, system-ui", - "slug": "unkempt", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/unkempt/v19/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unkempt" - }, - { - "src": "http://fonts.gstatic.com/s/unkempt/v19/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Unkempt" - } - ] - }, - { - "name": "Unlock", - "fontFamily": "Unlock, system-ui", - "slug": "unlock", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/unlock/v24/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unlock" - } - ] - }, - { - "name": "Unna", - "fontFamily": "Unna, serif", - "slug": "unna", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/unna/v21/AYCEpXzofN0NCpgBlGHCWFM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Unna" - }, - { - "src": "http://fonts.gstatic.com/s/unna/v21/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Unna" - }, - { - "src": "http://fonts.gstatic.com/s/unna/v21/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Unna" - }, - { - "src": "http://fonts.gstatic.com/s/unna/v21/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Unna" - } - ] - }, - { - "name": "Updock", - "fontFamily": "Updock, cursive", - "slug": "updock", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/updock/v2/nuF4D_3dVZ70UI9SjLK3602XBw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Updock" - } - ] - }, - { - "name": "Urbanist", - "fontFamily": "Urbanist, sans-serif", - "slug": "urbanist", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx8fFpOrS8SlKw.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSx4fFpOrS8SlKw.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDlR4fFpOrS8SlKw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fFpOrS8SlKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fFpOrS8SlKw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFpOrS8SlKw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfFpOrS8SlKw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSxkfFpOrS8SlKw.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfFpOrS8SlKw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VJmvacG1K4S1.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113VZmvacG1K4S1.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA12pVZmvacG1K4S1.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VZmvacG1K4S1.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA13FVZmvacG1K4S1.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10pUpmvacG1K4S1.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmvacG1K4S1.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113UpmvacG1K4S1.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Urbanist" - }, - { - "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmvacG1K4S1.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Urbanist" - } - ] - }, - { - "name": "VT323", - "fontFamily": "VT323, monospace", - "slug": "vt323", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2hsYHpT2dkNE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "VT323" - } - ] - }, - { - "name": "Vampiro One", - "fontFamily": "Vampiro One, system-ui", - "slug": "vampiro-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vampiro One" - } - ] - }, - { - "name": "Varela", - "fontFamily": "Varela, sans-serif", - "slug": "varela", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Varela" - } - ] - }, - { - "name": "Varela Round", - "fontFamily": "Varela Round, sans-serif", - "slug": "varela-round", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/varelaround/v20/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Varela Round" - } - ] - }, - { - "name": "Varta", - "fontFamily": "Varta, sans-serif", - "slug": "varta", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x96j4EirE-9PGLfQ.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Varta" - }, - { - "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD4EirE-9PGLfQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Varta" - }, - { - "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9hj4EirE-9PGLfQ.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Varta" - }, - { - "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9ajkEirE-9PGLfQ.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Varta" - }, - { - "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9UzkEirE-9PGLfQ.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Varta" - } - ] - }, - { - "name": "Vast Shadow", - "fontFamily": "Vast Shadow, system-ui", - "slug": "vast-shadow", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vastshadow/v15/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vast Shadow" - } - ] - }, - { - "name": "Vazirmatn", - "fontFamily": "Vazirmatn, sans-serif", - "slug": "vazirmatn", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgyOReZ72DF_QY.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklegzOReZ72DF_QY.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklTYzOReZ72DF_QY.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgzOReZ72DF_QY.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklVozOReZ72DF_QY.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklbY0OReZ72DF_QY.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklY80OReZ72DF_QY.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRkleg0OReZ72DF_QY.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - }, - { - "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklcE0OReZ72DF_QY.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Vazirmatn" - } - ] - }, - { - "name": "Vesper Libre", - "fontFamily": "Vesper Libre, serif", - "slug": "vesper-libre", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vesper Libre" - }, - { - "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Vesper Libre" - }, - { - "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Vesper Libre" - }, - { - "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Vesper Libre" - } - ] - }, - { - "name": "Viaoda Libre", - "fontFamily": "Viaoda Libre, system-ui", - "slug": "viaoda-libre", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/viaodalibre/v15/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Viaoda Libre" - } - ] - }, - { - "name": "Vibes", - "fontFamily": "Vibes, system-ui", - "slug": "vibes", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vibes/v14/QdVYSTsmIB6tmbd3HpbsuBlh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vibes" - } - ] - }, - { - "name": "Vibur", - "fontFamily": "Vibur, cursive", - "slug": "vibur", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vibur" - } - ] - }, - { - "name": "Vidaloka", - "fontFamily": "Vidaloka, serif", - "slug": "vidaloka", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEass8yn4hnCci.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vidaloka" - } - ] - }, - { - "name": "Viga", - "fontFamily": "Viga, sans-serif", - "slug": "viga", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiX_QIjD4e2OX8.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Viga" - } - ] - }, - { - "name": "Vina Sans", - "fontFamily": "Vina Sans, system-ui", - "slug": "vina-sans", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vinasans/v2/m8JQjfZKf6-d2273MP7zcJ5BZmqa3A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vina Sans" - } - ] - }, - { - "name": "Voces", - "fontFamily": "Voces, system-ui", - "slug": "voces", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/voces/v20/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Voces" - } - ] - }, - { - "name": "Volkhov", - "fontFamily": "Volkhov, serif", - "slug": "volkhov", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Volkhov" - }, - { - "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Volkhov" - }, - { - "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Volkhov" - }, - { - "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Volkhov" - } - ] - }, - { - "name": "Vollkorn", - "fontFamily": "Vollkorn, serif", - "slug": "vollkorn", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuGWOdEbD63w.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuGWOdEbD63w.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauGWOdEbD63w.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auGWOdEbD63w.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauGWOdEbD63w.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauGWOdEbD63w.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmZM7Xq34g9.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmZM7Xq34g9.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmZM7Xq34g9.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmZM7Xq34g9.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmZM7Xq34g9.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Vollkorn" - }, - { - "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmZM7Xq34g9.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Vollkorn" - } - ] - }, - { - "name": "Vollkorn SC", - "fontFamily": "Vollkorn SC, serif", - "slug": "vollkorn-sc", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vollkorn SC" - }, - { - "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Vollkorn SC" - }, - { - "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Vollkorn SC" - }, - { - "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Vollkorn SC" - } - ] - }, - { - "name": "Voltaire", - "fontFamily": "Voltaire, sans-serif", - "slug": "voltaire", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/voltaire/v18/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Voltaire" - } - ] - }, - { - "name": "Vujahday Script", - "fontFamily": "Vujahday Script, cursive", - "slug": "vujahday-script", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/vujahdayscript/v4/RWmQoKGA8fEkrIPtSZ3_J7er2dUiDEtvAlaMKw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Vujahday Script" - } - ] - }, - { - "name": "Waiting for the Sunrise", - "fontFamily": "Waiting for the Sunrise, cursive", - "slug": "waiting-for-the-sunrise", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/waitingforthesunrise/v16/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Waiting for the Sunrise" - } - ] - }, - { - "name": "Wallpoet", - "fontFamily": "Wallpoet, system-ui", - "slug": "wallpoet", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/wallpoet/v16/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wallpoet" - } - ] - }, - { - "name": "Walter Turncoat", - "fontFamily": "Walter Turncoat, cursive", - "slug": "walter-turncoat", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/walterturncoat/v19/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Walter Turncoat" - } - ] - }, - { - "name": "Warnes", - "fontFamily": "Warnes, system-ui", - "slug": "warnes", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/warnes/v25/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Warnes" - } - ] - }, - { - "name": "Water Brush", - "fontFamily": "Water Brush, cursive", - "slug": "water-brush", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/waterbrush/v2/AYCPpXPqc8cJWLhp4hywKHJq7PKP5Z_G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Water Brush" - } - ] - }, - { - "name": "Waterfall", - "fontFamily": "Waterfall, cursive", - "slug": "waterfall", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/waterfall/v3/MCoRzAfo293fACdFKcwY2rH8D_EZwA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Waterfall" - } - ] - }, - { - "name": "Wellfleet", - "fontFamily": "Wellfleet, system-ui", - "slug": "wellfleet", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/wellfleet/v20/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wellfleet" - } - ] - }, - { - "name": "Wendy One", - "fontFamily": "Wendy One, sans-serif", - "slug": "wendy-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/wendyone/v15/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wendy One" - } - ] - }, - { - "name": "Whisper", - "fontFamily": "Whisper, cursive", - "slug": "whisper", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/whisper/v2/q5uHsoqtKftx74K9milCBxxdmYU.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Whisper" - } - ] - }, - { - "name": "WindSong", - "fontFamily": "WindSong, cursive", - "slug": "windsong", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/windsong/v8/KR1WBsyu-P-GFEW57r95HdG6vjH3.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "WindSong" - }, - { - "src": "http://fonts.gstatic.com/s/windsong/v8/KR1RBsyu-P-GFEW57oeNNPWylS3-jVXm.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "WindSong" - } - ] - }, - { - "name": "Wire One", - "fontFamily": "Wire One, sans-serif", - "slug": "wire-one", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/wireone/v24/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wire One" - } - ] - }, - { - "name": "Wix Madefor Display", - "fontFamily": "Wix Madefor Display, sans-serif", - "slug": "wix-madefor-display", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFhYltkv_3HQKgh.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFTYltkv_3HQKgh.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYG_ZVtkv_3HQKgh.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYGGZVtkv_3HQKgh.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYHhZVtkv_3HQKgh.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Display" - } - ] - }, - { - "name": "Wix Madefor Text", - "fontFamily": "Wix Madefor Text, sans-serif", - "slug": "wix-madefor-text", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cK_NOeFgpRt9rN5.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3dw_GiJBP86N53IY.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cKNNOeFgpRt9rN5.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3dz3GiJBP86N53IY.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cJhM-eFgpRt9rN5.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d9HBiJBP86N53IY.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cJYM-eFgpRt9rN5.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d-jBiJBP86N53IY.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cI_M-eFgpRt9rN5.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Wix Madefor Text" - }, - { - "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d4_BiJBP86N53IY.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Wix Madefor Text" - } - ] - }, - { - "name": "Work Sans", - "fontFamily": "Work Sans, sans-serif", - "slug": "work-sans", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNigDp6_cOyA.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNigDp6_cOyA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNigDp6_cOyA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNigDp6_cOyA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNigDp6_cOyA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNigDp6_cOyA.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJo43ZKyDSQQ.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJo43ZKyDSQQ.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJo43ZKyDSQQ.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJo43ZKyDSQQ.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJo43ZKyDSQQ.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJo43ZKyDSQQ.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJo43ZKyDSQQ.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJo43ZKyDSQQ.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Work Sans" - }, - { - "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJo43ZKyDSQQ.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Work Sans" - } - ] - }, - { - "name": "Xanh Mono", - "fontFamily": "Xanh Mono, monospace", - "slug": "xanh-mono", - "category": "monospace", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/xanhmono/v17/R70YjykVmvKCep-vWhSYmACQXzLhTg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Xanh Mono" - }, - { - "src": "http://fonts.gstatic.com/s/xanhmono/v17/R70ejykVmvKCep-vWhSomgqUfTfxTo24.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Xanh Mono" - } - ] - }, - { - "name": "Yaldevi", - "fontFamily": "Yaldevi, sans-serif", - "slug": "yaldevi", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpfxJzvobxLCBJkS.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Yaldevi" - }, - { - "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpcvJzvobxLCBJkS.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Yaldevi" - }, - { - "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJzvobxLCBJkS.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yaldevi" - }, - { - "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdDJzvobxLCBJkS.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Yaldevi" - }, - { - "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpevIDvobxLCBJkS.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Yaldevi" - }, - { - "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpeWIDvobxLCBJkS.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Yaldevi" - } - ] - }, - { - "name": "Yanone Kaffeesatz", - "fontFamily": "Yanone Kaffeesatz, sans-serif", - "slug": "yanone-kaffeesatz", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpcGuLCnXkVA.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz" - }, - { - "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpcGuLCnXkVA.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz" - }, - { - "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpcGuLCnXkVA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz" - }, - { - "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpcGuLCnXkVA.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz" - }, - { - "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpcGuLCnXkVA.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz" - }, - { - "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpcGuLCnXkVA.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Yanone Kaffeesatz" - } - ] - }, - { - "name": "Yantramanav", - "fontFamily": "Yantramanav, sans-serif", - "slug": "yantramanav", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yantramanav/v11/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Yantramanav" - }, - { - "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Yantramanav" - }, - { - "src": "http://fonts.gstatic.com/s/yantramanav/v11/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yantramanav" - }, - { - "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Yantramanav" - }, - { - "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Yantramanav" - }, - { - "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Yantramanav" - } - ] - }, - { - "name": "Yatra One", - "fontFamily": "Yatra One, system-ui", - "slug": "yatra-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yatraone/v14/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yatra One" - } - ] - }, - { - "name": "Yellowtail", - "fontFamily": "Yellowtail, cursive", - "slug": "yellowtail", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yellowtail/v18/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yellowtail" - } - ] - }, - { - "name": "Yeon Sung", - "fontFamily": "Yeon Sung, system-ui", - "slug": "yeon-sung", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yeonsung/v20/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yeon Sung" - } - ] - }, - { - "name": "Yeseva One", - "fontFamily": "Yeseva One, system-ui", - "slug": "yeseva-one", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yesevaone/v20/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yeseva One" - } - ] - }, - { - "name": "Yesteryear", - "fontFamily": "Yesteryear, cursive", - "slug": "yesteryear", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yesteryear/v14/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yesteryear" - } - ] - }, - { - "name": "Yomogi", - "fontFamily": "Yomogi, cursive", - "slug": "yomogi", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yomogi/v8/VuJwdNrS2ZL7rpoPWIz5NIh-YA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yomogi" - } - ] - }, - { - "name": "Yrsa", - "fontFamily": "Yrsa, serif", - "slug": "yrsa", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCjASNNV9rRPfrKu.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCieSNNV9rRPfrKu.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCisSNNV9rRPfrKu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaChAT9NV9rRPfrKu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCh5T9NV9rRPfrKu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCzsW_LBte6KuGEo.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Yrsa" - }, - { - "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC9wR_LBte6KuGEo.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Yrsa" - } - ] - }, - { - "name": "Ysabeau", - "fontFamily": "Ysabeau, sans-serif", - "slug": "ysabeau", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCTYwI8Gcw6Oi.ttf", - "fontWeight": "100", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWCDYwI8Gcw6Oi.ttf", - "fontWeight": "200", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7PICDYwI8Gcw6Oi.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCDYwI8Gcw6Oi.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OkCDYwI8Gcw6Oi.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NIDzYwI8Gcw6Oi.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NxDzYwI8Gcw6Oi.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWDzYwI8Gcw6Oi.ttf", - "fontWeight": "800", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7M_DzYwI8Gcw6Oi.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95yKcW-xrOiIUw.ttf", - "fontWeight": "100", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS15zKcW-xrOiIUw.ttf", - "fontWeight": "200", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS4BzKcW-xrOiIUw.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95zKcW-xrOiIUw.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS-xzKcW-xrOiIUw.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSwB0KcW-xrOiIUw.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSzl0KcW-xrOiIUw.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS150KcW-xrOiIUw.ttf", - "fontWeight": "800", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - }, - { - "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS3d0KcW-xrOiIUw.ttf", - "fontWeight": "900", - "fontStyle": "italic", - "fontFamily": "Ysabeau" - } - ] - }, - { - "name": "Yuji Boku", - "fontFamily": "Yuji Boku, serif", - "slug": "yuji-boku", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yujiboku/v5/P5sAzZybeNzXsA9xj1Fkjb2r2dgvJA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yuji Boku" - } - ] - }, - { - "name": "Yuji Mai", - "fontFamily": "Yuji Mai, serif", - "slug": "yuji-mai", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yujimai/v5/ZgNQjPxdJ7DEHrS0gC38hmHmNpCO.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yuji Mai" - } - ] - }, - { - "name": "Yuji Syuku", - "fontFamily": "Yuji Syuku, serif", - "slug": "yuji-syuku", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yujisyuku/v5/BngNUXdTV3vO6Lw5ApOPqPfgwqiA-Rk.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yuji Syuku" - } - ] - }, - { - "name": "Yusei Magic", - "fontFamily": "Yusei Magic, sans-serif", - "slug": "yusei-magic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/yuseimagic/v12/yYLt0hbAyuCmoo5wlhPkpjHR-tdfcIT_.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Yusei Magic" - } - ] - }, - { - "name": "ZCOOL KuaiLe", - "fontFamily": "ZCOOL KuaiLe, sans-serif", - "slug": "zcool-kuaile", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zcoolkuaile/v19/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "ZCOOL KuaiLe" - } - ] - }, - { - "name": "ZCOOL QingKe HuangYou", - "fontFamily": "ZCOOL QingKe HuangYou, sans-serif", - "slug": "zcool-qingke-huangyou", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zcoolqingkehuangyou/v15/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "ZCOOL QingKe HuangYou" - } - ] - }, - { - "name": "ZCOOL XiaoWei", - "fontFamily": "ZCOOL XiaoWei, sans-serif", - "slug": "zcool-xiaowei", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zcoolxiaowei/v14/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "ZCOOL XiaoWei" - } - ] - }, - { - "name": "Zen Antique", - "fontFamily": "Zen Antique, serif", - "slug": "zen-antique", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenantique/v12/AYCPpXPnd91Ma_Zf-Ri2JXJq7PKP5Z_G.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Antique" - } - ] - }, - { - "name": "Zen Antique Soft", - "fontFamily": "Zen Antique Soft, serif", - "slug": "zen-antique-soft", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenantiquesoft/v12/DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwBmkui5HNg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Antique Soft" - } - ] - }, - { - "name": "Zen Dots", - "fontFamily": "Zen Dots, system-ui", - "slug": "zen-dots", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zendots/v10/XRXX3ICfm00IGoesQeaETM_FcCIG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Dots" - } - ] - }, - { - "name": "Zen Kaku Gothic Antique", - "fontFamily": "Zen Kaku Gothic Antique, sans-serif", - "slug": "zen-kaku-gothic-antique", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cM9TarWJtyZyGU.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-g3RKjc4d7.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22dU9DarWJtyZyGU.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cc8jarWJtyZyGU.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22ck8DarWJtyZyGU.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic Antique" - } - ] - }, - { - "name": "Zen Kaku Gothic New", - "fontFamily": "Zen Kaku Gothic New, sans-serif", - "slug": "zen-kaku-gothic-new", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqpdKaWTSTGlMyd8.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMYW2drQpDw0GjzrVNFf_valaDBcznOkjtiTWz5UGA.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqs9LaWTSTGlMyd8.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqodNaWTSTGlMyd8.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New" - }, - { - "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqr9PaWTSTGlMyd8.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Zen Kaku Gothic New" - } - ] - }, - { - "name": "Zen Kurenaido", - "fontFamily": "Zen Kurenaido, sans-serif", - "slug": "zen-kurenaido", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenkurenaido/v13/3XFsEr0515BK2u6UUptu_gWJZfz22PRLd0U.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Kurenaido" - } - ] - }, - { - "name": "Zen Loop", - "fontFamily": "Zen Loop, system-ui", - "slug": "zen-loop", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenloop/v7/h0GrssK16UsnJwHsEK9zqwzX5vOG.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Loop" - }, - { - "src": "http://fonts.gstatic.com/s/zenloop/v7/h0GtssK16UsnJwHsEJ9xoQj14-OGJ0w.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Zen Loop" - } - ] - }, - { - "name": "Zen Maru Gothic", - "fontFamily": "Zen Maru Gothic, sans-serif", - "slug": "zen-maru-gothic", - "category": "sans-serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cQWpCPJqa_ajlvw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic" - }, - { - "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0SIpIxzW5b-RxT-6A8jWAtCp-k7UJmNLGG9A.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic" - }, - { - "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cGWtCPJqa_ajlvw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic" - }, - { - "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cUW1CPJqa_ajlvw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic" - }, - { - "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-caW9CPJqa_ajlvw.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Zen Maru Gothic" - } - ] - }, - { - "name": "Zen Old Mincho", - "fontFamily": "Zen Old Mincho, serif", - "slug": "zen-old-mincho", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss0ApVaYytLwxTqcxfMyBveyYb3g31S2s8p.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4Dqlla8dMgPgBu.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4vrVla8dMgPgBu.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5LrFla8dMgPgBu.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho" - }, - { - "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5zrlla8dMgPgBu.ttf", - "fontWeight": "900", - "fontStyle": "normal", - "fontFamily": "Zen Old Mincho" - } - ] - }, - { - "name": "Zen Tokyo Zoo", - "fontFamily": "Zen Tokyo Zoo, system-ui", - "slug": "zen-tokyo-zoo", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zentokyozoo/v7/NGSyv5ffC0J_BK6aFNtr6sRv8a1uRWe9amg.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zen Tokyo Zoo" - } - ] - }, - { - "name": "Zeyada", - "fontFamily": "Zeyada, cursive", - "slug": "zeyada", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zeyada/v15/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zeyada" - } - ] - }, - { - "name": "Zhi Mang Xing", - "fontFamily": "Zhi Mang Xing, cursive", - "slug": "zhi-mang-xing", - "category": "handwriting", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zhimangxing/v17/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zhi Mang Xing" - } - ] - }, - { - "name": "Zilla Slab", - "fontFamily": "Zilla Slab, serif", - "slug": "zilla-slab", - "category": "serif", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf", - "fontWeight": "300", - "fontStyle": "normal", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf", - "fontWeight": "300", - "fontStyle": "italic", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf", - "fontWeight": "400", - "fontStyle": "italic", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf", - "fontWeight": "500", - "fontStyle": "normal", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf", - "fontWeight": "500", - "fontStyle": "italic", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf", - "fontWeight": "600", - "fontStyle": "normal", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf", - "fontWeight": "600", - "fontStyle": "italic", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zilla Slab" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf", - "fontWeight": "700", - "fontStyle": "italic", - "fontFamily": "Zilla Slab" - } - ] - }, - { - "name": "Zilla Slab Highlight", - "fontFamily": "Zilla Slab Highlight, system-ui", - "slug": "zilla-slab-highlight", - "category": "display", - "fontFace": [ - { - "src": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf", - "fontWeight": "400", - "fontStyle": "normal", - "fontFamily": "Zilla Slab Highlight" - }, - { - "src": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf", - "fontWeight": "700", - "fontStyle": "normal", - "fontFamily": "Zilla Slab Highlight" - } - ] - } - ], - "categories": [ - "sans-serif", - "serif", - "display", - "handwriting", - "monospace" - ] -} + "fontFamilies": [ + { + "name": "ABeeZee", + "fontFamily": "ABeeZee, sans-serif", + "slug": "wp-font-lib-abeezee", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN6tKukbcHCpE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "ABeeZee" + }, + { + "src": "http://fonts.gstatic.com/s/abeezee/v22/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "ABeeZee" + } + ] + }, + { + "name": "Abel", + "fontFamily": "Abel, sans-serif", + "slug": "wp-font-lib-abel", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6VhLPJp6qGI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Abel" + } + ] + }, + { + "name": "Abhaya Libre", + "fontFamily": "Abhaya Libre, serif", + "slug": "wp-font-lib-abhaya-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + }, + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + }, + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + }, + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + }, + { + "src": "http://fonts.gstatic.com/s/abhayalibre/v14/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Abhaya Libre" + } + ] + }, + { + "name": "Aboreto", + "fontFamily": "Aboreto, system-ui", + "slug": "wp-font-lib-aboreto", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8blKTeA2yuxSY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aboreto" + } + ] + }, + { + "name": "Abril Fatface", + "fontFamily": "Abril Fatface, system-ui", + "slug": "wp-font-lib-abril-fatface", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abrilfatface/v19/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Abril Fatface" + } + ] + }, + { + "name": "Abyssinica SIL", + "fontFamily": "Abyssinica SIL, serif", + "slug": "wp-font-lib-abyssinica-sil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/abyssinicasil/v5/oY1H8ezOqK7iI3rK_45WKoc8J6UZBFOVAXuI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Abyssinica SIL" + } + ] + }, + { + "name": "Aclonica", + "fontFamily": "Aclonica, sans-serif", + "slug": "wp-font-lib-aclonica", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aclonica/v18/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aclonica" + } + ] + }, + { + "name": "Acme", + "fontFamily": "Acme, sans-serif", + "slug": "wp-font-lib-acme", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/acme/v21/RrQfboBx-C5_bx3Lb23lzLk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Acme" + } + ] + }, + { + "name": "Actor", + "fontFamily": "Actor, sans-serif", + "slug": "wp-font-lib-actor", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO3ekXygtUMIO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Actor" + } + ] + }, + { + "name": "Adamina", + "fontFamily": "Adamina, serif", + "slug": "wp-font-lib-adamina", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Adamina" + } + ] + }, + { + "name": "Advent Pro", + "fontFamily": "Advent Pro, sans-serif", + "slug": "wp-font-lib-advent-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyJPTJoonw1aBA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyNPTJoonw1aBA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLHSNPTJoonw1aBA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyNPTJoonw1aBA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLcSNPTJoonw1aBA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLnSRPTJoonw1aBA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLpCRPTJoonw1aBA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyRPTJoonw1aBA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpL6iRPTJoonw1aBA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnDpAsvQhKBH4C.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnD5AsvQhKBH4C.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2D5D5AsvQhKBH4C.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnD5AsvQhKBH4C.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CVD5AsvQhKBH4C.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2B5CJAsvQhKBH4C.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2BACJAsvQhKBH4C.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnCJAsvQhKBH4C.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + }, + { + "src": "http://fonts.gstatic.com/s/adventpro/v20/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AOCJAsvQhKBH4C.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Advent Pro" + } + ] + }, + { + "name": "Aguafina Script", + "fontFamily": "Aguafina Script, cursive", + "slug": "wp-font-lib-aguafina-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aguafinascript/v17/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aguafina Script" + } + ] + }, + { + "name": "Akaya Kanadaka", + "fontFamily": "Akaya Kanadaka, system-ui", + "slug": "wp-font-lib-akaya-kanadaka", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/akayakanadaka/v16/N0bM2S5CPO5oOQqvazoRRb-8-PfRS5VBBSSF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Akaya Kanadaka" + } + ] + }, + { + "name": "Akaya Telivigala", + "fontFamily": "Akaya Telivigala, system-ui", + "slug": "wp-font-lib-akaya-telivigala", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/akayatelivigala/v22/lJwc-oo_iG9wXqU3rCTD395tp0uifdLdsIH0YH8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Akaya Telivigala" + } + ] + }, + { + "name": "Akronim", + "fontFamily": "Akronim, system-ui", + "slug": "wp-font-lib-akronim", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Akronim" + } + ] + }, + { + "name": "Akshar", + "fontFamily": "Akshar, sans-serif", + "slug": "wp-font-lib-akshar", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSSgFy9CY94XsnPc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Akshar" + }, + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSXYFy9CY94XsnPc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Akshar" + }, + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSUQFy9CY94XsnPc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Akshar" + }, + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSagCy9CY94XsnPc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Akshar" + }, + { + "src": "http://fonts.gstatic.com/s/akshar/v9/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSZECy9CY94XsnPc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Akshar" + } + ] + }, + { + "name": "Aladin", + "fontFamily": "Aladin, cursive", + "slug": "wp-font-lib-aladin", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aladin/v19/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aladin" + } + ] + }, + { + "name": "Alata", + "fontFamily": "Alata, sans-serif", + "slug": "wp-font-lib-alata", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alata/v9/PbytFmztEwbIofe6xKcRQEOX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alata" + } + ] + }, + { + "name": "Alatsi", + "fontFamily": "Alatsi, sans-serif", + "slug": "wp-font-lib-alatsi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alatsi/v11/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alatsi" + } + ] + }, + { + "name": "Albert Sans", + "fontFamily": "Albert Sans, sans-serif", + "slug": "wp-font-lib-albert-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5L_rI32TxAj1g.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5P_rI32TxAj1g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSH9ZP_rI32TxAj1g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_rI32TxAj1g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHmZP_rI32TxAj1g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_rI32TxAj1g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_rI32TxAj1g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5T_rI32TxAj1g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHApT_rI32TxAj1g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX7ofybRUz1r5t.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX74fybRUz1r5t.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9BJ74fybRUz1r5t.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX74fybRUz1r5t.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + }, + { + "src": "http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9C-6IfybRUz1r5t.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Albert Sans" + } + ] + }, + { + "name": "Aldrich", + "fontFamily": "Aldrich, sans-serif", + "slug": "wp-font-lib-aldrich", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aldrich/v17/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aldrich" + } + ] + }, + { + "name": "Alef", + "fontFamily": "Alef, sans-serif", + "slug": "wp-font-lib-alef", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alef/v21/FeVfS0NQpLYgrjJbC5FxxbU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alef" + }, + { + "src": "http://fonts.gstatic.com/s/alef/v21/FeVQS0NQpLYglo50L5la2bxii28.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alef" + } + ] + }, + { + "name": "Alegreya", + "fontFamily": "Alegreya, serif", + "slug": "wp-font-lib-alegreya", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI_KCisSGVrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBUI_KCisSGVrw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGKBII_KCisSGVrw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERII_KCisSGVrw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhII_KCisSGVrw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxII_KCisSGVrw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbgv6qmkySFr9V9.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbSv6qmkySFr9V9.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlY-uKqmkySFr9V9.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlYHuKqmkySFr9V9.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZguKqmkySFr9V9.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alegreya" + }, + { + "src": "http://fonts.gstatic.com/s/alegreya/v35/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZJuKqmkySFr9V9.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alegreya" + } + ] + }, + { + "name": "Alegreya SC", + "fontFamily": "Alegreya SC, serif", + "slug": "wp-font-lib-alegreya-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alegreya SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alegreya SC" + } + ] + }, + { + "name": "Alegreya Sans", + "fontFamily": "Alegreya Sans, sans-serif", + "slug": "wp-font-lib-alegreya-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans" + } + ] + }, + { + "name": "Alegreya Sans SC", + "fontFamily": "Alegreya Sans SC, sans-serif", + "slug": "wp-font-lib-alegreya-sans-sc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alegreya Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alegreya Sans SC" + } + ] + }, + { + "name": "Aleo", + "fontFamily": "Aleo, serif", + "slug": "wp-font-lib-aleo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syKbr9DVDno985KM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mv1nF8G8_s8ArD0D1ogoY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syLbs9DVDno985KM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Aleo" + }, + { + "src": "http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Aleo" + } + ] + }, + { + "name": "Alex Brush", + "fontFamily": "Alex Brush, cursive", + "slug": "wp-font-lib-alex-brush", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alex Brush" + } + ] + }, + { + "name": "Alexandria", + "fontFamily": "Alexandria, sans-serif", + "slug": "wp-font-lib-alexandria", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alexandria" + }, + { + "src": "http://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alexandria" + } + ] + }, + { + "name": "Alfa Slab One", + "fontFamily": "Alfa Slab One, system-ui", + "slug": "wp-font-lib-alfa-slab-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alfaslabone/v17/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alfa Slab One" + } + ] + }, + { + "name": "Alice", + "fontFamily": "Alice, serif", + "slug": "wp-font-lib-alice", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6FcJpA_chzJ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alice" + } + ] + }, + { + "name": "Alike", + "fontFamily": "Alike, serif", + "slug": "wp-font-lib-alike", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alike/v20/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alike" + } + ] + }, + { + "name": "Alike Angular", + "fontFamily": "Alike Angular, serif", + "slug": "wp-font-lib-alike-angular", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alikeangular/v20/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alike Angular" + } + ] + }, + { + "name": "Alkalami", + "fontFamily": "Alkalami, serif", + "slug": "wp-font-lib-alkalami", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alkalami/v7/zOL_4pfDmqRL95WXi5eLw8BMuvhH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alkalami" + } + ] + }, + { + "name": "Alkatra", + "fontFamily": "Alkatra, system-ui", + "slug": "wp-font-lib-alkatra", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medzngmu7cPrNDVemxE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alkatra" + }, + { + "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedzngUu7cPrNDVemxE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alkatra" + }, + { + "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48Medznj4vLcPrNDVemxE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Alkatra" + }, + { + "src": "http://fonts.gstatic.com/s/alkatra/v3/r05EGLZA5qhCYsyJbuChFuK48MedznjBvLcPrNDVemxE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alkatra" + } + ] + }, + { + "name": "Allan", + "fontFamily": "Allan, system-ui", + "slug": "wp-font-lib-allan", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allan/v21/ea8XadU7WuTxEtb2P9SF8nZE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allan" + }, + { + "src": "http://fonts.gstatic.com/s/allan/v21/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Allan" + } + ] + }, + { + "name": "Allerta", + "fontFamily": "Allerta, sans-serif", + "slug": "wp-font-lib-allerta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allerta" + } + ] + }, + { + "name": "Allerta Stencil", + "fontFamily": "Allerta Stencil, sans-serif", + "slug": "wp-font-lib-allerta-stencil", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allertastencil/v18/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allerta Stencil" + } + ] + }, + { + "name": "Allison", + "fontFamily": "Allison, cursive", + "slug": "wp-font-lib-allison", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allison/v9/X7nl4b88AP2nkbvZOCaQ4MTgAgk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allison" + } + ] + }, + { + "name": "Allura", + "fontFamily": "Allura, cursive", + "slug": "wp-font-lib-allura", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/allura/v19/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Allura" + } + ] + }, + { + "name": "Almarai", + "fontFamily": "Almarai, sans-serif", + "slug": "wp-font-lib-almarai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Almarai" + }, + { + "src": "http://fonts.gstatic.com/s/almarai/v12/tsstApxBaigK_hnnc1qPonC3vqc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Almarai" + }, + { + "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Almarai" + }, + { + "src": "http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Almarai" + } + ] + }, + { + "name": "Almendra", + "fontFamily": "Almendra, serif", + "slug": "wp-font-lib-almendra", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/almendra/v23/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Almendra" + }, + { + "src": "http://fonts.gstatic.com/s/almendra/v23/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Almendra" + }, + { + "src": "http://fonts.gstatic.com/s/almendra/v23/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Almendra" + }, + { + "src": "http://fonts.gstatic.com/s/almendra/v23/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Almendra" + } + ] + }, + { + "name": "Almendra Display", + "fontFamily": "Almendra Display, system-ui", + "slug": "wp-font-lib-almendra-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/almendradisplay/v26/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Almendra Display" + } + ] + }, + { + "name": "Almendra SC", + "fontFamily": "Almendra SC, serif", + "slug": "wp-font-lib-almendra-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/almendrasc/v25/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Almendra SC" + } + ] + }, + { + "name": "Alumni Sans", + "fontFamily": "Alumni Sans, sans-serif", + "slug": "wp-font-lib-alumni-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO5QqFsJ3C8qng.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uO9QqFsJ3C8qng.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Zu9QqFsJ3C8qng.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9QqFsJ3C8qng.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Cu9QqFsJ3C8qng.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd95uhQqFsJ3C8qng.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd93-hQqFsJ3C8qng.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uOhQqFsJ3C8qng.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9kehQqFsJ3C8qng.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky46lEN_io6npfB.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisans/v16/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Alumni Sans" + } + ] + }, + { + "name": "Alumni Sans Collegiate One", + "fontFamily": "Alumni Sans Collegiate One, sans-serif", + "slug": "wp-font-lib-alumni-sans-collegiate-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhjdayDiPw2ta.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alumni Sans Collegiate One" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpD-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhgdYwjytxntaDFU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alumni Sans Collegiate One" + } + ] + }, + { + "name": "Alumni Sans Inline One", + "fontFamily": "Alumni Sans Inline One, system-ui", + "slug": "wp-font-lib-alumni-sans-inline-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpD3AZcr7xbYw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alumni Sans Inline One" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQDbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpP3ITdpz0fYxcrQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alumni Sans Inline One" + } + ] + }, + { + "name": "Alumni Sans Pinstripe", + "fontFamily": "Alumni Sans Pinstripe, sans-serif", + "slug": "wp-font-lib-alumni-sans-pinstripe", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObhezYrVIpcDA5w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Alumni Sans Pinstripe" + }, + { + "src": "http://fonts.gstatic.com/s/alumnisanspinstripe/v2/ZgNDjOFFPq_AUJD1umyS30W-Xub8zD1ObheDYL9Mh8XQ5_cY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Alumni Sans Pinstripe" + } + ] + }, + { + "name": "Amarante", + "fontFamily": "Amarante, system-ui", + "slug": "wp-font-lib-amarante", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amarante/v23/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amarante" + } + ] + }, + { + "name": "Amaranth", + "fontFamily": "Amaranth, sans-serif", + "slug": "wp-font-lib-amaranth", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zPnCF9GqwnzW.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amaranth" + }, + { + "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Amaranth" + }, + { + "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amaranth" + }, + { + "src": "http://fonts.gstatic.com/s/amaranth/v18/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Amaranth" + } + ] + }, + { + "name": "Amatic SC", + "fontFamily": "Amatic SC, cursive", + "slug": "wp-font-lib-amatic-sc", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amaticsc/v24/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amatic SC" + }, + { + "src": "http://fonts.gstatic.com/s/amaticsc/v24/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amatic SC" + } + ] + }, + { + "name": "Amethysta", + "fontFamily": "Amethysta, serif", + "slug": "wp-font-lib-amethysta", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amethysta" + } + ] + }, + { + "name": "Amiko", + "fontFamily": "Amiko, sans-serif", + "slug": "wp-font-lib-amiko", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amiko/v12/WwkQxPq1DFK04tqlc17MMZgJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amiko" + }, + { + "src": "http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Amiko" + }, + { + "src": "http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amiko" + } + ] + }, + { + "name": "Amiri", + "fontFamily": "Amiri, serif", + "slug": "wp-font-lib-amiri", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amiri/v27/J7aRnpd8CGxBHqUpvrIw74NL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amiri" + }, + { + "src": "http://fonts.gstatic.com/s/amiri/v27/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Amiri" + }, + { + "src": "http://fonts.gstatic.com/s/amiri/v27/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amiri" + }, + { + "src": "http://fonts.gstatic.com/s/amiri/v27/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Amiri" + } + ] + }, + { + "name": "Amiri Quran", + "fontFamily": "Amiri Quran, serif", + "slug": "wp-font-lib-amiri-quran", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amiriquran/v7/_Xmo-Hk0rD6DbUL4_vH8Zq5t7Cycsu-2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amiri Quran" + } + ] + }, + { + "name": "Amita", + "fontFamily": "Amita, cursive", + "slug": "wp-font-lib-amita", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/amita/v16/HhyaU5si9Om7PQlvAfSKEZZL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Amita" + }, + { + "src": "http://fonts.gstatic.com/s/amita/v16/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Amita" + } + ] + }, + { + "name": "Anaheim", + "fontFamily": "Anaheim, sans-serif", + "slug": "wp-font-lib-anaheim", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anaheim/v14/8vII7w042Wp87g4G0UTUEE5eK_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anaheim" + } + ] + }, + { + "name": "Andada Pro", + "fontFamily": "Andada Pro, serif", + "slug": "wp-font-lib-andada-pro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBY8cFLzvIt2S.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DP7BY8cFLzvIt2S.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8cFLzvIt2S.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8cFLzvIt2S.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DNJAo8cFLzvIt2S.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRmdfHrjNJ82Stjw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRlVfHrjNJ82Stjw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHrjNJ82Stjw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHrjNJ82Stjw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + }, + { + "src": "http://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRudYHrjNJ82Stjw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Andada Pro" + } + ] + }, + { + "name": "Andika", + "fontFamily": "Andika, sans-serif", + "slug": "wp-font-lib-andika", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/andika/v25/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Andika" + }, + { + "src": "http://fonts.gstatic.com/s/andika/v25/mem9Ya6iyW-Lwqgwb7YVeLkWVNBt.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Andika" + }, + { + "src": "http://fonts.gstatic.com/s/andika/v25/mem8Ya6iyW-Lwqg40ZM1UpcaXcl0Aw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Andika" + }, + { + "src": "http://fonts.gstatic.com/s/andika/v25/mem6Ya6iyW-Lwqgwb46pV50ef8xkA76a.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Andika" + } + ] + }, + { + "name": "Anek Bangla", + "fontFamily": "Anek Bangla, sans-serif", + "slug": "wp-font-lib-anek-bangla", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9YIocg56yyvt0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9ZIocg56yyvt0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfjFZIocg56yyvt0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9ZIocg56yyvt0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofl1ZIocg56yyvt0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfrFeIocg56yyvt0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfoheIocg56yyvt0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9eIocg56yyvt0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Bangla" + } + ] + }, + { + "name": "Anek Devanagari", + "fontFamily": "Anek Devanagari, sans-serif", + "slug": "wp-font-lib-anek-devanagari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtk-9nFk0LjZ7E.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtku9nFk0LjZ7E.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLCzku9nFk0LjZ7E.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtku9nFk0LjZ7E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDfku9nFk0LjZ7E.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAzle9nFk0LjZ7E.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAKle9nFk0LjZ7E.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/anekdevanagari/v8/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtle9nFk0LjZ7E.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Devanagari" + } + ] + }, + { + "name": "Anek Gujarati", + "fontFamily": "Anek Gujarati, sans-serif", + "slug": "wp-font-lib-anek-gujarati", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5G7w0KgB7Lm7g.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5C7w0KgB7Lm7g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0SZC7w0KgB7Lm7g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5C7w0KgB7Lm7g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0JZC7w0KgB7Lm7g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0yZe7w0KgB7Lm7g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-08Je7w0KgB7Lm7g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/anekgujarati/v9/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5e7w0KgB7Lm7g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Gujarati" + } + ] + }, + { + "name": "Anek Gurmukhi", + "fontFamily": "Anek Gurmukhi, sans-serif", + "slug": "wp-font-lib-anek-gurmukhi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5ppXK41H6DjbA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95tpXK41H6DjbA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbKZtpXK41H6DjbA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5tpXK41H6DjbA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbRZtpXK41H6DjbA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbqZxpXK41H6DjbA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbkJxpXK41H6DjbA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/anekgurmukhi/v8/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95xpXK41H6DjbA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Gurmukhi" + } + ] + }, + { + "name": "Anek Kannada", + "fontFamily": "Anek Kannada, sans-serif", + "slug": "wp-font-lib-anek-kannada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEAukVReA1oef.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDEQukVReA1oef.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dEdEQukVReA1oef.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEQukVReA1oef.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFxEQukVReA1oef.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGdFgukVReA1oef.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGkFgukVReA1oef.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDFgukVReA1oef.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Kannada" + } + ] + }, + { + "name": "Anek Latin", + "fontFamily": "Anek Latin, sans-serif", + "slug": "wp-font-lib-anek-latin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7EZKdClWL3kgw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7AZKdClWL3kgw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuGbAZKdClWL3kgw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7AZKdClWL3kgw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PudbAZKdClWL3kgw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PumbcZKdClWL3kgw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuoLcZKdClWL3kgw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + }, + { + "src": "http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7cZKdClWL3kgw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Latin" + } + ] + }, + { + "name": "Anek Malayalam", + "fontFamily": "Anek Malayalam, sans-serif", + "slug": "wp-font-lib-anek-malayalam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu_HMr5PDO71Qs.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu-HMr5PDO71Qs.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUcW-HMr5PDO71Qs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu-HMr5PDO71Qs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUam-HMr5PDO71Qs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUUW5HMr5PDO71Qs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUXy5HMr5PDO71Qs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/anekmalayalam/v5/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu5HMr5PDO71Qs.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Malayalam" + } + ] + }, + { + "name": "Anek Odia", + "fontFamily": "Anek Odia, sans-serif", + "slug": "wp-font-lib-anek-odia", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZf63mXZAtm_es.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZfq3mXZAtm_es.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnnHfq3mXZAtm_es.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZfq3mXZAtm_es.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmrfq3mXZAtm_es.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnlHea3mXZAtm_es.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnl-ea3mXZAtm_es.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + }, + { + "src": "http://fonts.gstatic.com/s/anekodia/v5/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZea3mXZAtm_es.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Odia" + } + ] + }, + { + "name": "Anek Tamil", + "fontFamily": "Anek Tamil, sans-serif", + "slug": "wp-font-lib-anek-tamil", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQiZ6q4v4oegjOQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwid6q4v4oegjOQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNHCd6q4v4oegjOQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQid6q4v4oegjOQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNcCd6q4v4oegjOQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNnCB6q4v4oegjOQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNpSB6q4v4oegjOQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/anektamil/v9/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwiB6q4v4oegjOQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Tamil" + } + ] + }, + { + "name": "Anek Telugu", + "fontFamily": "Anek Telugu, sans-serif", + "slug": "wp-font-lib-anek-telugu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y-_oE2G2ep10_8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136--oE2G2ep10_8.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i133G-oE2G2ep10_8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y--oE2G2ep10_8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13x2-oE2G2ep10_8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13_G5oE2G2ep10_8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i138i5oE2G2ep10_8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/anektelugu/v8/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136-5oE2G2ep10_8.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anek Telugu" + } + ] + }, + { + "name": "Angkor", + "fontFamily": "Angkor, system-ui", + "slug": "wp-font-lib-angkor", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/angkor/v28/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Angkor" + } + ] + }, + { + "name": "Annie Use Your Telescope", + "fontFamily": "Annie Use Your Telescope, cursive", + "slug": "wp-font-lib-annie-use-your-telescope", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/annieuseyourtelescope/v18/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Annie Use Your Telescope" + } + ] + }, + { + "name": "Anonymous Pro", + "fontFamily": "Anonymous Pro, monospace", + "slug": "wp-font-lib-anonymous-pro", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anonymous Pro" + }, + { + "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Anonymous Pro" + }, + { + "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anonymous Pro" + }, + { + "src": "http://fonts.gstatic.com/s/anonymouspro/v21/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Anonymous Pro" + } + ] + }, + { + "name": "Antic", + "fontFamily": "Antic, sans-serif", + "slug": "wp-font-lib-antic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRaZLodgzydtk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Antic" + } + ] + }, + { + "name": "Antic Didone", + "fontFamily": "Antic Didone, serif", + "slug": "wp-font-lib-antic-didone", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Antic Didone" + } + ] + }, + { + "name": "Antic Slab", + "fontFamily": "Antic Slab, serif", + "slug": "wp-font-lib-antic-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Antic Slab" + } + ] + }, + { + "name": "Anton", + "fontFamily": "Anton, sans-serif", + "slug": "wp-font-lib-anton", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anton/v23/1Ptgg87LROyAm0K08i4gS7lu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anton" + } + ] + }, + { + "name": "Antonio", + "fontFamily": "Antonio, sans-serif", + "slug": "wp-font-lib-antonio", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8BtIY2DwSXlM.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVzx8RtIY2DwSXlM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVwv8RtIY2DwSXlM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtIY2DwSXlM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxD8RtIY2DwSXlM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyv9htIY2DwSXlM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Antonio" + }, + { + "src": "http://fonts.gstatic.com/s/antonio/v17/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htIY2DwSXlM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Antonio" + } + ] + }, + { + "name": "Anuphan", + "fontFamily": "Anuphan, sans-serif", + "slug": "wp-font-lib-anuphan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9A4kGmW927Gu.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCmY9Q4kGmW927Gu.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZClG9Q4kGmW927Gu.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkY9Q4kGmW927Gu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCkq9Q4kGmW927Gu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCnG8g4kGmW927Gu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anuphan" + }, + { + "src": "http://fonts.gstatic.com/s/anuphan/v3/2sDBZGxYgY7LkLT0s2Yrm5UhuLoIZCn_8g4kGmW927Gu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anuphan" + } + ] + }, + { + "name": "Anybody", + "fontFamily": "Anybody, system-ui", + "slug": "wp-font-lib-anybody", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12HPrsXD_nBPpQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2DPrsXD_nBPpQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JiWDPrsXD_nBPpQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12DPrsXD_nBPpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J5WDPrsXD_nBPpQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JCWfPrsXD_nBPpQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JMGfPrsXD_nBPpQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2fPrsXD_nBPpQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JfmfPrsXD_nBPpQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7M_H3HVfpcHY.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn7c_H3HVfpcHY.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyN57c_H3HVfpcHY.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7c_H3HVfpcHY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMV7c_H3HVfpcHY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyP56s_H3HVfpcHY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyPA6s_H3HVfpcHY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn6s_H3HVfpcHY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Anybody" + }, + { + "src": "http://fonts.gstatic.com/s/anybody/v9/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOO6s_H3HVfpcHY.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Anybody" + } + ] + }, + { + "name": "Aoboshi One", + "fontFamily": "Aoboshi One, serif", + "slug": "wp-font-lib-aoboshi-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aoboshione/v10/Gg8xN5kXaAXtHQrFxwl10ysLBmZX_UEg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aoboshi One" + } + ] + }, + { + "name": "Arapey", + "fontFamily": "Arapey, serif", + "slug": "wp-font-lib-arapey", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arapey" + }, + { + "src": "http://fonts.gstatic.com/s/arapey/v16/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Arapey" + } + ] + }, + { + "name": "Arbutus", + "fontFamily": "Arbutus, system-ui", + "slug": "wp-font-lib-arbutus", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arbutus/v24/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arbutus" + } + ] + }, + { + "name": "Arbutus Slab", + "fontFamily": "Arbutus Slab, serif", + "slug": "wp-font-lib-arbutus-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arbutus Slab" + } + ] + }, + { + "name": "Architects Daughter", + "fontFamily": "Architects Daughter, cursive", + "slug": "wp-font-lib-architects-daughter", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/architectsdaughter/v18/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Architects Daughter" + } + ] + }, + { + "name": "Archivo", + "fontFamily": "Archivo, sans-serif", + "slug": "wp-font-lib-archivo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDJp8B1oJ0vyVQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDNp8B1oJ0vyVQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTajNp8B1oJ0vyVQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp8B1oJ0vyVQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTBjNp8B1oJ0vyVQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp8B1oJ0vyVQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT0zRp8B1oJ0vyVQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDRp8B1oJ0vyVQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTnTRp8B1oJ0vyVQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBshdsBU7iVdxQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABsxdsBU7iVdxQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HDfsxdsBU7iVdxQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBsxdsBU7iVdxQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCzsxdsBU7iVdxQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBftBdsBU7iVdxQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBmtBdsBU7iVdxQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABtBdsBU7iVdxQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Archivo" + }, + { + "src": "http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HAotBdsBU7iVdxQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Archivo" + } + ] + }, + { + "name": "Archivo Black", + "fontFamily": "Archivo Black, sans-serif", + "slug": "wp-font-lib-archivo-black", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/archivoblack/v17/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Archivo Black" + } + ] + }, + { + "name": "Archivo Narrow", + "fontFamily": "Archivo Narrow, sans-serif", + "slug": "wp-font-lib-archivo-narrow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFGKpHOtFCQ76Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvHlGKpHOtFCQ76Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhv8laKpHOtFCQ76Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKpHOtFCQ76Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJi53mpNiEr6T6Y.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJQ53mpNiEr6T6Y.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BK84HmpNiEr6T6Y.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Archivo Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/archivonarrow/v29/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BKF4HmpNiEr6T6Y.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Archivo Narrow" + } + ] + }, + { + "name": "Are You Serious", + "fontFamily": "Are You Serious, cursive", + "slug": "wp-font-lib-are-you-serious", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/areyouserious/v10/ll8kK2GVSSr-PtjQ5nONVcNn4306hT9nCGRayg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Are You Serious" + } + ] + }, + { + "name": "Aref Ruqaa", + "fontFamily": "Aref Ruqaa, serif", + "slug": "wp-font-lib-aref-ruqaa", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aref Ruqaa" + }, + { + "src": "http://fonts.gstatic.com/s/arefruqaa/v25/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Aref Ruqaa" + } + ] + }, + { + "name": "Aref Ruqaa Ink", + "fontFamily": "Aref Ruqaa Ink, serif", + "slug": "wp-font-lib-aref-ruqaa-ink", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arefruqaaink/v8/1q2fY5WOGUFlt84GTOkP6Kdx72ThVIGpgnxL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aref Ruqaa Ink" + }, + { + "src": "http://fonts.gstatic.com/s/arefruqaaink/v8/1q2cY5WOGUFlt84GTOkP6Kdx71xde6WhqWBCyxWn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Aref Ruqaa Ink" + } + ] + }, + { + "name": "Arima", + "fontFamily": "Arima, system-ui", + "slug": "wp-font-lib-arima", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTE-pQGOyYw2fw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX14TA-pQGOyYw2fw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1PzA-pQGOyYw2fw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTA-pQGOyYw2fw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1UzA-pQGOyYw2fw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1vzc-pQGOyYw2fw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Arima" + }, + { + "src": "http://fonts.gstatic.com/s/arima/v5/neIWzCqmt4Aup_qE1nFWqxI1RZX1hjc-pQGOyYw2fw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arima" + } + ] + }, + { + "name": "Arimo", + "fontFamily": "Arimo, sans-serif", + "slug": "wp-font-lib-arimo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsBxDAVQI4aA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsBxDAVQI4aA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3M8tsBxDAVQI4aA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sfzZCDf9_T_3cV7NCUECyoxNk3CstsBxDAVQI4aA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-ERBrEdwcoaKww.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-2RBrEdwcoaKww.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9aQxrEdwcoaKww.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Arimo" + }, + { + "src": "http://fonts.gstatic.com/s/arimo/v28/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9jQxrEdwcoaKww.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Arimo" + } + ] + }, + { + "name": "Arizonia", + "fontFamily": "Arizonia, cursive", + "slug": "wp-font-lib-arizonia", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arizonia/v19/neIIzCemt4A5qa7mv6WGHK06UY30.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arizonia" + } + ] + }, + { + "name": "Armata", + "fontFamily": "Armata, sans-serif", + "slug": "wp-font-lib-armata", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/armata/v20/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Armata" + } + ] + }, + { + "name": "Arsenal", + "fontFamily": "Arsenal, sans-serif", + "slug": "wp-font-lib-arsenal", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arsenal" + }, + { + "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Arsenal" + }, + { + "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arsenal" + }, + { + "src": "http://fonts.gstatic.com/s/arsenal/v12/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Arsenal" + } + ] + }, + { + "name": "Artifika", + "fontFamily": "Artifika, serif", + "slug": "wp-font-lib-artifika", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/artifika/v21/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Artifika" + } + ] + }, + { + "name": "Arvo", + "fontFamily": "Arvo, serif", + "slug": "wp-font-lib-arvo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arvo/v20/tDbD2oWUg0MKmSAa7Lzr7vs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arvo" + }, + { + "src": "http://fonts.gstatic.com/s/arvo/v20/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Arvo" + }, + { + "src": "http://fonts.gstatic.com/s/arvo/v20/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arvo" + }, + { + "src": "http://fonts.gstatic.com/s/arvo/v20/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Arvo" + } + ] + }, + { + "name": "Arya", + "fontFamily": "Arya, sans-serif", + "slug": "wp-font-lib-arya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/arya/v19/ga6CawNG-HJd9Ub1-beqdFE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Arya" + }, + { + "src": "http://fonts.gstatic.com/s/arya/v19/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Arya" + } + ] + }, + { + "name": "Asap", + "fontFamily": "Asap, sans-serif", + "slug": "wp-font-lib-asap", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqQsLmOXoA7Glw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqUsLmOXoA7Glw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYzKUsLmOXoA7Glw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUsLmOXoA7Glw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYoKUsLmOXoA7Glw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYTKIsLmOXoA7Glw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYdaIsLmOXoA7Glw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqIsLmOXoA7Glw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYO6IsLmOXoA7Glw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbGmTggvWl0Qn.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEbWmTggvWl0Qn.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmTggvWl0Qn.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmTggvWl0Qn.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmTggvWl0Qn.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYaammTggvWl0Qn.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammTggvWl0Qn.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEammTggvWl0Qn.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Asap" + }, + { + "src": "http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammTggvWl0Qn.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Asap" + } + ] + }, + { + "name": "Asap Condensed", + "fontFamily": "Asap Condensed, sans-serif", + "slug": "wp-font-lib-asap-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9DSWlEgGqgp-pO.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUIFFim6CovpOkXA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8nSmlEgGqgp-pO.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOVGim6CovpOkXA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8rTmlEgGqgp-pO.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUOlCim6CovpOkXA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxieypY1o9NHyXh3WvSbGSggdO8PT2lEgGqgp-pO.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Asap Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/asapcondensed/v17/pxiYypY1o9NHyXh3WvSbGSggdOeJUM1Dim6CovpOkXA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Asap Condensed" + } + ] + }, + { + "name": "Asar", + "fontFamily": "Asar, serif", + "slug": "wp-font-lib-asar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asar/v22/sZlLdRyI6TBIXkYQDLlTW6E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asar" + } + ] + }, + { + "name": "Asset", + "fontFamily": "Asset, system-ui", + "slug": "wp-font-lib-asset", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asset/v24/SLXGc1na-mM4cWImRJqExst1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asset" + } + ] + }, + { + "name": "Assistant", + "fontFamily": "Assistant, sans-serif", + "slug": "wp-font-lib-assistant", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZnEGGf3qGuvM4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtrhnEGGf3qGuvM4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Assistant" + }, + { + "src": "http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZgEGGf3qGuvM4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Assistant" + } + ] + }, + { + "name": "Astloch", + "fontFamily": "Astloch, system-ui", + "slug": "wp-font-lib-astloch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Astloch" + }, + { + "src": "http://fonts.gstatic.com/s/astloch/v26/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Astloch" + } + ] + }, + { + "name": "Asul", + "fontFamily": "Asul, sans-serif", + "slug": "wp-font-lib-asul", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/asul/v19/VuJ-dNjKxYr46fMFXK78JIg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Asul" + }, + { + "src": "http://fonts.gstatic.com/s/asul/v19/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Asul" + } + ] + }, + { + "name": "Athiti", + "fontFamily": "Athiti, sans-serif", + "slug": "wp-font-lib-athiti", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Athiti" + }, + { + "src": "http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Athiti" + } + ] + }, + { + "name": "Atkinson Hyperlegible", + "fontFamily": "Atkinson Hyperlegible, sans-serif", + "slug": "wp-font-lib-atkinson-hyperlegible", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE5ZgpewSSbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Atkinson Hyperlegible" + }, + { + "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt43C1KxNDXMspQ1lPyU89-1h6ONRlW45G055ItWQGCbUWn.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Atkinson Hyperlegible" + }, + { + "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt73C1KxNDXMspQ1lPyU89-1h6ONRlW45G8WbcNcy-OZFy-FA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Atkinson Hyperlegible" + }, + { + "src": "http://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt93C1KxNDXMspQ1lPyU89-1h6ONRlW45G056qRdiWKRlmuFH24.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Atkinson Hyperlegible" + } + ] + }, + { + "name": "Atma", + "fontFamily": "Atma, system-ui", + "slug": "wp-font-lib-atma", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Atma" + }, + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_84rqWc-Eom25bDj8WIv4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Atma" + }, + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Atma" + }, + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Atma" + }, + { + "src": "http://fonts.gstatic.com/s/atma/v16/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Atma" + } + ] + }, + { + "name": "Atomic Age", + "fontFamily": "Atomic Age, system-ui", + "slug": "wp-font-lib-atomic-age", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/atomicage/v27/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Atomic Age" + } + ] + }, + { + "name": "Aubrey", + "fontFamily": "Aubrey, system-ui", + "slug": "wp-font-lib-aubrey", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7vugNsCxVEgA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Aubrey" + } + ] + }, + { + "name": "Audiowide", + "fontFamily": "Audiowide, system-ui", + "slug": "wp-font-lib-audiowide", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/audiowide/v16/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Audiowide" + } + ] + }, + { + "name": "Autour One", + "fontFamily": "Autour One, system-ui", + "slug": "wp-font-lib-autour-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/autourone/v24/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Autour One" + } + ] + }, + { + "name": "Average", + "fontFamily": "Average, serif", + "slug": "wp-font-lib-average", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/average/v18/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Average" + } + ] + }, + { + "name": "Average Sans", + "fontFamily": "Average Sans, sans-serif", + "slug": "wp-font-lib-average-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Average Sans" + } + ] + }, + { + "name": "Averia Gruesa Libre", + "fontFamily": "Averia Gruesa Libre, system-ui", + "slug": "wp-font-lib-averia-gruesa-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Averia Gruesa Libre" + } + ] + }, + { + "name": "Averia Libre", + "fontFamily": "Averia Libre, system-ui", + "slug": "wp-font-lib-averia-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Averia Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Averia Libre" + } + ] + }, + { + "name": "Averia Sans Libre", + "fontFamily": "Averia Sans Libre, system-ui", + "slug": "wp-font-lib-averia-sans-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Averia Sans Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Averia Sans Libre" + } + ] + }, + { + "name": "Averia Serif Libre", + "fontFamily": "Averia Serif Libre, system-ui", + "slug": "wp-font-lib-averia-serif-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Averia Serif Libre" + }, + { + "src": "http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Averia Serif Libre" + } + ] + }, + { + "name": "Azeret Mono", + "fontFamily": "Azeret Mono, monospace", + "slug": "wp-font-lib-azeret-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPRh0raa-5s3AA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPVh0raa-5s3AA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfwvVh0raa-5s3AA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh0raa-5s3AA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh0raa-5s3AA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfQvJh0raa-5s3AA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh0raa-5s3AA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPJh0raa-5s3AA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfNfJh0raa-5s3AA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkLye2Z4nAN7J.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJkbye2Z4nAN7J.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLbXkbye2Z4nAN7J.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbye2Z4nAN7J.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbye2Z4nAN7J.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZXlrye2Z4nAN7J.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulrye2Z4nAN7J.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJlrye2Z4nAN7J.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + }, + { + "src": "http://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYglrye2Z4nAN7J.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Azeret Mono" + } + ] + }, + { + "name": "B612", + "fontFamily": "B612, sans-serif", + "slug": "wp-font-lib-b612", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/b612/v12/3JnySDDxiSz32jm4GDigUXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "B612" + }, + { + "src": "http://fonts.gstatic.com/s/b612/v12/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "B612" + }, + { + "src": "http://fonts.gstatic.com/s/b612/v12/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "B612" + }, + { + "src": "http://fonts.gstatic.com/s/b612/v12/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "B612" + } + ] + }, + { + "name": "B612 Mono", + "fontFamily": "B612 Mono, monospace", + "slug": "wp-font-lib-b612-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "B612 Mono" + }, + { + "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "B612 Mono" + }, + { + "src": "http://fonts.gstatic.com/s/b612mono/v12/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "B612 Mono" + }, + { + "src": "http://fonts.gstatic.com/s/b612mono/v12/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "B612 Mono" + } + ] + }, + { + "name": "BIZ UDGothic", + "fontFamily": "BIZ UDGothic, sans-serif", + "slug": "wp-font-lib-biz-udgothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bizudgothic/v9/daafSTouBF7RUjnbt8p3LuKttQN98z_MbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BIZ UDGothic" + }, + { + "src": "http://fonts.gstatic.com/s/bizudgothic/v9/daaASTouBF7RUjnbt8p3LuKVCSxZ-xTQZMhbaA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BIZ UDGothic" + } + ] + }, + { + "name": "BIZ UDMincho", + "fontFamily": "BIZ UDMincho, serif", + "slug": "wp-font-lib-biz-udmincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bizudmincho/v9/EJRRQgI6eOxFjBdKs38yhtW1dwT7rcpY8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BIZ UDMincho" + }, + { + "src": "http://fonts.gstatic.com/s/bizudmincho/v9/EJROQgI6eOxFjBdKs38yhtWNyyvfpeFE-IyCrw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BIZ UDMincho" + } + ] + }, + { + "name": "BIZ UDPGothic", + "fontFamily": "BIZ UDPGothic, sans-serif", + "slug": "wp-font-lib-biz-udpgothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bizudpgothic/v9/hES36X5pHAIBjmS84VL0Bue83nUMQWkMUAk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BIZ UDPGothic" + }, + { + "src": "http://fonts.gstatic.com/s/bizudpgothic/v9/hESq6X5pHAIBjmS84VL0Bue85skjZWEnTABCSQo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BIZ UDPGothic" + } + ] + }, + { + "name": "BIZ UDPMincho", + "fontFamily": "BIZ UDPMincho, serif", + "slug": "wp-font-lib-biz-udpmincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvfbXOBrmYppy7oWWTg1_58nhhYtUb0gZk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BIZ UDPMincho" + }, + { + "src": "http://fonts.gstatic.com/s/bizudpmincho/v9/ypvCbXOBrmYppy7oWWTg1_58pqR3kU7fnZAy57k.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BIZ UDPMincho" + } + ] + }, + { + "name": "Babylonica", + "fontFamily": "Babylonica, cursive", + "slug": "wp-font-lib-babylonica", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/babylonica/v2/5aUw9_i2qxWVCAE2aHjTqDJ0-VVMoEw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Babylonica" + } + ] + }, + { + "name": "Bad Script", + "fontFamily": "Bad Script, cursive", + "slug": "wp-font-lib-bad-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/badscript/v16/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bad Script" + } + ] + }, + { + "name": "Bahiana", + "fontFamily": "Bahiana, system-ui", + "slug": "wp-font-lib-bahiana", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bahiana/v19/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bahiana" + } + ] + }, + { + "name": "Bahianita", + "fontFamily": "Bahianita, system-ui", + "slug": "wp-font-lib-bahianita", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bahianita/v18/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bahianita" + } + ] + }, + { + "name": "Bai Jamjuree", + "fontFamily": "Bai Jamjuree, sans-serif", + "slug": "wp-font-lib-bai-jamjuree", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bai Jamjuree" + }, + { + "src": "http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bai Jamjuree" + } + ] + }, + { + "name": "Bakbak One", + "fontFamily": "Bakbak One, system-ui", + "slug": "wp-font-lib-bakbak-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bakbakone/v6/zOL54pXAl6RI-p_ardnuycRuv-hHkOs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bakbak One" + } + ] + }, + { + "name": "Ballet", + "fontFamily": "Ballet, cursive", + "slug": "wp-font-lib-ballet", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ballet/v25/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3C4G-EiAou6Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ballet" + } + ] + }, + { + "name": "Baloo 2", + "fontFamily": "Baloo 2, system-ui", + "slug": "wp-font-lib-baloo-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgazapv9Fat7WcN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgozapv9Fat7WcN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpv9Fat7WcN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpv9Fat7WcN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpv9Fat7WcN.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo 2" + } + ] + }, + { + "name": "Baloo Bhai 2", + "fontFamily": "Baloo Bhai 2, system-ui", + "slug": "wp-font-lib-baloo-bhai-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighMXeCo-jsZzo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNhohMXeCo-jsZzo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNvYmMXeCo-jsZzo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNs8mMXeCo-jsZzo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhai2/v22/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNqgmMXeCo-jsZzo.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Bhai 2" + } + ] + }, + { + "name": "Baloo Bhaijaan 2", + "fontFamily": "Baloo Bhaijaan 2, system-ui", + "slug": "wp-font-lib-baloo-bhaijaan-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSqP4L4ppfcyC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyjSqP4L4ppfcyC.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TxPTaP4L4ppfcyC.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8Tx2TaP4L4ppfcyC.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TwRTaP4L4ppfcyC.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaijaan 2" + } + ] + }, + { + "name": "Baloo Bhaina 2", + "fontFamily": "Baloo Bhaina 2, system-ui", + "slug": "wp-font-lib-baloo-bhaina-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPvRfRLYWmZSA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEgMPvRfRLYWmZSA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEbMTvRfRLYWmZSA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEVcTvRfRLYWmZSA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEMsTvRfRLYWmZSA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Bhaina 2" + } + ] + }, + { + "name": "Baloo Chettan 2", + "fontFamily": "Baloo Chettan 2, system-ui", + "slug": "wp-font-lib-baloo-chettan-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTO1oeH9xI2gc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CdCTO1oeH9xI2gc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CTyUO1oeH9xI2gc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CQWUO1oeH9xI2gc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CWKUO1oeH9xI2gc.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Chettan 2" + } + ] + }, + { + "name": "Baloo Da 2", + "fontFamily": "Baloo Da 2, system-ui", + "slug": "wp-font-lib-baloo-da-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsTNe55aRa7UE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + }, + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjA5sTNe55aRa7UE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + }, + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDVtjNe55aRa7UE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + }, + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDstjNe55aRa7UE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + }, + { + "src": "http://fonts.gstatic.com/s/balooda2/v17/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjCLtjNe55aRa7UE.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Da 2" + } + ] + }, + { + "name": "Baloo Paaji 2", + "fontFamily": "Baloo Paaji 2, system-ui", + "slug": "wp-font-lib-baloo-paaji-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX74fybRUz1r5t.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Al74fybRUz1r5t.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Paaji 2" + } + ] + }, + { + "name": "Baloo Tamma 2", + "fontFamily": "Baloo Tamma 2, system-ui", + "slug": "wp-font-lib-baloo-tamma-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPp-0IF71SGC5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMsuPp-0IF71SGC5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMvCOZ-0IF71SGC5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMv7OZ-0IF71SGC5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMucOZ-0IF71SGC5.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Tamma 2" + } + ] + }, + { + "name": "Baloo Tammudu 2", + "fontFamily": "Baloo Tammudu 2, system-ui", + "slug": "wp-font-lib-baloo-tammudu-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e4c6PZSlGmAA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jc0e4c6PZSlGmAA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JSEZ4c6PZSlGmAA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JRgZ4c6PZSlGmAA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + }, + { + "src": "http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JX8Z4c6PZSlGmAA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Tammudu 2" + } + ] + }, + { + "name": "Baloo Thambi 2", + "fontFamily": "Baloo Thambi 2, system-ui", + "slug": "wp-font-lib-baloo-thambi-2", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIzaQRG_n4osQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbK_8IzaQRG_n4osQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKE8UzaQRG_n4osQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKKsUzaQRG_n4osQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + }, + { + "src": "http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKTcUzaQRG_n4osQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Baloo Thambi 2" + } + ] + }, + { + "name": "Balsamiq Sans", + "fontFamily": "Balsamiq Sans, system-ui", + "slug": "wp-font-lib-balsamiq-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balsamiqsans/v12/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Balsamiq Sans" + }, + { + "src": "http://fonts.gstatic.com/s/balsamiqsans/v12/P5sazZiAbNrN8SB3lQQX7PncwdsXJaVIDzvcXA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Balsamiq Sans" + }, + { + "src": "http://fonts.gstatic.com/s/balsamiqsans/v12/P5sZzZiAbNrN8SB3lQQX7PncyWUyBY9mAzLFRQI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Balsamiq Sans" + }, + { + "src": "http://fonts.gstatic.com/s/balsamiqsans/v12/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsBxDAVQI4aA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Balsamiq Sans" + } + ] + }, + { + "name": "Balthazar", + "fontFamily": "Balthazar, serif", + "slug": "wp-font-lib-balthazar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Balthazar" + } + ] + }, + { + "name": "Bangers", + "fontFamily": "Bangers, system-ui", + "slug": "wp-font-lib-bangers", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bangers/v21/FeVQS0BTqb0h60ACL5la2bxii28.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bangers" + } + ] + }, + { + "name": "Barlow", + "fontFamily": "Barlow, sans-serif", + "slug": "wp-font-lib-barlow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Barlow" + }, + { + "src": "http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Barlow" + } + ] + }, + { + "name": "Barlow Condensed", + "fontFamily": "Barlow Condensed, sans-serif", + "slug": "wp-font-lib-barlow-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Barlow Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Barlow Condensed" + } + ] + }, + { + "name": "Barlow Semi Condensed", + "fontFamily": "Barlow Semi Condensed, sans-serif", + "slug": "wp-font-lib-barlow-semi-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Barlow Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/barlowsemicondensed/v15/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Barlow Semi Condensed" + } + ] + }, + { + "name": "Barriecito", + "fontFamily": "Barriecito, system-ui", + "slug": "wp-font-lib-barriecito", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barriecito/v17/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barriecito" + } + ] + }, + { + "name": "Barrio", + "fontFamily": "Barrio, system-ui", + "slug": "wp-font-lib-barrio", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/barrio/v19/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Barrio" + } + ] + }, + { + "name": "Basic", + "fontFamily": "Basic, sans-serif", + "slug": "wp-font-lib-basic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKQN34lDVyR7D.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Basic" + } + ] + }, + { + "name": "Baskervville", + "fontFamily": "Baskervville, serif", + "slug": "wp-font-lib-baskervville", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baskervville/v14/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baskervville" + }, + { + "src": "http://fonts.gstatic.com/s/baskervville/v14/YA9Kr0yU4l_XOrogbkun3kQQtZmspPPZ9Mlt.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Baskervville" + } + ] + }, + { + "name": "Battambang", + "fontFamily": "Battambang, system-ui", + "slug": "wp-font-lib-battambang", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-kEGe7raEw-HjkzZabNhGp5w50_o9T7Q.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Battambang" + }, + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNtmLxyRa8oZK9I0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Battambang" + }, + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Battambang" + }, + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Battambang" + }, + { + "src": "http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNvGOxyRa8oZK9I0.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Battambang" + } + ] + }, + { + "name": "Baumans", + "fontFamily": "Baumans, system-ui", + "slug": "wp-font-lib-baumans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Baumans" + } + ] + }, + { + "name": "Bayon", + "fontFamily": "Bayon, sans-serif", + "slug": "wp-font-lib-bayon", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bayon/v29/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bayon" + } + ] + }, + { + "name": "Be Vietnam Pro", + "fontFamily": "Be Vietnam Pro, sans-serif", + "slug": "wp-font-lib-be-vietnam-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HRUBX8YYbAiah8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsSZZIneh-waA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HT4JF8yT7wrcwap.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczRbgJdhapcUU.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HScJ18yT7wrcwap.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwRbgJdhapcUU.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVPSTAyLFyeg_IDWvOJmVES_EwwD3s6ZKAi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HwyBX8YYbAiah8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxRbgJdhapcUU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2RbgJdhapcUU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSMIF8yT7wrcwap.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3RbgJdhapcUU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSQI18yT7wrcwap.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80RbgJdhapcUU.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HS0Il8yT7wrcwap.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Be Vietnam Pro" + }, + { + "src": "http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1RbgJdhapcUU.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Be Vietnam Pro" + } + ] + }, + { + "name": "Beau Rivage", + "fontFamily": "Beau Rivage, cursive", + "slug": "wp-font-lib-beau-rivage", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUlmg3NZp8K2sL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Beau Rivage" + } + ] + }, + { + "name": "Bebas Neue", + "fontFamily": "Bebas Neue, sans-serif", + "slug": "wp-font-lib-bebas-neue", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bebasneue/v10/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bebas Neue" + } + ] + }, + { + "name": "Belgrano", + "fontFamily": "Belgrano, serif", + "slug": "wp-font-lib-belgrano", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Belgrano" + } + ] + }, + { + "name": "Bellefair", + "fontFamily": "Bellefair, serif", + "slug": "wp-font-lib-bellefair", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bellefair/v14/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bellefair" + } + ] + }, + { + "name": "Belleza", + "fontFamily": "Belleza, sans-serif", + "slug": "wp-font-lib-belleza", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Belleza" + } + ] + }, + { + "name": "Bellota", + "fontFamily": "Bellota, system-ui", + "slug": "wp-font-lib-bellota", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAID55kGMViblPtXs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjHGEfjZtKpXulTQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQ0bhXl3_qEpiwAKJBbsEk7hbBWrA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAIC5-kGMViblPtXs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bellota" + }, + { + "src": "http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjDGYfjZtKpXulTQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bellota" + } + ] + }, + { + "name": "Bellota Text", + "fontFamily": "Bellota Text, system-ui", + "slug": "wp-font-lib-bellota-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5VfsqfQXwQy6yxg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_0YSuixmYK.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlNVP2VnlWS4f3-UE9hHXMx-9kKVyv8Sjer.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5RfwqfQXwQy6yxg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bellota Text" + }, + { + "src": "http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_0YSuixmYK.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bellota Text" + } + ] + }, + { + "name": "BenchNine", + "fontFamily": "BenchNine, sans-serif", + "slug": "wp-font-lib-benchnine", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "BenchNine" + }, + { + "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BenchNine" + }, + { + "src": "http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BenchNine" + } + ] + }, + { + "name": "Benne", + "fontFamily": "Benne, serif", + "slug": "wp-font-lib-benne", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/benne/v22/L0xzDFAhn18E6Vjxlt6qTDBN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Benne" + } + ] + }, + { + "name": "Bentham", + "fontFamily": "Bentham, serif", + "slug": "wp-font-lib-bentham", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bentham/v18/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bentham" + } + ] + }, + { + "name": "Berkshire Swash", + "fontFamily": "Berkshire Swash, cursive", + "slug": "wp-font-lib-berkshire-swash", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/berkshireswash/v16/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Berkshire Swash" + } + ] + }, + { + "name": "Besley", + "fontFamily": "Besley, serif", + "slug": "wp-font-lib-besley", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBSdRoFPOl8-E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fYTBSdRoFPOl8-E.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fWjGSdRoFPOl8-E.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fVHGSdRoFPOl8-E.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fTbGSdRoFPOl8-E.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIhFlO1MaNwaNGWUC92IOH_mtG4fR_GSdRoFPOl8-E.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CoZdiENGg4-E04A.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Ck5diENGg4-E04A.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Cf5BiENGg4-E04A.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CRpBiENGg4-E04A.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CIZBiENGg4-E04A.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Besley" + }, + { + "src": "http://fonts.gstatic.com/s/besley/v17/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CCJBiENGg4-E04A.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Besley" + } + ] + }, + { + "name": "Beth Ellen", + "fontFamily": "Beth Ellen, cursive", + "slug": "wp-font-lib-beth-ellen", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bethellen/v17/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Beth Ellen" + } + ] + }, + { + "name": "Bevan", + "fontFamily": "Bevan, system-ui", + "slug": "wp-font-lib-bevan", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bevan/v21/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bevan" + }, + { + "src": "http://fonts.gstatic.com/s/bevan/v21/4iCt6KZ0a9NXjG8YWC7Zs0SJD4U.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bevan" + } + ] + }, + { + "name": "BhuTuka Expanded One", + "fontFamily": "BhuTuka Expanded One, system-ui", + "slug": "wp-font-lib-bhutuka-expanded-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bhutukaexpandedone/v3/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJCyX8pg_RVH1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BhuTuka Expanded One" + } + ] + }, + { + "name": "Big Shoulders Display", + "fontFamily": "Big Shoulders Display, system-ui", + "slug": "wp-font-lib-big-shoulders-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY86JF46SRP4yZQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ87JF46SRP4yZQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YddE7JF46SRP4yZQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87JF46SRP4yZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0Ydb07JF46SRP4yZQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdVE8JF46SRP4yZQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdWg8JF46SRP4yZQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ88JF46SRP4yZQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersdisplay/v19/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdSY8JF46SRP4yZQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Display" + } + ] + }, + { + "name": "Big Shoulders Inline Display", + "fontFamily": "Big Shoulders Inline Display, system-ui", + "slug": "wp-font-lib-big-shoulders-inline-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBEnR5yPc2Huux.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBE3R5yPc2Huux.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0mfE3R5yPc2Huux.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE3R5yPc2Huux.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nzE3R5yPc2Huux.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kfFHR5yPc2Huux.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kmFHR5yPc2Huux.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBFHR5yPc2Huux.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v25/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0loFHR5yPc2Huux.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Display" + } + ] + }, + { + "name": "Big Shoulders Inline Text", + "fontFamily": "Big Shoulders Inline Text, system-ui", + "slug": "wp-font-lib-big-shoulders-inline-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0yqGN7Y6Jsc8c.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0y6GN7Y6Jsc8c.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgbqy6GN7Y6Jsc8c.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y6GN7Y6Jsc8c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgaGy6GN7Y6Jsc8c.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZqzKGN7Y6Jsc8c.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZTzKGN7Y6Jsc8c.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0zKGN7Y6Jsc8c.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v24/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgYdzKGN7Y6Jsc8c.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Inline Text" + } + ] + }, + { + "name": "Big Shoulders Stencil Display", + "fontFamily": "Big Shoulders Stencil Display, system-ui", + "slug": "wp-font-lib-big-shoulders-stencil-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0nPKHznJucP9w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0jPKHznJucP9w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_ZUjPKHznJucP9w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0jPKHznJucP9w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_CUjPKHznJucP9w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_5U_PKHznJucP9w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_3E_PKHznJucP9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0_PKHznJucP9w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v22/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_kk_PKHznJucP9w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Display" + } + ] + }, + { + "name": "Big Shoulders Stencil Text", + "fontFamily": "Big Shoulders Stencil Text, system-ui", + "slug": "wp-font-lib-big-shoulders-stencil-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04XIGS_Py_AWbQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4TIGS_Py_AWbQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRjYTIGS_Py_AWbQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04TIGS_Py_AWbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR4YTIGS_Py_AWbQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRDYPIGS_Py_AWbQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRNIPIGS_Py_AWbQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4PIGS_Py_AWbQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGReoPIGS_Py_AWbQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Stencil Text" + } + ] + }, + { + "name": "Big Shoulders Text", + "fontFamily": "Big Shoulders Text, system-ui", + "slug": "wp-font-lib-big-shoulders-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-r3TIPNl6P2pc.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-q3TIPNl6P2pc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3dGq3TIPNl6P2pc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q3TIPNl6P2pc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3b2q3TIPNl6P2pc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3VGt3TIPNl6P2pc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Wit3TIPNl6P2pc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-t3TIPNl6P2pc.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + }, + { + "src": "http://fonts.gstatic.com/s/bigshoulderstext/v22/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Sat3TIPNl6P2pc.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Big Shoulders Text" + } + ] + }, + { + "name": "Bigelow Rules", + "fontFamily": "Bigelow Rules, system-ui", + "slug": "wp-font-lib-bigelow-rules", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigelowrules/v24/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bigelow Rules" + } + ] + }, + { + "name": "Bigshot One", + "fontFamily": "Bigshot One, system-ui", + "slug": "wp-font-lib-bigshot-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bigshotone/v25/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bigshot One" + } + ] + }, + { + "name": "Bilbo", + "fontFamily": "Bilbo, cursive", + "slug": "wp-font-lib-bilbo", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ210hpIRz4wxE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bilbo" + } + ] + }, + { + "name": "Bilbo Swash Caps", + "fontFamily": "Bilbo Swash Caps, cursive", + "slug": "wp-font-lib-bilbo-swash-caps", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bilbo Swash Caps" + } + ] + }, + { + "name": "BioRhyme", + "fontFamily": "BioRhyme, serif", + "slug": "wp-font-lib-biorhyme", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + }, + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + }, + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + }, + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + }, + { + "src": "http://fonts.gstatic.com/s/biorhyme/v13/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "BioRhyme" + } + ] + }, + { + "name": "BioRhyme Expanded", + "fontFamily": "BioRhyme Expanded, serif", + "slug": "wp-font-lib-biorhyme-expanded", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "BioRhyme Expanded" + } + ] + }, + { + "name": "Birthstone", + "fontFamily": "Birthstone, cursive", + "slug": "wp-font-lib-birthstone", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/birthstone/v11/8AtsGs2xO4yLRhy87sv_HLn5jRfZHzM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Birthstone" + } + ] + }, + { + "name": "Birthstone Bounce", + "fontFamily": "Birthstone Bounce, cursive", + "slug": "wp-font-lib-birthstone-bounce", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6XaxZF43lIvTWrktHOTBJZGH7dEeVJGIMYDo_8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Birthstone Bounce" + }, + { + "src": "http://fonts.gstatic.com/s/birthstonebounce/v9/ga6SaxZF43lIvTWrktHOTBJZGH7dEd29MacQJZP1LmD9.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Birthstone Bounce" + } + ] + }, + { + "name": "Biryani", + "fontFamily": "Biryani, sans-serif", + "slug": "wp-font-lib-biryani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Biryani" + }, + { + "src": "http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Biryani" + } + ] + }, + { + "name": "Bitter", + "fontFamily": "Bitter, serif", + "slug": "wp-font-lib-bitter", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCL_EXFh2reU.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCL_EXFh2reU.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCL_EXFh2reU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL_EXFh2reU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCL_EXFh2reU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCL_EXFh2reU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL_EXFh2reU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCL_EXFh2reU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCL_EXFh2reU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OWHpzveWxBw.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOWHpzveWxBw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOWHpzveWxBw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWHpzveWxBw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOWHpzveWxBw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOWHpzveWxBw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOWHpzveWxBw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOWHpzveWxBw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Bitter" + }, + { + "src": "http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOWHpzveWxBw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Bitter" + } + ] + }, + { + "name": "Black And White Picture", + "fontFamily": "Black And White Picture, sans-serif", + "slug": "wp-font-lib-black-and-white-picture", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blackandwhitepicture/v22/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Black And White Picture" + } + ] + }, + { + "name": "Black Han Sans", + "fontFamily": "Black Han Sans, sans-serif", + "slug": "wp-font-lib-black-han-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blackhansans/v15/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Black Han Sans" + } + ] + }, + { + "name": "Black Ops One", + "fontFamily": "Black Ops One, system-ui", + "slug": "wp-font-lib-black-ops-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Black Ops One" + } + ] + }, + { + "name": "Blaka", + "fontFamily": "Blaka, system-ui", + "slug": "wp-font-lib-blaka", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blaka/v5/8vIG7w8722p_6kdr20D2FV5e.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Blaka" + } + ] + }, + { + "name": "Blaka Hollow", + "fontFamily": "Blaka Hollow, system-ui", + "slug": "wp-font-lib-blaka-hollow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blakahollow/v5/MCoUzAL91sjRE2FsKsxUtezYB9oFyW_-oA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Blaka Hollow" + } + ] + }, + { + "name": "Blaka Ink", + "fontFamily": "Blaka Ink, system-ui", + "slug": "wp-font-lib-blaka-ink", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blakaink/v7/AlZy_zVVtpj22Znag2chdXf4XB0Tow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Blaka Ink" + } + ] + }, + { + "name": "Blinker", + "fontFamily": "Blinker, sans-serif", + "slug": "wp-font-lib-blinker", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Blinker" + }, + { + "src": "http://fonts.gstatic.com/s/blinker/v13/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Blinker" + } + ] + }, + { + "name": "Bodoni Moda", + "fontFamily": "Bodoni Moda, serif", + "slug": "wp-font-lib-bodoni-moda", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIBytVjMYwE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oXzawIBytVjMYwE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oZDdwIBytVjMYwE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIBytVjMYwE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oc7dwIBytVjMYwE.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oefdwIBytVjMYwE.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4sXrJcwHqoQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZGsN4sXrJcwHqoQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZ9sR4sXrJcwHqoQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZz8R4sXrJcwHqoQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZqMR4sXrJcwHqoQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + }, + { + "src": "http://fonts.gstatic.com/s/bodonimoda/v23/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZgcR4sXrJcwHqoQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Bodoni Moda" + } + ] + }, + { + "name": "Bokor", + "fontFamily": "Bokor, system-ui", + "slug": "wp-font-lib-bokor", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bokor/v30/m8JcjfpeeaqTiR2WdInbcaxE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bokor" + } + ] + }, + { + "name": "Bona Nova", + "fontFamily": "Bona Nova, serif", + "slug": "wp-font-lib-bona-nova", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bonanova/v10/B50NF7ZCpX7fcHfvIUBJi6hqHK-CLA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bona Nova" + }, + { + "src": "http://fonts.gstatic.com/s/bonanova/v10/B50LF7ZCpX7fcHfvIUB5iaJuPqqSLJYf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Bona Nova" + }, + { + "src": "http://fonts.gstatic.com/s/bonanova/v10/B50IF7ZCpX7fcHfvIUBxN4dOFISeJY8GgQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Bona Nova" + } + ] + }, + { + "name": "Bonbon", + "fontFamily": "Bonbon, cursive", + "slug": "wp-font-lib-bonbon", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bonbon/v26/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bonbon" + } + ] + }, + { + "name": "Bonheur Royale", + "fontFamily": "Bonheur Royale, cursive", + "slug": "wp-font-lib-bonheur-royale", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bonheurroyale/v10/c4m51nt_GMTrtX-b9GcG4-YRmYK_c0f1N5Ij.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bonheur Royale" + } + ] + }, + { + "name": "Boogaloo", + "fontFamily": "Boogaloo, system-ui", + "slug": "wp-font-lib-boogaloo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/boogaloo/v19/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Boogaloo" + } + ] + }, + { + "name": "Bowlby One", + "fontFamily": "Bowlby One, system-ui", + "slug": "wp-font-lib-bowlby-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bowlbyone/v19/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bowlby One" + } + ] + }, + { + "name": "Bowlby One SC", + "fontFamily": "Bowlby One SC, system-ui", + "slug": "wp-font-lib-bowlby-one-sc", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bowlbyonesc/v20/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bowlby One SC" + } + ] + }, + { + "name": "Braah One", + "fontFamily": "Braah One, sans-serif", + "slug": "wp-font-lib-braah-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/braahone/v2/KFOlCnWUpt6LsxxxiylvAx05IsDqlA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Braah One" + } + ] + }, + { + "name": "Brawler", + "fontFamily": "Brawler, serif", + "slug": "wp-font-lib-brawler", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Brawler" + }, + { + "src": "http://fonts.gstatic.com/s/brawler/v19/xn7lYHE3xXewAscGiryUb932eNaPfk8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Brawler" + } + ] + }, + { + "name": "Bree Serif", + "fontFamily": "Bree Serif, serif", + "slug": "wp-font-lib-bree-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bree Serif" + } + ] + }, + { + "name": "Bruno Ace", + "fontFamily": "Bruno Ace, system-ui", + "slug": "wp-font-lib-bruno-ace", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/brunoace/v1/WwkcxPa2E06x4trkOj_kMKoMWNMg3Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bruno Ace" + } + ] + }, + { + "name": "Bruno Ace SC", + "fontFamily": "Bruno Ace SC, system-ui", + "slug": "wp-font-lib-bruno-ace-sc", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/brunoacesc/v1/ptROTiycffFLBuiHjdJDl634LSFrpe8uZA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bruno Ace SC" + } + ] + }, + { + "name": "Brygada 1918", + "fontFamily": "Brygada 1918, serif", + "slug": "wp-font-lib-brygada-1918", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-f-V8Wu5O3gbo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y12f-V8Wu5O3gbo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y7GY-V8Wu5O3gbo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y4iY-V8Wu5O3gbo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcERwcv7GykboaLg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcIxwcv7GykboaLg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfczxscv7GykboaLg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Brygada 1918" + }, + { + "src": "http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfc9hscv7GykboaLg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Brygada 1918" + } + ] + }, + { + "name": "Bubblegum Sans", + "fontFamily": "Bubblegum Sans, system-ui", + "slug": "wp-font-lib-bubblegum-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bubblegumsans/v16/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bubblegum Sans" + } + ] + }, + { + "name": "Bubbler One", + "fontFamily": "Bubbler One, sans-serif", + "slug": "wp-font-lib-bubbler-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bubblerone/v20/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bubbler One" + } + ] + }, + { + "name": "Buda", + "fontFamily": "Buda, system-ui", + "slug": "wp-font-lib-buda", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/buda/v25/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Buda" + } + ] + }, + { + "name": "Buenard", + "fontFamily": "Buenard, serif", + "slug": "wp-font-lib-buenard", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/buenard/v17/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Buenard" + }, + { + "src": "http://fonts.gstatic.com/s/buenard/v17/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Buenard" + } + ] + }, + { + "name": "Bungee", + "fontFamily": "Bungee, system-ui", + "slug": "wp-font-lib-bungee", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungee/v11/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee" + } + ] + }, + { + "name": "Bungee Hairline", + "fontFamily": "Bungee Hairline, system-ui", + "slug": "wp-font-lib-bungee-hairline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeehairline/v19/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Hairline" + } + ] + }, + { + "name": "Bungee Inline", + "fontFamily": "Bungee Inline, system-ui", + "slug": "wp-font-lib-bungee-inline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeeinline/v12/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Inline" + } + ] + }, + { + "name": "Bungee Outline", + "fontFamily": "Bungee Outline, system-ui", + "slug": "wp-font-lib-bungee-outline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeeoutline/v18/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Outline" + } + ] + }, + { + "name": "Bungee Shade", + "fontFamily": "Bungee Shade, system-ui", + "slug": "wp-font-lib-bungee-shade", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeeshade/v11/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Shade" + } + ] + }, + { + "name": "Bungee Spice", + "fontFamily": "Bungee Spice, system-ui", + "slug": "wp-font-lib-bungee-spice", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/bungeespice/v9/nwpTtK2nIhxE0q-IwgSpZBqCzyI-aMPF7Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Bungee Spice" + } + ] + }, + { + "name": "Butcherman", + "fontFamily": "Butcherman, system-ui", + "slug": "wp-font-lib-butcherman", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Butcherman" + } + ] + }, + { + "name": "Butterfly Kids", + "fontFamily": "Butterfly Kids, cursive", + "slug": "wp-font-lib-butterfly-kids", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/butterflykids/v21/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Butterfly Kids" + } + ] + }, + { + "name": "Cabin", + "fontFamily": "Cabin, sans-serif", + "slug": "wp-font-lib-cabin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Gvxm7rE_s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7Gvxm7rE_s.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Gvxm7rE_s.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Gvxm7rE_s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_KlwkzuA_u1Bg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlwkzuA_u1Bg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlwkzuA_u1Bg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cabin" + }, + { + "src": "http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlwkzuA_u1Bg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cabin" + } + ] + }, + { + "name": "Cabin Condensed", + "fontFamily": "Cabin Condensed, sans-serif", + "slug": "wp-font-lib-cabin-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cabin Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cabin Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cabin Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/cabincondensed/v20/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cabin Condensed" + } + ] + }, + { + "name": "Cabin Sketch", + "fontFamily": "Cabin Sketch, system-ui", + "slug": "wp-font-lib-cabin-sketch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cabinsketch/v19/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cabin Sketch" + }, + { + "src": "http://fonts.gstatic.com/s/cabinsketch/v19/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cabin Sketch" + } + ] + }, + { + "name": "Caesar Dressing", + "fontFamily": "Caesar Dressing, system-ui", + "slug": "wp-font-lib-caesar-dressing", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caesar Dressing" + } + ] + }, + { + "name": "Cagliostro", + "fontFamily": "Cagliostro, sans-serif", + "slug": "wp-font-lib-cagliostro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cagliostro" + } + ] + }, + { + "name": "Cairo", + "fontFamily": "Cairo, sans-serif", + "slug": "wp-font-lib-cairo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA-W1ToLQ-HmkA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hL4-W1ToLQ-HmkA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1ToLQ-HmkA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1ToLQ-HmkA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hD45W1ToLQ-HmkA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1ToLQ-HmkA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA5W1ToLQ-HmkA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Cairo" + }, + { + "src": "http://fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hEk5W1ToLQ-HmkA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Cairo" + } + ] + }, + { + "name": "Cairo Play", + "fontFamily": "Cairo Play, sans-serif", + "slug": "wp-font-lib-cairo-play", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnYq9yXa8GvzaA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1zHYq9yXa8GvzaA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1knYq9yXa8GvzaA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1oHYq9yXa8GvzaA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1THEq9yXa8GvzaA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1dXEq9yXa8GvzaA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnEq9yXa8GvzaA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + }, + { + "src": "http://fonts.gstatic.com/s/cairoplay/v7/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1O3Eq9yXa8GvzaA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Cairo Play" + } + ] + }, + { + "name": "Caladea", + "fontFamily": "Caladea, serif", + "slug": "wp-font-lib-caladea", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caladea/v7/kJEzBugZ7AAjhybUjR93-9IztOc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caladea" + }, + { + "src": "http://fonts.gstatic.com/s/caladea/v7/kJExBugZ7AAjhybUvR19__A2pOdvDA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Caladea" + }, + { + "src": "http://fonts.gstatic.com/s/caladea/v7/kJE2BugZ7AAjhybUtaNY39oYqO52FZ0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Caladea" + }, + { + "src": "http://fonts.gstatic.com/s/caladea/v7/kJE0BugZ7AAjhybUvR1FQ98SrMxzBZ2lDA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Caladea" + } + ] + }, + { + "name": "Calistoga", + "fontFamily": "Calistoga, system-ui", + "slug": "wp-font-lib-calistoga", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/calistoga/v13/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Calistoga" + } + ] + }, + { + "name": "Calligraffitti", + "fontFamily": "Calligraffitti, cursive", + "slug": "wp-font-lib-calligraffitti", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Calligraffitti" + } + ] + }, + { + "name": "Cambay", + "fontFamily": "Cambay, sans-serif", + "slug": "wp-font-lib-cambay", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cambay/v12/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cambay" + }, + { + "src": "http://fonts.gstatic.com/s/cambay/v12/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cambay" + }, + { + "src": "http://fonts.gstatic.com/s/cambay/v12/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cambay" + }, + { + "src": "http://fonts.gstatic.com/s/cambay/v12/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cambay" + } + ] + }, + { + "name": "Cambo", + "fontFamily": "Cambo, serif", + "slug": "wp-font-lib-cambo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cambo/v17/IFSqHeNEk8FJk416ok7xkPm8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cambo" + } + ] + }, + { + "name": "Candal", + "fontFamily": "Candal, sans-serif", + "slug": "wp-font-lib-candal", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Candal" + } + ] + }, + { + "name": "Cantarell", + "fontFamily": "Cantarell, sans-serif", + "slug": "wp-font-lib-cantarell", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cantarell/v17/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cantarell" + }, + { + "src": "http://fonts.gstatic.com/s/cantarell/v17/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cantarell" + }, + { + "src": "http://fonts.gstatic.com/s/cantarell/v17/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cantarell" + }, + { + "src": "http://fonts.gstatic.com/s/cantarell/v17/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cantarell" + } + ] + }, + { + "name": "Cantata One", + "fontFamily": "Cantata One, serif", + "slug": "wp-font-lib-cantata-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cantata One" + } + ] + }, + { + "name": "Cantora One", + "fontFamily": "Cantora One, sans-serif", + "slug": "wp-font-lib-cantora-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cantoraone/v19/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cantora One" + } + ] + }, + { + "name": "Capriola", + "fontFamily": "Capriola, sans-serif", + "slug": "wp-font-lib-capriola", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/capriola/v14/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Capriola" + } + ] + }, + { + "name": "Caramel", + "fontFamily": "Caramel, cursive", + "slug": "wp-font-lib-caramel", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caramel/v7/P5sCzZKBbMTf_ShyxCRuiZ-uydg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caramel" + } + ] + }, + { + "name": "Carattere", + "fontFamily": "Carattere, cursive", + "slug": "wp-font-lib-carattere", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carattere/v7/4iCv6Kp1b9dXlgt_CkvTt2aMH4V_gg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carattere" + } + ] + }, + { + "name": "Cardo", + "fontFamily": "Cardo, serif", + "slug": "wp-font-lib-cardo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cardo" + }, + { + "src": "http://fonts.gstatic.com/s/cardo/v19/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cardo" + }, + { + "src": "http://fonts.gstatic.com/s/cardo/v19/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cardo" + } + ] + }, + { + "name": "Carlito", + "fontFamily": "Carlito, sans-serif", + "slug": "wp-font-lib-carlito", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn9SDPw3m-pk039PDCLTXUETuE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carlito" + }, + { + "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn_SDPw3m-pk039DDKBSVcBXuFb0Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Carlito" + }, + { + "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn4SDPw3m-pk039BIykaX0vUuhCyOo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Carlito" + }, + { + "src": "http://fonts.gstatic.com/s/carlito/v3/3Jn6SDPw3m-pk039DDK59XglVspH2OprMQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Carlito" + } + ] + }, + { + "name": "Carme", + "fontFamily": "Carme, sans-serif", + "slug": "wp-font-lib-carme", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carme" + } + ] + }, + { + "name": "Carrois Gothic", + "fontFamily": "Carrois Gothic, sans-serif", + "slug": "wp-font-lib-carrois-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carrois Gothic" + } + ] + }, + { + "name": "Carrois Gothic SC", + "fontFamily": "Carrois Gothic SC, sans-serif", + "slug": "wp-font-lib-carrois-gothic-sc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carrois Gothic SC" + } + ] + }, + { + "name": "Carter One", + "fontFamily": "Carter One, system-ui", + "slug": "wp-font-lib-carter-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Carter One" + } + ] + }, + { + "name": "Castoro", + "fontFamily": "Castoro, serif", + "slug": "wp-font-lib-castoro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/castoro/v19/1q2GY5yMCld3-O4cHYhEzOYenEU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Castoro" + }, + { + "src": "http://fonts.gstatic.com/s/castoro/v19/1q2EY5yMCld3-O4cLYpOyMQbjEX5fw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Castoro" + } + ] + }, + { + "name": "Castoro Titling", + "fontFamily": "Castoro Titling, system-ui", + "slug": "wp-font-lib-castoro-titling", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/castorotitling/v3/buEupouwccj03leTfjUAhEZWlrNqYgckeo9RMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Castoro Titling" + } + ] + }, + { + "name": "Catamaran", + "fontFamily": "Catamaran, sans-serif", + "slug": "wp-font-lib-catamaran", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1anXuluiLyw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1anXuluiLyw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1anXuluiLyw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1anXuluiLyw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1anXuluiLyw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1anXuluiLyw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1anXuluiLyw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1anXuluiLyw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Catamaran" + }, + { + "src": "http://fonts.gstatic.com/s/catamaran/v18/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1anXuluiLyw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Catamaran" + } + ] + }, + { + "name": "Caudex", + "fontFamily": "Caudex, serif", + "slug": "wp-font-lib-caudex", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caudex/v15/esDQ311QOP6BJUrIyviAnb4eEw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caudex" + }, + { + "src": "http://fonts.gstatic.com/s/caudex/v15/esDS311QOP6BJUr4yPKEv7sOE4in.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Caudex" + }, + { + "src": "http://fonts.gstatic.com/s/caudex/v15/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Caudex" + }, + { + "src": "http://fonts.gstatic.com/s/caudex/v15/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Caudex" + } + ] + }, + { + "name": "Caveat", + "fontFamily": "Caveat, cursive", + "slug": "wp-font-lib-caveat", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9SIKjYBxPigs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caveat" + }, + { + "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjcB9SIKjYBxPigs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Caveat" + }, + { + "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjSx6SIKjYBxPigs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Caveat" + }, + { + "src": "http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIKjYBxPigs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Caveat" + } + ] + }, + { + "name": "Caveat Brush", + "fontFamily": "Caveat Brush, cursive", + "slug": "wp-font-lib-caveat-brush", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Caveat Brush" + } + ] + }, + { + "name": "Cedarville Cursive", + "fontFamily": "Cedarville Cursive, cursive", + "slug": "wp-font-lib-cedarville-cursive", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cedarville Cursive" + } + ] + }, + { + "name": "Ceviche One", + "fontFamily": "Ceviche One, system-ui", + "slug": "wp-font-lib-ceviche-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ceviche One" + } + ] + }, + { + "name": "Chakra Petch", + "fontFamily": "Chakra Petch, sans-serif", + "slug": "wp-font-lib-chakra-petch", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Chakra Petch" + }, + { + "src": "http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Chakra Petch" + } + ] + }, + { + "name": "Changa", + "fontFamily": "Changa, sans-serif", + "slug": "wp-font-lib-changa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjDp9htf1ZM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjDp9htf1ZM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjDp9htf1ZM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjDp9htf1ZM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjDp9htf1ZM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjDp9htf1ZM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Changa" + }, + { + "src": "http://fonts.gstatic.com/s/changa/v22/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjDp9htf1ZM.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Changa" + } + ] + }, + { + "name": "Changa One", + "fontFamily": "Changa One, system-ui", + "slug": "wp-font-lib-changa-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/changaone/v18/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Changa One" + }, + { + "src": "http://fonts.gstatic.com/s/changaone/v18/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Changa One" + } + ] + }, + { + "name": "Chango", + "fontFamily": "Chango, system-ui", + "slug": "wp-font-lib-chango", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chango/v22/2V0cKI0OB5U7WaJyz324TFUaAw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chango" + } + ] + }, + { + "name": "Charis SIL", + "fontFamily": "Charis SIL, serif", + "slug": "wp-font-lib-charis-sil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/charissil/v2/oPWK_kV3l-s-Q8govXvKrPrmYjZ2Xn0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Charis SIL" + }, + { + "src": "http://fonts.gstatic.com/s/charissil/v2/oPWI_kV3l-s-Q8govXvKnPjsZhRzTn2Ozw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Charis SIL" + }, + { + "src": "http://fonts.gstatic.com/s/charissil/v2/oPWJ_kV3l-s-Q8govXvKlEbJRj5dQnSX1ko.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Charis SIL" + }, + { + "src": "http://fonts.gstatic.com/s/charissil/v2/oPWX_kV3l-s-Q8govXvKnPjU2jtXRlaSxkrMCQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Charis SIL" + } + ] + }, + { + "name": "Charm", + "fontFamily": "Charm, cursive", + "slug": "wp-font-lib-charm", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/charm/v11/7cHmv4oii5K0MeYvIe804WIo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Charm" + }, + { + "src": "http://fonts.gstatic.com/s/charm/v11/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Charm" + } + ] + }, + { + "name": "Charmonman", + "fontFamily": "Charmonman, cursive", + "slug": "wp-font-lib-charmonman", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/charmonman/v18/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Charmonman" + }, + { + "src": "http://fonts.gstatic.com/s/charmonman/v18/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Charmonman" + } + ] + }, + { + "name": "Chathura", + "fontFamily": "Chathura, sans-serif", + "slug": "wp-font-lib-chathura", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Chathura" + }, + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Chathura" + }, + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP71R7-rzUuVjim418goUC5S-Zy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chathura" + }, + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Chathura" + }, + { + "src": "http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Chathura" + } + ] + }, + { + "name": "Chau Philomene One", + "fontFamily": "Chau Philomene One, sans-serif", + "slug": "wp-font-lib-chau-philomene-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chau Philomene One" + }, + { + "src": "http://fonts.gstatic.com/s/chauphilomeneone/v15/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Chau Philomene One" + } + ] + }, + { + "name": "Chela One", + "fontFamily": "Chela One, system-ui", + "slug": "wp-font-lib-chela-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chela One" + } + ] + }, + { + "name": "Chelsea Market", + "fontFamily": "Chelsea Market, system-ui", + "slug": "wp-font-lib-chelsea-market", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chelsea Market" + } + ] + }, + { + "name": "Chenla", + "fontFamily": "Chenla, system-ui", + "slug": "wp-font-lib-chenla", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chenla" + } + ] + }, + { + "name": "Cherish", + "fontFamily": "Cherish, cursive", + "slug": "wp-font-lib-cherish", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cherish/v8/ll88K2mXUyqsDsTN5iDCI6IJjg8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cherish" + } + ] + }, + { + "name": "Cherry Bomb One", + "fontFamily": "Cherry Bomb One, system-ui", + "slug": "wp-font-lib-cherry-bomb-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cherrybombone/v8/y83DW4od1h6KlV3c6JJhRhGOdhrKDNpF41fr-w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cherry Bomb One" + } + ] + }, + { + "name": "Cherry Cream Soda", + "fontFamily": "Cherry Cream Soda, system-ui", + "slug": "wp-font-lib-cherry-cream-soda", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cherry Cream Soda" + } + ] + }, + { + "name": "Cherry Swash", + "fontFamily": "Cherry Swash, system-ui", + "slug": "wp-font-lib-cherry-swash", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cherryswash/v18/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cherry Swash" + }, + { + "src": "http://fonts.gstatic.com/s/cherryswash/v18/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cherry Swash" + } + ] + }, + { + "name": "Chewy", + "fontFamily": "Chewy, system-ui", + "slug": "wp-font-lib-chewy", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wk5xIDMfO-ed.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chewy" + } + ] + }, + { + "name": "Chicle", + "fontFamily": "Chicle, system-ui", + "slug": "wp-font-lib-chicle", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chicle/v21/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chicle" + } + ] + }, + { + "name": "Chilanka", + "fontFamily": "Chilanka, cursive", + "slug": "wp-font-lib-chilanka", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chilanka/v20/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chilanka" + } + ] + }, + { + "name": "Chivo", + "fontFamily": "Chivo, sans-serif", + "slug": "wp-font-lib-chivo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB7ul2DSFXjQiQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PB_ul2DSFXjQiQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_4h_ul2DSFXjQiQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ul2DSFXjQiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_jh_ul2DSFXjQiQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Yhjul2DSFXjQiQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Wxjul2DSFXjQiQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PBjul2DSFXjQiQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_FRjul2DSFXjQiQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1WrWN33AiasJ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG1GrWN33AiasJ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFxY1GrWN33AiasJ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1GrWN33AiasJ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFw01GrWN33AiasJ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzY02rWN33AiasJ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzh02rWN33AiasJ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG02rWN33AiasJ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Chivo" + }, + { + "src": "http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyv02rWN33AiasJ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Chivo" + } + ] + }, + { + "name": "Chivo Mono", + "fontFamily": "Chivo Mono, monospace", + "slug": "wp-font-lib-chivo-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hrqfVKphL03l4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hr6fVKphL03l4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D6_r6fVKphL03l4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr6fVKphL03l4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7Tr6fVKphL03l4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4_qKfVKphL03l4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4GqKfVKphL03l4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hqKfVKphL03l4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5IqKfVKphL03l4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-XIJxp1ml4imo.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-WIJxp1ml4imo.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7BGWIJxp1ml4imo.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-WIJxp1ml4imo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7H2WIJxp1ml4imo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7JGRIJxp1ml4imo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7KiRIJxp1ml4imo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-RIJxp1ml4imo.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + }, + { + "src": "http://fonts.gstatic.com/s/chivomono/v6/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7OaRIJxp1ml4imo.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Chivo Mono" + } + ] + }, + { + "name": "Chokokutai", + "fontFamily": "Chokokutai, system-ui", + "slug": "wp-font-lib-chokokutai", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chokokutai/v9/kmK4Zqw4HwvCeHGM8Fws9y7ypu1Kr7I.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chokokutai" + } + ] + }, + { + "name": "Chonburi", + "fontFamily": "Chonburi, system-ui", + "slug": "wp-font-lib-chonburi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/chonburi/v10/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Chonburi" + } + ] + }, + { + "name": "Cinzel", + "fontFamily": "Cinzel, serif", + "slug": "wp-font-lib-cinzel", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnTYrvDE5ZdqU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-uTnTYrvDE5ZdqU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-gjgTYrvDE5ZdqU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-jHgTYrvDE5ZdqU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-lbgTYrvDE5ZdqU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Cinzel" + }, + { + "src": "http://fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-n_gTYrvDE5ZdqU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Cinzel" + } + ] + }, + { + "name": "Cinzel Decorative", + "fontFamily": "Cinzel Decorative, system-ui", + "slug": "wp-font-lib-cinzel-decorative", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cinzel Decorative" + }, + { + "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cinzel Decorative" + }, + { + "src": "http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Cinzel Decorative" + } + ] + }, + { + "name": "Clicker Script", + "fontFamily": "Clicker Script, cursive", + "slug": "wp-font-lib-clicker-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Clicker Script" + } + ] + }, + { + "name": "Climate Crisis", + "fontFamily": "Climate Crisis, system-ui", + "slug": "wp-font-lib-climate-crisis", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/climatecrisis/v5/wEOpEB3AntNeKCPBVW9XOKlmp3AUgWFN1DvIvcM0gFp6jaUrGb7PsQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Climate Crisis" + } + ] + }, + { + "name": "Coda", + "fontFamily": "Coda, system-ui", + "slug": "wp-font-lib-coda", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8JUIMapaN39I.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Coda" + }, + { + "src": "http://fonts.gstatic.com/s/coda/v21/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Coda" + } + ] + }, + { + "name": "Coda Caption", + "fontFamily": "Coda Caption, sans-serif", + "slug": "wp-font-lib-coda-caption", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/codacaption/v19/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Coda Caption" + } + ] + }, + { + "name": "Codystar", + "fontFamily": "Codystar, system-ui", + "slug": "wp-font-lib-codystar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/codystar/v15/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Codystar" + }, + { + "src": "http://fonts.gstatic.com/s/codystar/v15/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Codystar" + } + ] + }, + { + "name": "Coiny", + "fontFamily": "Coiny, system-ui", + "slug": "wp-font-lib-coiny", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PXwbElSvO5Tc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Coiny" + } + ] + }, + { + "name": "Combo", + "fontFamily": "Combo, system-ui", + "slug": "wp-font-lib-combo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Combo" + } + ] + }, + { + "name": "Comfortaa", + "fontFamily": "Comfortaa, system-ui", + "slug": "wp-font-lib-comfortaa", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + }, + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + }, + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + }, + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + }, + { + "src": "http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Comfortaa" + } + ] + }, + { + "name": "Comforter", + "fontFamily": "Comforter, cursive", + "slug": "wp-font-lib-comforter", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comforter/v5/H4clBXOCl8nQnlaql3Qa6JG8iqeuag.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comforter" + } + ] + }, + { + "name": "Comforter Brush", + "fontFamily": "Comforter Brush, cursive", + "slug": "wp-font-lib-comforter-brush", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comforterbrush/v5/Y4GTYa1xVSggrfzZI5WMjxRaOz0jwLL9Th8YYA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comforter Brush" + } + ] + }, + { + "name": "Comic Neue", + "fontFamily": "Comic Neue, cursive", + "slug": "wp-font-lib-comic-neue", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_wHLwpteLwtHJlc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RTplUKylCNlcw_Q.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaFrEJDsxBrF37olUeD96_p4rFwIwJePw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_xHMwpteLwtHJlc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Comic Neue" + }, + { + "src": "http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RXp5UKylCNlcw_Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Comic Neue" + } + ] + }, + { + "name": "Coming Soon", + "fontFamily": "Coming Soon, cursive", + "slug": "wp-font-lib-coming-soon", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Coming Soon" + } + ] + }, + { + "name": "Comme", + "fontFamily": "Comme, sans-serif", + "slug": "wp-font-lib-comme", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cBr644fWsRO9w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcFr644fWsRO9w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zu8Fr644fWsRO9w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z5cFr644fWsRO9w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1z18Fr644fWsRO9w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zO8Zr644fWsRO9w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zAsZr644fWsRO9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zZcZr644fWsRO9w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Comme" + }, + { + "src": "http://fonts.gstatic.com/s/comme/v2/8QIUdirKhMbn-uG1kHz0MgviDe1zTMZr644fWsRO9w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Comme" + } + ] + }, + { + "name": "Commissioner", + "fontFamily": "Commissioner, sans-serif", + "slug": "wp-font-lib-commissioner", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNcGPe7Fu0jUdk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENdGPe7Fu0jUdk.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTJ1dGPe7Fu0jUdk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTMNdGPe7Fu0jUdk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTPFdGPe7Fu0jUdk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTB1aGPe7Fu0jUdk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTCRaGPe7Fu0jUdk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTENaGPe7Fu0jUdk.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Commissioner" + }, + { + "src": "http://fonts.gstatic.com/s/commissioner/v20/tDaH2o2WnlgI0FNDgduEk4jAhwgumbU1SVfU5BD8OuRL8OstC6KOhgvBYWSFJ-Mgdrgiju6fF8meZm0rk4eF-ZugTGpaGPe7Fu0jUdk.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Commissioner" + } + ] + }, + { + "name": "Concert One", + "fontFamily": "Concert One, system-ui", + "slug": "wp-font-lib-concert-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/concertone/v17/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Concert One" + } + ] + }, + { + "name": "Condiment", + "fontFamily": "Condiment, cursive", + "slug": "wp-font-lib-condiment", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/condiment/v20/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Condiment" + } + ] + }, + { + "name": "Content", + "fontFamily": "Content, system-ui", + "slug": "wp-font-lib-content", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/content/v24/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Content" + }, + { + "src": "http://fonts.gstatic.com/s/content/v24/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Content" + } + ] + }, + { + "name": "Contrail One", + "fontFamily": "Contrail One, system-ui", + "slug": "wp-font-lib-contrail-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/contrailone/v15/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Contrail One" + } + ] + }, + { + "name": "Convergence", + "fontFamily": "Convergence, sans-serif", + "slug": "wp-font-lib-convergence", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Convergence" + } + ] + }, + { + "name": "Cookie", + "fontFamily": "Cookie, cursive", + "slug": "wp-font-lib-cookie", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cookie/v17/syky-y18lb0tSbfNlQCT9tPdpw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cookie" + } + ] + }, + { + "name": "Copse", + "fontFamily": "Copse, serif", + "slug": "wp-font-lib-copse", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb0djHkihUb-A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Copse" + } + ] + }, + { + "name": "Corben", + "fontFamily": "Corben, system-ui", + "slug": "wp-font-lib-corben", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/corben/v19/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Corben" + }, + { + "src": "http://fonts.gstatic.com/s/corben/v19/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Corben" + } + ] + }, + { + "name": "Corinthia", + "fontFamily": "Corinthia, cursive", + "slug": "wp-font-lib-corinthia", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/corinthia/v9/wEO_EBrAnchaJyPMHE0FUfAL3EsHiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Corinthia" + }, + { + "src": "http://fonts.gstatic.com/s/corinthia/v9/wEO6EBrAnchaJyPMHE097d8v1GAbgbLXQA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Corinthia" + } + ] + }, + { + "name": "Cormorant", + "fontFamily": "Cormorant, serif", + "slug": "wp-font-lib-cormorant", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFk9TQ7Rg7A2uwYs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTQ7Rg7A2uwYs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFiNTQ7Rg7A2uwYs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFs9UQ7Rg7A2uwYs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFvZUQ7Rg7A2uwYs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQ9fdq6C-r0YvxdA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQq_dq6C-r0YvxdA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQmfdq6C-r0YvxdA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQdfBq6C-r0YvxdA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cormorant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorant/v21/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQTPBq6C-r0YvxdA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cormorant" + } + ] + }, + { + "name": "Cormorant Garamond", + "fontFamily": "Cormorant Garamond, serif", + "slug": "wp-font-lib-cormorant-garamond", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cormorant Garamond" + } + ] + }, + { + "name": "Cormorant Infant", + "fontFamily": "Cormorant Infant, serif", + "slug": "wp-font-lib-cormorant-infant", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant Infant" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cormorant Infant" + } + ] + }, + { + "name": "Cormorant SC", + "fontFamily": "Cormorant SC, serif", + "slug": "wp-font-lib-cormorant-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantsc/v18/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant SC" + } + ] + }, + { + "name": "Cormorant Unicase", + "fontFamily": "Cormorant Unicase, serif", + "slug": "wp-font-lib-cormorant-unicase", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant Unicase" + } + ] + }, + { + "name": "Cormorant Upright", + "fontFamily": "Cormorant Upright, serif", + "slug": "wp-font-lib-cormorant-upright", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + }, + { + "src": "http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cormorant Upright" + } + ] + }, + { + "name": "Courgette", + "fontFamily": "Courgette, cursive", + "slug": "wp-font-lib-courgette", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/courgette/v13/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Courgette" + } + ] + }, + { + "name": "Courier Prime", + "fontFamily": "Courier Prime, monospace", + "slug": "wp-font-lib-courier-prime", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/courierprime/v7/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Courier Prime" + }, + { + "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4n0q2lgwslOqpF_6gQ8kELawRpX837pvjxPA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Courier Prime" + }, + { + "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-fVqvHoJXw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Courier Prime" + }, + { + "src": "http://fonts.gstatic.com/s/courierprime/v7/u-4i0q2lgwslOqpF_6gQ8kELawRR4-LfrtPtNXyeAg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Courier Prime" + } + ] + }, + { + "name": "Cousine", + "fontFamily": "Cousine, monospace", + "slug": "wp-font-lib-cousine", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cousine/v25/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cousine" + }, + { + "src": "http://fonts.gstatic.com/s/cousine/v25/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cousine" + }, + { + "src": "http://fonts.gstatic.com/s/cousine/v25/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cousine" + }, + { + "src": "http://fonts.gstatic.com/s/cousine/v25/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cousine" + } + ] + }, + { + "name": "Coustard", + "fontFamily": "Coustard, serif", + "slug": "wp-font-lib-coustard", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Coustard" + }, + { + "src": "http://fonts.gstatic.com/s/coustard/v16/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Coustard" + } + ] + }, + { + "name": "Covered By Your Grace", + "fontFamily": "Covered By Your Grace, cursive", + "slug": "wp-font-lib-covered-by-your-grace", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/coveredbyyourgrace/v15/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Covered By Your Grace" + } + ] + }, + { + "name": "Crafty Girls", + "fontFamily": "Crafty Girls, cursive", + "slug": "wp-font-lib-crafty-girls", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crafty Girls" + } + ] + }, + { + "name": "Creepster", + "fontFamily": "Creepster, system-ui", + "slug": "wp-font-lib-creepster", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Creepster" + } + ] + }, + { + "name": "Crete Round", + "fontFamily": "Crete Round, serif", + "slug": "wp-font-lib-crete-round", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/creteround/v14/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crete Round" + }, + { + "src": "http://fonts.gstatic.com/s/creteround/v14/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Crete Round" + } + ] + }, + { + "name": "Crimson Pro", + "fontFamily": "Crimson Pro, serif", + "slug": "wp-font-lib-crimson-pro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + }, + { + "src": "http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Crimson Pro" + } + ] + }, + { + "name": "Crimson Text", + "fontFamily": "Crimson Text, serif", + "slug": "wp-font-lib-crimson-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Crimson Text" + }, + { + "src": "http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Crimson Text" + } + ] + }, + { + "name": "Croissant One", + "fontFamily": "Croissant One, system-ui", + "slug": "wp-font-lib-croissant-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/croissantone/v21/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Croissant One" + } + ] + }, + { + "name": "Crushed", + "fontFamily": "Crushed, system-ui", + "slug": "wp-font-lib-crushed", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/crushed/v25/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Crushed" + } + ] + }, + { + "name": "Cuprum", + "fontFamily": "Cuprum, sans-serif", + "slug": "wp-font-lib-cuprum", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6ZjzSJjQjgnU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg9f6ZjzSJjQjgnU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgzv9ZjzSJjQjgnU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmgwL9ZjzSJjQjgnU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25jn_YIhYmknUPEA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25vH_YIhYmknUPEA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25UHjYIhYmknUPEA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Cuprum" + }, + { + "src": "http://fonts.gstatic.com/s/cuprum/v25/dg47_pLmvrkcOkBNI_FMh0j91rkhli25aXjYIhYmknUPEA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Cuprum" + } + ] + }, + { + "name": "Cute Font", + "fontFamily": "Cute Font, system-ui", + "slug": "wp-font-lib-cute-font", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cutefont/v20/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cute Font" + } + ] + }, + { + "name": "Cutive", + "fontFamily": "Cutive, serif", + "slug": "wp-font-lib-cutive", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cutive/v17/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cutive" + } + ] + }, + { + "name": "Cutive Mono", + "fontFamily": "Cutive Mono, monospace", + "slug": "wp-font-lib-cutive-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/cutivemono/v15/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Cutive Mono" + } + ] + }, + { + "name": "DM Mono", + "fontFamily": "DM Mono, monospace", + "slug": "wp-font-lib-dm-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTR7PB1QTsUX8KYvrGyIYSnbKX9Rlk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTT7PB1QTsUX8KYth-orYataIf4VllXuA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTW7PB1QTsUX8KYth-QAa6JYKzkXw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTR7PB1QTsUX8KYvumzIYSnbKX9Rlk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "DM Mono" + }, + { + "src": "http://fonts.gstatic.com/s/dmmono/v11/aFTT7PB1QTsUX8KYth-o9YetaIf4VllXuA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "DM Mono" + } + ] + }, + { + "name": "DM Sans", + "fontFamily": "DM Sans, sans-serif", + "slug": "wp-font-lib-dm-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Fp2ywxg089UriCZaIGDWCBl0O8Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZaw7BymDnYS-Cjk6Q.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriASitOB-sClQX6Cg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "DM Sans" + }, + { + "src": "http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZawpBqmDnYS-Cjk6Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "DM Sans" + } + ] + }, + { + "name": "DM Serif Display", + "fontFamily": "DM Serif Display, serif", + "slug": "wp-font-lib-dm-serif-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DM Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/dmserifdisplay/v12/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "DM Serif Display" + } + ] + }, + { + "name": "DM Serif Text", + "fontFamily": "DM Serif Text, serif", + "slug": "wp-font-lib-dm-serif-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DM Serif Text" + }, + { + "src": "http://fonts.gstatic.com/s/dmseriftext/v12/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "DM Serif Text" + } + ] + }, + { + "name": "Damion", + "fontFamily": "Damion, cursive", + "slug": "wp-font-lib-damion", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/damion/v14/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Damion" + } + ] + }, + { + "name": "Dancing Script", + "fontFamily": "Dancing Script, cursive", + "slug": "wp-font-lib-dancing-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTeB9ptDqpw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dancing Script" + }, + { + "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTeB9ptDqpw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Dancing Script" + }, + { + "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTeB9ptDqpw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Dancing Script" + }, + { + "src": "http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTeB9ptDqpw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Dancing Script" + } + ] + }, + { + "name": "Dangrek", + "fontFamily": "Dangrek, system-ui", + "slug": "wp-font-lib-dangrek", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dangrek/v26/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dangrek" + } + ] + }, + { + "name": "Darker Grotesque", + "fontFamily": "Darker Grotesque, sans-serif", + "slug": "wp-font-lib-darker-grotesque", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXxpqn7y-XFyZFUB.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXw3qn7y-XFyZFUB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXwFqn7y-XFyZFUB.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXzprX7y-XFyZFUB.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXzQrX7y-XFyZFUB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXy3rX7y-XFyZFUB.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + }, + { + "src": "http://fonts.gstatic.com/s/darkergrotesque/v8/U9MK6cuh-mLQlC4BKCtayOfARkSVgb381b-W8-QDqXyerX7y-XFyZFUB.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Darker Grotesque" + } + ] + }, + { + "name": "Darumadrop One", + "fontFamily": "Darumadrop One, system-ui", + "slug": "wp-font-lib-darumadrop-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/darumadropone/v7/cY9cfjeIW11dpCKgRLi675a87IhHBJOxZQPp.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Darumadrop One" + } + ] + }, + { + "name": "David Libre", + "fontFamily": "David Libre, serif", + "slug": "wp-font-lib-david-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "David Libre" + }, + { + "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "David Libre" + }, + { + "src": "http://fonts.gstatic.com/s/davidlibre/v14/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "David Libre" + } + ] + }, + { + "name": "Dawning of a New Day", + "fontFamily": "Dawning of a New Day, cursive", + "slug": "wp-font-lib-dawning-of-a-new-day", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dawningofanewday/v16/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dawning of a New Day" + } + ] + }, + { + "name": "Days One", + "fontFamily": "Days One, sans-serif", + "slug": "wp-font-lib-days-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/daysone/v14/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Days One" + } + ] + }, + { + "name": "Dekko", + "fontFamily": "Dekko, cursive", + "slug": "wp-font-lib-dekko", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dekko/v19/46khlb_wWjfSrttFR0vsfl1B.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dekko" + } + ] + }, + { + "name": "Dela Gothic One", + "fontFamily": "Dela Gothic One, system-ui", + "slug": "wp-font-lib-dela-gothic-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/delagothicone/v10/~ChEKD0RlbGEgR290aGljIE9uZSAAKgQIARgB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dela Gothic One" + } + ] + }, + { + "name": "Delicious Handrawn", + "fontFamily": "Delicious Handrawn, cursive", + "slug": "wp-font-lib-delicious-handrawn", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/delicioushandrawn/v4/wlpsgx_NAUNkpmKQifcxkQchDFo3fJ113JpDd6u3AQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Delicious Handrawn" + } + ] + }, + { + "name": "Delius", + "fontFamily": "Delius, cursive", + "slug": "wp-font-lib-delius", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/delius/v15/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Delius" + } + ] + }, + { + "name": "Delius Swash Caps", + "fontFamily": "Delius Swash Caps, cursive", + "slug": "wp-font-lib-delius-swash-caps", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/deliusswashcaps/v19/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Delius Swash Caps" + } + ] + }, + { + "name": "Delius Unicase", + "fontFamily": "Delius Unicase, cursive", + "slug": "wp-font-lib-delius-unicase", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/deliusunicase/v26/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Delius Unicase" + }, + { + "src": "http://fonts.gstatic.com/s/deliusunicase/v26/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Delius Unicase" + } + ] + }, + { + "name": "Della Respira", + "fontFamily": "Della Respira, serif", + "slug": "wp-font-lib-della-respira", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dellarespira/v18/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Della Respira" + } + ] + }, + { + "name": "Denk One", + "fontFamily": "Denk One, sans-serif", + "slug": "wp-font-lib-denk-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/denkone/v17/dg4m_pzhrqcFb2IzROtHpbglShon.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Denk One" + } + ] + }, + { + "name": "Devonshire", + "fontFamily": "Devonshire, cursive", + "slug": "wp-font-lib-devonshire", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/devonshire/v22/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Devonshire" + } + ] + }, + { + "name": "Dhurjati", + "fontFamily": "Dhurjati, sans-serif", + "slug": "wp-font-lib-dhurjati", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dhurjati/v20/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dhurjati" + } + ] + }, + { + "name": "Didact Gothic", + "fontFamily": "Didact Gothic, sans-serif", + "slug": "wp-font-lib-didact-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/didactgothic/v20/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Didact Gothic" + } + ] + }, + { + "name": "Diplomata", + "fontFamily": "Diplomata, system-ui", + "slug": "wp-font-lib-diplomata", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/diplomata/v27/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Diplomata" + } + ] + }, + { + "name": "Diplomata SC", + "fontFamily": "Diplomata SC, system-ui", + "slug": "wp-font-lib-diplomata-sc", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/diplomatasc/v23/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Diplomata SC" + } + ] + }, + { + "name": "Do Hyeon", + "fontFamily": "Do Hyeon, sans-serif", + "slug": "wp-font-lib-do-hyeon", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dohyeon/v16/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Do Hyeon" + } + ] + }, + { + "name": "Dokdo", + "fontFamily": "Dokdo, cursive", + "slug": "wp-font-lib-dokdo", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dokdo/v15/esDf315XNuCBLxLo4NaMlKcH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dokdo" + } + ] + }, + { + "name": "Domine", + "fontFamily": "Domine, serif", + "slug": "wp-font-lib-domine", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Domine" + }, + { + "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X0DAI10VErGuW8Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Domine" + }, + { + "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X6zHI10VErGuW8Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Domine" + }, + { + "src": "http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X5XHI10VErGuW8Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Domine" + } + ] + }, + { + "name": "Donegal One", + "fontFamily": "Donegal One, serif", + "slug": "wp-font-lib-donegal-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/donegalone/v21/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Donegal One" + } + ] + }, + { + "name": "Dongle", + "fontFamily": "Dongle, sans-serif", + "slug": "wp-font-lib-dongle", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dongle/v9/sJoG3Ltdjt6VPkqeEcxrYjWNzXvVPA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Dongle" + }, + { + "src": "http://fonts.gstatic.com/s/dongle/v9/sJoF3Ltdjt6VPkqmveRPah6RxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dongle" + }, + { + "src": "http://fonts.gstatic.com/s/dongle/v9/sJoG3Ltdjt6VPkqeActrYjWNzXvVPA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Dongle" + } + ] + }, + { + "name": "Doppio One", + "fontFamily": "Doppio One, sans-serif", + "slug": "wp-font-lib-doppio-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Doppio One" + } + ] + }, + { + "name": "Dorsa", + "fontFamily": "Dorsa, sans-serif", + "slug": "wp-font-lib-dorsa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dorsa/v23/yYLn0hjd0OGwqo493XCFxAnQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dorsa" + } + ] + }, + { + "name": "Dosis", + "fontFamily": "Dosis, sans-serif", + "slug": "wp-font-lib-dosis", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Dosis" + }, + { + "src": "http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Dosis" + } + ] + }, + { + "name": "DotGothic16", + "fontFamily": "DotGothic16, sans-serif", + "slug": "wp-font-lib-dotgothic16", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dotgothic16/v15/v6-QGYjBJFKgyw5nSoDAGE7L435YPFrT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DotGothic16" + } + ] + }, + { + "name": "Dr Sugiyama", + "fontFamily": "Dr Sugiyama, cursive", + "slug": "wp-font-lib-dr-sugiyama", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/drsugiyama/v23/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dr Sugiyama" + } + ] + }, + { + "name": "Duru Sans", + "fontFamily": "Duru Sans, sans-serif", + "slug": "wp-font-lib-duru-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/durusans/v20/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Duru Sans" + } + ] + }, + { + "name": "DynaPuff", + "fontFamily": "DynaPuff, system-ui", + "slug": "wp-font-lib-dynapuff", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSxYu6YjrSRs4wn8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "DynaPuff" + }, + { + "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSyQu6YjrSRs4wn8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "DynaPuff" + }, + { + "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS8gp6YjrSRs4wn8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "DynaPuff" + }, + { + "src": "http://fonts.gstatic.com/s/dynapuff/v4/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS_Ep6YjrSRs4wn8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "DynaPuff" + } + ] + }, + { + "name": "Dynalight", + "fontFamily": "Dynalight, system-ui", + "slug": "wp-font-lib-dynalight", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/dynalight/v18/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Dynalight" + } + ] + }, + { + "name": "EB Garamond", + "fontFamily": "EB Garamond, serif", + "slug": "wp-font-lib-eb-garamond", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUA4V-e6yHgQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUA4V-e6yHgQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUA4V-e6yHgQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUA4V-e6yHgQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUA4V-e6yHgQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI96WamXgXFI.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI96WamXgXFI.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR496WamXgXFI.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR496WamXgXFI.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + }, + { + "src": "http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R496WamXgXFI.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "EB Garamond" + } + ] + }, + { + "name": "Eagle Lake", + "fontFamily": "Eagle Lake, cursive", + "slug": "wp-font-lib-eagle-lake", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eaglelake/v20/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Eagle Lake" + } + ] + }, + { + "name": "East Sea Dokdo", + "fontFamily": "East Sea Dokdo, cursive", + "slug": "wp-font-lib-east-sea-dokdo", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eastseadokdo/v20/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "East Sea Dokdo" + } + ] + }, + { + "name": "Eater", + "fontFamily": "Eater, system-ui", + "slug": "wp-font-lib-eater", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eater/v21/mtG04_FCK7bOvpu2u3FwsXsR.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Eater" + } + ] + }, + { + "name": "Economica", + "fontFamily": "Economica, sans-serif", + "slug": "wp-font-lib-economica", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/economica/v13/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Economica" + }, + { + "src": "http://fonts.gstatic.com/s/economica/v13/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Economica" + }, + { + "src": "http://fonts.gstatic.com/s/economica/v13/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Economica" + }, + { + "src": "http://fonts.gstatic.com/s/economica/v13/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Economica" + } + ] + }, + { + "name": "Eczar", + "fontFamily": "Eczar, serif", + "slug": "wp-font-lib-eczar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXHd6WqTIVKWJKWg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Eczar" + }, + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXL96WqTIVKWJKWg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Eczar" + }, + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXw9mWqTIVKWJKWg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Eczar" + }, + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDX-tmWqTIVKWJKWg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Eczar" + }, + { + "src": "http://fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXndmWqTIVKWJKWg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Eczar" + } + ] + }, + { + "name": "Edu NSW ACT Foundation", + "fontFamily": "Edu NSW ACT Foundation, cursive", + "slug": "wp-font-lib-edu-nsw-act-foundation", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9tovGLeC-sfguJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu NSW ACT Foundation" + }, + { + "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9fovGLeC-sfguJ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu NSW ACT Foundation" + }, + { + "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-zpfGLeC-sfguJ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu NSW ACT Foundation" + }, + { + "src": "http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-KpfGLeC-sfguJ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu NSW ACT Foundation" + } + ] + }, + { + "name": "Edu QLD Beginner", + "fontFamily": "Edu QLD Beginner, cursive", + "slug": "wp-font-lib-edu-qld-beginner", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE4E3oebi6vyVWCN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu QLD Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE423oebi6vyVWCN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu QLD Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7a2Yebi6vyVWCN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu QLD Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduqldbeginner/v3/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7j2Yebi6vyVWCN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu QLD Beginner" + } + ] + }, + { + "name": "Edu SA Beginner", + "fontFamily": "Edu SA Beginner, cursive", + "slug": "wp-font-lib-edu-sa-beginner", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9989fo1yBydUEDs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu SA Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9-09fo1yBydUEDs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu SA Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9wE6fo1yBydUEDs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu SA Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edusabeginner/v3/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9zg6fo1yBydUEDs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu SA Beginner" + } + ] + }, + { + "name": "Edu TAS Beginner", + "fontFamily": "Edu TAS Beginner, cursive", + "slug": "wp-font-lib-edu-tas-beginner", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HwemkrBWRhvk02.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu TAS Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HCemkrBWRhvk02.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu TAS Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EufWkrBWRhvk02.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu TAS Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/edutasbeginner/v3/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EXfWkrBWRhvk02.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu TAS Beginner" + } + ] + }, + { + "name": "Edu VIC WA NT Beginner", + "fontFamily": "Edu VIC WA NT Beginner, cursive", + "slug": "wp-font-lib-edu-vic-wa-nt-beginner", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OXlPmFXwnpkeGR.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Edu VIC WA NT Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OllPmFXwnpkeGR.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Edu VIC WA NT Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-NJk_mFXwnpkeGR.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Edu VIC WA NT Beginner" + }, + { + "src": "http://fonts.gstatic.com/s/eduvicwantbeginner/v4/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-Nwk_mFXwnpkeGR.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Edu VIC WA NT Beginner" + } + ] + }, + { + "name": "El Messiri", + "fontFamily": "El Messiri, sans-serif", + "slug": "wp-font-lib-el-messiri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe65ghj3OoapG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "El Messiri" + }, + { + "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXCe65ghj3OoapG.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "El Messiri" + }, + { + "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUufK5ghj3OoapG.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "El Messiri" + }, + { + "src": "http://fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUXfK5ghj3OoapG.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "El Messiri" + } + ] + }, + { + "name": "Electrolize", + "fontFamily": "Electrolize, sans-serif", + "slug": "wp-font-lib-electrolize", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/electrolize/v14/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Electrolize" + } + ] + }, + { + "name": "Elsie", + "fontFamily": "Elsie, system-ui", + "slug": "wp-font-lib-elsie", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/elsie/v13/BCanqZABrez54yYu9slAeLgX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Elsie" + }, + { + "src": "http://fonts.gstatic.com/s/elsie/v13/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Elsie" + } + ] + }, + { + "name": "Elsie Swash Caps", + "fontFamily": "Elsie Swash Caps, system-ui", + "slug": "wp-font-lib-elsie-swash-caps", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Elsie Swash Caps" + }, + { + "src": "http://fonts.gstatic.com/s/elsieswashcaps/v21/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Elsie Swash Caps" + } + ] + }, + { + "name": "Emblema One", + "fontFamily": "Emblema One, system-ui", + "slug": "wp-font-lib-emblema-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Emblema One" + } + ] + }, + { + "name": "Emilys Candy", + "fontFamily": "Emilys Candy, system-ui", + "slug": "wp-font-lib-emilys-candy", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/emilyscandy/v14/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Emilys Candy" + } + ] + }, + { + "name": "Encode Sans", + "fontFamily": "Encode Sans, sans-serif", + "slug": "wp-font-lib-encode-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHiZtWP7FJCt2c.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHjZtWP7FJCt2c.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGD_jZtWP7FJCt2c.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjZtWP7FJCt2c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGFPjZtWP7FJCt2c.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGL_kZtWP7FJCt2c.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGIbkZtWP7FJCt2c.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHkZtWP7FJCt2c.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + }, + { + "src": "http://fonts.gstatic.com/s/encodesans/v19/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGMjkZtWP7FJCt2c.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans" + } + ] + }, + { + "name": "Encode Sans Condensed", + "fontFamily": "Encode Sans Condensed, sans-serif", + "slug": "wp-font-lib-encode-sans-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans Condensed" + } + ] + }, + { + "name": "Encode Sans Expanded", + "fontFamily": "Encode Sans Expanded, sans-serif", + "slug": "wp-font-lib-encode-sans-expanded", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesansexpanded/v11/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans Expanded" + } + ] + }, + { + "name": "Encode Sans SC", + "fontFamily": "Encode Sans SC, sans-serif", + "slug": "wp-font-lib-encode-sans-sc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhn8c9NOEEClIc.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhm8c9NOEEClIc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HCZm8c9NOEEClIc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhm8c9NOEEClIc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HEpm8c9NOEEClIc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HKZh8c9NOEEClIc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HJ9h8c9NOEEClIc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhh8c9NOEEClIc.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HNFh8c9NOEEClIc.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans SC" + } + ] + }, + { + "name": "Encode Sans Semi Condensed", + "fontFamily": "Encode Sans Semi Condensed, sans-serif", + "slug": "wp-font-lib-encode-sans-semi-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Condensed" + } + ] + }, + { + "name": "Encode Sans Semi Expanded", + "fontFamily": "Encode Sans Semi Expanded, sans-serif", + "slug": "wp-font-lib-encode-sans-semi-expanded", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + }, + { + "src": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v19/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Encode Sans Semi Expanded" + } + ] + }, + { + "name": "Engagement", + "fontFamily": "Engagement, cursive", + "slug": "wp-font-lib-engagement", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/engagement/v22/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Engagement" + } + ] + }, + { + "name": "Englebert", + "fontFamily": "Englebert, sans-serif", + "slug": "wp-font-lib-englebert", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/englebert/v17/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Englebert" + } + ] + }, + { + "name": "Enriqueta", + "fontFamily": "Enriqueta, serif", + "slug": "wp-font-lib-enriqueta", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/enriqueta/v15/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Enriqueta" + }, + { + "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Enriqueta" + }, + { + "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Enriqueta" + }, + { + "src": "http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Enriqueta" + } + ] + }, + { + "name": "Ephesis", + "fontFamily": "Ephesis, cursive", + "slug": "wp-font-lib-ephesis", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ephesis/v7/uU9PCBUS8IerL2VG7xPb3vyHmlI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ephesis" + } + ] + }, + { + "name": "Epilogue", + "fontFamily": "Epilogue, sans-serif", + "slug": "wp-font-lib-epilogue", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDLiDJXVigHPVA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDPiDJXVigHPVA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXbjPiDJXVigHPVA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiDJXVigHPVA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXAjPiDJXVigHPVA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX7jTiDJXVigHPVA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiDJXVigHPVA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiDJXVigHPVA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXmTTiDJXVigHPVA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKTp_RqATfVHNU.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKT5_RqATfVHNU.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HBUT5_RqATfVHNU.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKT5_RqATfVHNU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HA4T5_RqATfVHNU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDUSJ_RqATfVHNU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDtSJ_RqATfVHNU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKSJ_RqATfVHNU.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Epilogue" + }, + { + "src": "http://fonts.gstatic.com/s/epilogue/v17/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCjSJ_RqATfVHNU.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Epilogue" + } + ] + }, + { + "name": "Erica One", + "fontFamily": "Erica One, system-ui", + "slug": "wp-font-lib-erica-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ericaone/v23/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Erica One" + } + ] + }, + { + "name": "Esteban", + "fontFamily": "Esteban, serif", + "slug": "wp-font-lib-esteban", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/esteban/v15/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Esteban" + } + ] + }, + { + "name": "Estonia", + "fontFamily": "Estonia, cursive", + "slug": "wp-font-lib-estonia", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/estonia/v9/7Au_p_4ijSecA1yHCCL8zkwMIFg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Estonia" + } + ] + }, + { + "name": "Euphoria Script", + "fontFamily": "Euphoria Script, cursive", + "slug": "wp-font-lib-euphoria-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/euphoriascript/v16/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Euphoria Script" + } + ] + }, + { + "name": "Ewert", + "fontFamily": "Ewert, system-ui", + "slug": "wp-font-lib-ewert", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ewert/v21/va9I4kzO2tFODYBvS-J3kbDP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ewert" + } + ] + }, + { + "name": "Exo", + "fontFamily": "Exo, sans-serif", + "slug": "wp-font-lib-exo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwNsOl4p5Is.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwNsOl4p5Is.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwNsOl4p5Is.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwNsOl4p5Is.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwNsOl4p5Is.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwNsOl4p5Is.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwNsOl4p5Is.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwNsOl4p5Is.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwNsOl4p5Is.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040FmPnws9Iu-uA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmPnws9Iu-uA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmPnws9Iu-uA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040BmPnws9Iu-uA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t00UBmPnws9Iu-uA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmPnws9Iu-uA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmPnws9Iu-uA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmPnws9Iu-uA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Exo" + }, + { + "src": "http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmPnws9Iu-uA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Exo" + } + ] + }, + { + "name": "Exo 2", + "fontFamily": "Exo 2, sans-serif", + "slug": "wp-font-lib-exo-2", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPtq-rpvLpQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPtq-rpvLpQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPtq-rpvLpQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPtq-rpvLpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPtq-rpvLpQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPtq-rpvLpQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPtq-rpvLpQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPtq-rpvLpQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPtq-rpvLpQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6jJ7bpQBL.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6jJ7bpQBL.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6jJ7bpQBL.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6jJ7bpQBL.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6jJ7bpQBL.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6jJ7bpQBL.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6jJ7bpQBL.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6jJ7bpQBL.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Exo 2" + }, + { + "src": "http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6jJ7bpQBL.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Exo 2" + } + ] + }, + { + "name": "Expletus Sans", + "fontFamily": "Expletus Sans, system-ui", + "slug": "wp-font-lib-expletus-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2s1oFQTcXfMm.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSq2s1oFQTcXfMm.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaRG3c1oFQTcXfMm.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaR_3c1oFQTcXfMm.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmSUrHwD-WOMmKKY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmRcrHwD-WOMmKKY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmfssHwD-WOMmKKY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Expletus Sans" + }, + { + "src": "http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmcIsHwD-WOMmKKY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Expletus Sans" + } + ] + }, + { + "name": "Explora", + "fontFamily": "Explora, cursive", + "slug": "wp-font-lib-explora", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/explora/v7/tsstApxFfjUH4wrvc1qPonC3vqc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Explora" + } + ] + }, + { + "name": "Fahkwang", + "fontFamily": "Fahkwang, sans-serif", + "slug": "wp-font-lib-fahkwang", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fahkwang" + }, + { + "src": "http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fahkwang" + } + ] + }, + { + "name": "Familjen Grotesk", + "fontFamily": "Familjen Grotesk, sans-serif", + "slug": "wp-font-lib-familjen-grotesk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMGJaSztc1jcEYq2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMG7aSztc1jcEYq2.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFXbiztc1jcEYq2.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFubiztc1jcEYq2.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKsSueVz-FJq2Rv4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKvaueVz-FJq2Rv4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKhqpeVz-FJq2Rv4.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Familjen Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/familjengrotesk/v8/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKiOpeVz-FJq2Rv4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Familjen Grotesk" + } + ] + }, + { + "name": "Fanwood Text", + "fontFamily": "Fanwood Text, serif", + "slug": "wp-font-lib-fanwood-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fanwood Text" + }, + { + "src": "http://fonts.gstatic.com/s/fanwoodtext/v15/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fanwood Text" + } + ] + }, + { + "name": "Farro", + "fontFamily": "Farro, sans-serif", + "slug": "wp-font-lib-farro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Farro" + }, + { + "src": "http://fonts.gstatic.com/s/farro/v14/i7dEIFl3byGNHZVNHLq2cV5d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Farro" + }, + { + "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Farro" + }, + { + "src": "http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Farro" + } + ] + }, + { + "name": "Farsan", + "fontFamily": "Farsan, system-ui", + "slug": "wp-font-lib-farsan", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/farsan/v19/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Farsan" + } + ] + }, + { + "name": "Fascinate", + "fontFamily": "Fascinate, system-ui", + "slug": "wp-font-lib-fascinate", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fascinate/v21/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fascinate" + } + ] + }, + { + "name": "Fascinate Inline", + "fontFamily": "Fascinate Inline, system-ui", + "slug": "wp-font-lib-fascinate-inline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fascinateinline/v22/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fascinate Inline" + } + ] + }, + { + "name": "Faster One", + "fontFamily": "Faster One, system-ui", + "slug": "wp-font-lib-faster-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fasterone/v19/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Faster One" + } + ] + }, + { + "name": "Fasthand", + "fontFamily": "Fasthand, system-ui", + "slug": "wp-font-lib-fasthand", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fasthand/v26/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fasthand" + } + ] + }, + { + "name": "Fauna One", + "fontFamily": "Fauna One, serif", + "slug": "wp-font-lib-fauna-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/faunaone/v15/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fauna One" + } + ] + }, + { + "name": "Faustina", + "fontFamily": "Faustina, serif", + "slug": "wp-font-lib-faustina", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHls3IEvGVWWe8tbEg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvGVWWe8tbEg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvGVWWe8tbEg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvGVWWe8tbEg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvGVWWe8tbEg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsAoYvGVWWe8tbEg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsKZWl-SWc5LEnoF.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-SWc5LEnoF.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-SWc5LEnoF.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-SWc5LEnoF.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-SWc5LEnoF.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Faustina" + }, + { + "src": "http://fonts.gstatic.com/s/faustina/v20/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsJHXV-SWc5LEnoF.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Faustina" + } + ] + }, + { + "name": "Federant", + "fontFamily": "Federant, system-ui", + "slug": "wp-font-lib-federant", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/federant/v25/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Federant" + } + ] + }, + { + "name": "Federo", + "fontFamily": "Federo, sans-serif", + "slug": "wp-font-lib-federo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Federo" + } + ] + }, + { + "name": "Felipa", + "fontFamily": "Felipa, cursive", + "slug": "wp-font-lib-felipa", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/felipa/v20/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Felipa" + } + ] + }, + { + "name": "Fenix", + "fontFamily": "Fenix, serif", + "slug": "wp-font-lib-fenix", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5ostKzAFvs8o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fenix" + } + ] + }, + { + "name": "Festive", + "fontFamily": "Festive, cursive", + "slug": "wp-font-lib-festive", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/festive/v7/cY9Ffj6KX1xcoDWhFtfgy9HTkak.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Festive" + } + ] + }, + { + "name": "Figtree", + "fontFamily": "Figtree, sans-serif", + "slug": "wp-font-lib-figtree", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5ewkEU4HTy.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5ewkEU4HTy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5ewkEU4HTy.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15ewkEU4HTy.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15ewkEU4HTy.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_f_R15ewkEU4HTy.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15ewkEU4HTy.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A-gdyEU25WTybO8.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A7YdyEU25WTybO8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A4QdyEU25WTybO8.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A2gayEU25WTybO8.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A1EayEU25WTybO8.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3AzYayEU25WTybO8.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Figtree" + }, + { + "src": "http://fonts.gstatic.com/s/figtree/v4/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3Ax8ayEU25WTybO8.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Figtree" + } + ] + }, + { + "name": "Finger Paint", + "fontFamily": "Finger Paint, system-ui", + "slug": "wp-font-lib-finger-paint", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fingerpaint/v15/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Finger Paint" + } + ] + }, + { + "name": "Finlandica", + "fontFamily": "Finlandica, sans-serif", + "slug": "wp-font-lib-finlandica", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19A7rEjx9i5ss3a3.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19AJrEjx9i5ss3a3.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dlq0jx9i5ss3a3.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dcq0jx9i5ss3a3.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz76Cy_CpOtma3uNQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz75Ky_CpOtma3uNQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz7361_CpOtma3uNQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Finlandica" + }, + { + "src": "http://fonts.gstatic.com/s/finlandica/v8/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz70e1_CpOtma3uNQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Finlandica" + } + ] + }, + { + "name": "Fira Code", + "fontFamily": "Fira Code, monospace", + "slug": "wp-font-lib-fira-code", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fira Code" + }, + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Code" + }, + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Code" + }, + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fira Code" + }, + { + "src": "http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Code" + } + ] + }, + { + "name": "Fira Mono", + "fontFamily": "Fira Mono, monospace", + "slug": "wp-font-lib-fira-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Mono" + }, + { + "src": "http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Mono" + }, + { + "src": "http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Mono" + } + ] + }, + { + "name": "Fira Sans", + "fontFamily": "Fira Sans, sans-serif", + "slug": "wp-font-lib-fira-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Fira Sans" + }, + { + "src": "http://fonts.gstatic.com/s/firasans/v17/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Fira Sans" + } + ] + }, + { + "name": "Fira Sans Condensed", + "fontFamily": "Fira Sans Condensed, sans-serif", + "slug": "wp-font-lib-fira-sans-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Fira Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Fira Sans Condensed" + } + ] + }, + { + "name": "Fira Sans Extra Condensed", + "fontFamily": "Fira Sans Extra Condensed, sans-serif", + "slug": "wp-font-lib-fira-sans-extra-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Fira Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Fira Sans Extra Condensed" + } + ] + }, + { + "name": "Fjalla One", + "fontFamily": "Fjalla One, sans-serif", + "slug": "wp-font-lib-fjalla-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fjalla One" + } + ] + }, + { + "name": "Fjord One", + "fontFamily": "Fjord One, serif", + "slug": "wp-font-lib-fjord-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fjord One" + } + ] + }, + { + "name": "Flamenco", + "fontFamily": "Flamenco, system-ui", + "slug": "wp-font-lib-flamenco", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flamenco/v18/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Flamenco" + }, + { + "src": "http://fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssaWGHK06UY30.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flamenco" + } + ] + }, + { + "name": "Flavors", + "fontFamily": "Flavors, system-ui", + "slug": "wp-font-lib-flavors", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flavors/v22/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flavors" + } + ] + }, + { + "name": "Fleur De Leah", + "fontFamily": "Fleur De Leah, cursive", + "slug": "wp-font-lib-fleur-de-leah", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fleurdeleah/v7/AYCNpXX7ftYZWLhv9UmPJTMC5vat4I_Gdq0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fleur De Leah" + } + ] + }, + { + "name": "Flow Block", + "fontFamily": "Flow Block, system-ui", + "slug": "wp-font-lib-flow-block", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flowblock/v7/wlp0gwfPCEB65UmTk-d6-WZlbCBXE_I.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flow Block" + } + ] + }, + { + "name": "Flow Circular", + "fontFamily": "Flow Circular, system-ui", + "slug": "wp-font-lib-flow-circular", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flowcircular/v7/lJwB-pc4j2F-H8YKuyvfxdZ45ifpWdr2rIg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flow Circular" + } + ] + }, + { + "name": "Flow Rounded", + "fontFamily": "Flow Rounded, system-ui", + "slug": "wp-font-lib-flow-rounded", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/flowrounded/v7/-zki91mtwsU9qlLiGwD4oQX3oZX-Xup87g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Flow Rounded" + } + ] + }, + { + "name": "Foldit", + "fontFamily": "Foldit, system-ui", + "slug": "wp-font-lib-foldit", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpANmapUYLHkN80.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhAMmapUYLHkN80.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xs4MmapUYLHkN80.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XpAMmapUYLHkN80.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XqIMmapUYLHkN80.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8Xk4LmapUYLHkN80.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XncLmapUYLHkN80.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XhALmapUYLHkN80.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Foldit" + }, + { + "src": "http://fonts.gstatic.com/s/foldit/v3/aFTI7PF3Y3c9WdjNrRVE0Rk2b7j8XjkLmapUYLHkN80.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Foldit" + } + ] + }, + { + "name": "Fondamento", + "fontFamily": "Fondamento, cursive", + "slug": "wp-font-lib-fondamento", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fondamento/v17/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fondamento" + }, + { + "src": "http://fonts.gstatic.com/s/fondamento/v17/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fondamento" + } + ] + }, + { + "name": "Fontdiner Swanky", + "fontFamily": "Fontdiner Swanky, system-ui", + "slug": "wp-font-lib-fontdiner-swanky", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fontdinerswanky/v19/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fontdiner Swanky" + } + ] + }, + { + "name": "Forum", + "fontFamily": "Forum, system-ui", + "slug": "wp-font-lib-forum", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/forum/v16/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Forum" + } + ] + }, + { + "name": "Fragment Mono", + "fontFamily": "Fragment Mono, monospace", + "slug": "wp-font-lib-fragment-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fragmentmono/v1/4iCr6K5wfMRRjxp0DA6-2CLnN4RNh4UI_1U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fragment Mono" + }, + { + "src": "http://fonts.gstatic.com/s/fragmentmono/v1/4iC16K5wfMRRjxp0DA6-2CLnB4ZHg6cN71URtQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fragment Mono" + } + ] + }, + { + "name": "Francois One", + "fontFamily": "Francois One, sans-serif", + "slug": "wp-font-lib-francois-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/francoisone/v21/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Francois One" + } + ] + }, + { + "name": "Frank Ruhl Libre", + "fontFamily": "Frank Ruhl Libre, serif", + "slug": "wp-font-lib-frank-ruhl-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw6bYVqQPxR2EUR_.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYVqQPxR2EUR_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw73YVqQPxR2EUR_.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4bZlqQPxR2EUR_.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4iZlqQPxR2EUR_.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5FZlqQPxR2EUR_.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + }, + { + "src": "http://fonts.gstatic.com/s/frankruhllibre/v19/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5sZlqQPxR2EUR_.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Frank Ruhl Libre" + } + ] + }, + { + "name": "Fraunces", + "fontFamily": "Fraunces, serif", + "slug": "wp-font-lib-fraunces", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxqjDvTShUtWNg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxujDvTShUtWNg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIc6RujDvTShUtWNg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxujDvTShUtWNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIchRujDvTShUtWNg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcaRyjDvTShUtWNg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcUByjDvTShUtWNg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxyjDvTShUtWNg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcHhyjDvTShUtWNg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTP7Wp05GNi3k.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLTf7Wp05GNi3k.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1gVTf7Wp05GNi3k.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTf7Wp05GNi3k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1h5Tf7Wp05GNi3k.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1iVSv7Wp05GNi3k.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1isSv7Wp05GNi3k.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLSv7Wp05GNi3k.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Fraunces" + }, + { + "src": "http://fonts.gstatic.com/s/fraunces/v31/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jiSv7Wp05GNi3k.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Fraunces" + } + ] + }, + { + "name": "Freckle Face", + "fontFamily": "Freckle Face, system-ui", + "slug": "wp-font-lib-freckle-face", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/freckleface/v15/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Freckle Face" + } + ] + }, + { + "name": "Fredericka the Great", + "fontFamily": "Fredericka the Great, system-ui", + "slug": "wp-font-lib-fredericka-the-great", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/frederickathegreat/v16/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fredericka the Great" + } + ] + }, + { + "name": "Fredoka", + "fontFamily": "Fredoka, sans-serif", + "slug": "wp-font-lib-fredoka", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OryLMFuOLlNldbw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Fredoka" + }, + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3O8SLMFuOLlNldbw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fredoka" + }, + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OwyLMFuOLlNldbw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Fredoka" + }, + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OLyXMFuOLlNldbw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Fredoka" + }, + { + "src": "http://fonts.gstatic.com/s/fredoka/v14/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiXMFuOLlNldbw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fredoka" + } + ] + }, + { + "name": "Freehand", + "fontFamily": "Freehand, system-ui", + "slug": "wp-font-lib-freehand", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/freehand/v27/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Freehand" + } + ] + }, + { + "name": "Fresca", + "fontFamily": "Fresca, sans-serif", + "slug": "wp-font-lib-fresca", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fresca/v18/6ae94K--SKgCzbM2Gr0W13DKPA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fresca" + } + ] + }, + { + "name": "Frijole", + "fontFamily": "Frijole, system-ui", + "slug": "wp-font-lib-frijole", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Frijole" + } + ] + }, + { + "name": "Fruktur", + "fontFamily": "Fruktur, system-ui", + "slug": "wp-font-lib-fruktur", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fruktur/v27/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fruktur" + }, + { + "src": "http://fonts.gstatic.com/s/fruktur/v27/SZc73FHsOru5QYsMTz_MlWjX4DJXgQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Fruktur" + } + ] + }, + { + "name": "Fugaz One", + "fontFamily": "Fugaz One, system-ui", + "slug": "wp-font-lib-fugaz-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fugazone/v15/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fugaz One" + } + ] + }, + { + "name": "Fuggles", + "fontFamily": "Fuggles, cursive", + "slug": "wp-font-lib-fuggles", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fuggles/v9/k3kQo8UEJOlD1hpOTd7iL0nAMaM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fuggles" + } + ] + }, + { + "name": "Fuzzy Bubbles", + "fontFamily": "Fuzzy Bubbles, cursive", + "slug": "wp-font-lib-fuzzy-bubbles", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLGKZMbrgv9pwtjPEVNV0F2NnP5Zxsreko.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Fuzzy Bubbles" + }, + { + "src": "http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLbKZMbrgv9pwtjPEVNV0F2Ds_WQxMAZkM1pn4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Fuzzy Bubbles" + } + ] + }, + { + "name": "GFS Didot", + "fontFamily": "GFS Didot, serif", + "slug": "wp-font-lib-gfs-didot", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gfsdidot/v15/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "GFS Didot" + } + ] + }, + { + "name": "GFS Neohellenic", + "fontFamily": "GFS Neohellenic, sans-serif", + "slug": "wp-font-lib-gfs-neohellenic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "GFS Neohellenic" + }, + { + "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "GFS Neohellenic" + }, + { + "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "GFS Neohellenic" + }, + { + "src": "http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "GFS Neohellenic" + } + ] + }, + { + "name": "Gabriela", + "fontFamily": "Gabriela, serif", + "slug": "wp-font-lib-gabriela", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gabriela/v17/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gabriela" + } + ] + }, + { + "name": "Gaegu", + "fontFamily": "Gaegu, cursive", + "slug": "wp-font-lib-gaegu", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gaegu" + }, + { + "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGfUVB6Up9NU6ZLodgzydtk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gaegu" + }, + { + "src": "http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gaegu" + } + ] + }, + { + "name": "Gafata", + "fontFamily": "Gafata, sans-serif", + "slug": "wp-font-lib-gafata", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gafata/v16/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gafata" + } + ] + }, + { + "name": "Gajraj One", + "fontFamily": "Gajraj One, system-ui", + "slug": "wp-font-lib-gajraj-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gajrajone/v3/1cX2aUDCDpXsuWVb1jIjr1GqhcitzeM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gajraj One" + } + ] + }, + { + "name": "Galada", + "fontFamily": "Galada, system-ui", + "slug": "wp-font-lib-galada", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/galada/v14/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Galada" + } + ] + }, + { + "name": "Galdeano", + "fontFamily": "Galdeano, sans-serif", + "slug": "wp-font-lib-galdeano", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Galdeano" + } + ] + }, + { + "name": "Galindo", + "fontFamily": "Galindo, system-ui", + "slug": "wp-font-lib-galindo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/galindo/v20/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Galindo" + } + ] + }, + { + "name": "Gamja Flower", + "fontFamily": "Gamja Flower, cursive", + "slug": "wp-font-lib-gamja-flower", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gamjaflower/v20/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gamja Flower" + } + ] + }, + { + "name": "Gantari", + "fontFamily": "Gantari, sans-serif", + "slug": "wp-font-lib-gantari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOz3wa5GD2qnm.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gOj3wa5GD2qnm.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g1-Oj3wa5GD2qnm.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOj3wa5GD2qnm.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0SOj3wa5GD2qnm.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3-PT3wa5GD2qnm.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3HPT3wa5GD2qnm.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gPT3wa5GD2qnm.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2JPT3wa5GD2qnm.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWyYZWh37nmpWc.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVWzYZWh37nmpWc.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeYuzYZWh37nmpWc.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWzYZWh37nmpWc.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeeezYZWh37nmpWc.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeQu0YZWh37nmpWc.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeTK0YZWh37nmpWc.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVW0YZWh37nmpWc.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Gantari" + }, + { + "src": "http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeXy0YZWh37nmpWc.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Gantari" + } + ] + }, + { + "name": "Gayathri", + "fontFamily": "Gayathri, sans-serif", + "slug": "wp-font-lib-gayathri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Gayathri" + }, + { + "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoQzAb429DbBilWLIA48J_wBugA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gayathri" + }, + { + "src": "http://fonts.gstatic.com/s/gayathri/v15/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gayathri" + } + ] + }, + { + "name": "Gelasio", + "fontFamily": "Gelasio, serif", + "slug": "wp-font-lib-gelasio", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf_MaFfvUQxTTqS9CuhZEsCkIt9QQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_N2CRGEsnIJkWL4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZkGImmKBhSL7Y1Q.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_PGFRGEsnIJkWL4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZvGUmmKBhSL7Y1Q.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_JWERGEsnIJkWL4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gelasio" + }, + { + "src": "http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZ2GQmmKBhSL7Y1Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Gelasio" + } + ] + }, + { + "name": "Gemunu Libre", + "fontFamily": "Gemunu Libre, sans-serif", + "slug": "wp-font-lib-gemunu-libre", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iJPvSLeMXPIWA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp00aJPvSLeMXPIWA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJPvSLeMXPIWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0yqJPvSLeMXPIWA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp08aOPvSLeMXPIWA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0_-OPvSLeMXPIWA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + }, + { + "src": "http://fonts.gstatic.com/s/gemunulibre/v12/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iOPvSLeMXPIWA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Gemunu Libre" + } + ] + }, + { + "name": "Genos", + "fontFamily": "Genos, sans-serif", + "slug": "wp-font-lib-genos", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqknorUK6K7ZsAg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVKkjorUK6K7ZsAg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwV9EjorUK6K7ZsAg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjorUK6K7ZsAg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVmEjorUK6K7ZsAg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVdE_orUK6K7ZsAg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVTU_orUK6K7ZsAg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVKk_orUK6K7ZsAg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGNmQqPqpUOYTYjacb0Hc91fTwVA0_orUK6K7ZsAg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA70i-CbN8Ard7.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA7ki-CbN8Ard7.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgte7ki-CbN8Ard7.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA7ki-CbN8Ard7.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsy7ki-CbN8Ard7.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgve6Ui-CbN8Ard7.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgvn6Ui-CbN8Ard7.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA6Ui-CbN8Ard7.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Genos" + }, + { + "src": "http://fonts.gstatic.com/s/genos/v10/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgup6Ui-CbN8Ard7.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Genos" + } + ] + }, + { + "name": "Gentium Book Plus", + "fontFamily": "Gentium Book Plus, serif", + "slug": "wp-font-lib-gentium-book-plus", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpofKfdbLOrdPV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gentium Book Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFN2-RHBgUK5fbjKxRpbBtJPyRpocKdf7bsqMPVZb4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gentium Book Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFO2-RHBgUK5fbjKxRpbBtJPyRpocojWpbGhs_cfKe1.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gentium Book Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFA2-RHBgUK5fbjKxRpbBtJPyRpocKdRwrDjMv-ebe1Els.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Gentium Book Plus" + } + ] + }, + { + "name": "Gentium Plus", + "fontFamily": "Gentium Plus, serif", + "slug": "wp-font-lib-gentium-plus", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gentiumplus/v2/Iurd6Ytw-oSPaZ00r2bNe8VpjJtM6G0t9w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gentium Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurD6Ytw-oSPaZ00r2bNe8VZjpFIymg9957e.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gentium Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurC6Ytw-oSPaZ00r2bNe8VRMLRo4EYx_ofHsw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gentium Plus" + }, + { + "src": "http://fonts.gstatic.com/s/gentiumplus/v2/IurA6Ytw-oSPaZ00r2bNe8VZjqn05Uw13ILXs-h6.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Gentium Plus" + } + ] + }, + { + "name": "Geo", + "fontFamily": "Geo, sans-serif", + "slug": "wp-font-lib-geo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/geo/v19/CSRz4zRZlufVL3BmQjlCbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Geo" + }, + { + "src": "http://fonts.gstatic.com/s/geo/v19/CSRx4zRZluflLXpiYDxSbf8r.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Geo" + } + ] + }, + { + "name": "Geologica", + "fontFamily": "Geologica, sans-serif", + "slug": "wp-font-lib-geologica", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDx_qQ-MYAXWnqFs.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD5_rQ-MYAXWnqFs.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD0HrQ-MYAXWnqFs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDx_rQ-MYAXWnqFs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDy3rQ-MYAXWnqFs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD8HsQ-MYAXWnqFs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD_jsQ-MYAXWnqFs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD5_sQ-MYAXWnqFs.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Geologica" + }, + { + "src": "http://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqD7bsQ-MYAXWnqFs.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Geologica" + } + ] + }, + { + "name": "Georama", + "fontFamily": "Georama, sans-serif", + "slug": "wp-font-lib-georama", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvktmQsL5_tgbg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mvgtmQsL5_tgbg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5RPgtmQsL5_tgbg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgtmQsL5_tgbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5KPgtmQsL5_tgbg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5xP8tmQsL5_tgbg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5_f8tmQsL5_tgbg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mv8tmQsL5_tgbg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5s_8tmQsL5_tgbg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2wEPxf5wbh3T.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF2gEPxf5wbh3T.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rub2gEPxf5wbh3T.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2gEPxf5wbh3T.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rv32gEPxf5wbh3T.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsb3QEPxf5wbh3T.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsi3QEPxf5wbh3T.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF3QEPxf5wbh3T.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Georama" + }, + { + "src": "http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rts3QEPxf5wbh3T.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Georama" + } + ] + }, + { + "name": "Geostar", + "fontFamily": "Geostar, system-ui", + "slug": "wp-font-lib-geostar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/geostar/v22/sykz-yx4n701VLOftSq9-trEvlQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Geostar" + } + ] + }, + { + "name": "Geostar Fill", + "fontFamily": "Geostar Fill, system-ui", + "slug": "wp-font-lib-geostar-fill", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/geostarfill/v22/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Geostar Fill" + } + ] + }, + { + "name": "Germania One", + "fontFamily": "Germania One, system-ui", + "slug": "wp-font-lib-germania-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Germania One" + } + ] + }, + { + "name": "Gideon Roman", + "fontFamily": "Gideon Roman, system-ui", + "slug": "wp-font-lib-gideon-roman", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gideonroman/v8/e3tmeuGrVOys8sxzZgWlmXoge0PWovdU4w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gideon Roman" + } + ] + }, + { + "name": "Gidugu", + "fontFamily": "Gidugu, sans-serif", + "slug": "wp-font-lib-gidugu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gidugu/v21/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gidugu" + } + ] + }, + { + "name": "Gilda Display", + "fontFamily": "Gilda Display, serif", + "slug": "wp-font-lib-gilda-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gildadisplay/v14/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gilda Display" + } + ] + }, + { + "name": "Girassol", + "fontFamily": "Girassol, system-ui", + "slug": "wp-font-lib-girassol", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/girassol/v17/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Girassol" + } + ] + }, + { + "name": "Give You Glory", + "fontFamily": "Give You Glory, cursive", + "slug": "wp-font-lib-give-you-glory", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/giveyouglory/v15/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Give You Glory" + } + ] + }, + { + "name": "Glass Antiqua", + "fontFamily": "Glass Antiqua, system-ui", + "slug": "wp-font-lib-glass-antiqua", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/glassantiqua/v20/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Glass Antiqua" + } + ] + }, + { + "name": "Glegoo", + "fontFamily": "Glegoo, serif", + "slug": "wp-font-lib-glegoo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/glegoo/v14/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Glegoo" + }, + { + "src": "http://fonts.gstatic.com/s/glegoo/v14/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Glegoo" + } + ] + }, + { + "name": "Gloock", + "fontFamily": "Gloock, serif", + "slug": "wp-font-lib-gloock", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gloock/v2/Iurb6YFw84WUY4N5jxylBrdRjQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gloock" + } + ] + }, + { + "name": "Gloria Hallelujah", + "fontFamily": "Gloria Hallelujah, cursive", + "slug": "wp-font-lib-gloria-hallelujah", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gloriahallelujah/v17/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gloria Hallelujah" + } + ] + }, + { + "name": "Glory", + "fontFamily": "Glory, sans-serif", + "slug": "wp-font-lib-glory", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwIiDpn-dDi9EOQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQQImDpn-dDi9EOQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQnomDpn-dDi9EOQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQwImDpn-dDi9EOQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQ8omDpn-dDi9EOQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQHo6Dpn-dDi9EOQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQJ46Dpn-dDi9EOQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uasoi9Lf1w5t3Est24nq9blIRQQI6Dpn-dDi9EOQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Glory" + }, + { + "src": "http://fonts.gstatic.com/s/glory/v13/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Glory" + } + ] + }, + { + "name": "Gluten", + "fontFamily": "Gluten, system-ui", + "slug": "wp-font-lib-gluten", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7B1Luni7ciJh.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb7R1Luni7ciJh.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8UF7R1Luni7ciJh.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7R1Luni7ciJh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vp7R1Luni7ciJh.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8WF6h1Luni7ciJh.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8W86h1Luni7ciJh.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb6h1Luni7ciJh.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Gluten" + }, + { + "src": "http://fonts.gstatic.com/s/gluten/v10/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xy6h1Luni7ciJh.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Gluten" + } + ] + }, + { + "name": "Goblin One", + "fontFamily": "Goblin One, system-ui", + "slug": "wp-font-lib-goblin-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/goblinone/v22/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Goblin One" + } + ] + }, + { + "name": "Gochi Hand", + "fontFamily": "Gochi Hand, cursive", + "slug": "wp-font-lib-gochi-hand", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gochihand/v19/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gochi Hand" + } + ] + }, + { + "name": "Goldman", + "fontFamily": "Goldman, system-ui", + "slug": "wp-font-lib-goldman", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/goldman/v16/pe0uMIWbN4JFplR2LDJ4Bt-7G98.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Goldman" + }, + { + "src": "http://fonts.gstatic.com/s/goldman/v16/pe0rMIWbN4JFplR2FI5XIteQB9Zra1U.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Goldman" + } + ] + }, + { + "name": "Golos Text", + "fontFamily": "Golos Text, sans-serif", + "slug": "wp-font-lib-golos-text", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVRRQ5cEr8zXcyx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plVjRQ5cEr8zXcyx.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plWPQg5cEr8zXcyx.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plW2Qg5cEr8zXcyx.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plXRQg5cEr8zXcyx.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Golos Text" + }, + { + "src": "http://fonts.gstatic.com/s/golostext/v4/q5uXsoe9Lv5t7Meb31EcOR9UdVTNs822plX4Qg5cEr8zXcyx.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Golos Text" + } + ] + }, + { + "name": "Gorditas", + "fontFamily": "Gorditas, system-ui", + "slug": "wp-font-lib-gorditas", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gorditas/v20/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gorditas" + }, + { + "src": "http://fonts.gstatic.com/s/gorditas/v20/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gorditas" + } + ] + }, + { + "name": "Gothic A1", + "fontFamily": "Gothic A1, sans-serif", + "slug": "wp-font-lib-gothic-a1", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + }, + { + "src": "http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Gothic A1" + } + ] + }, + { + "name": "Gotu", + "fontFamily": "Gotu, sans-serif", + "slug": "wp-font-lib-gotu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gotu/v14/o-0FIpksx3QOlH0Lioh6-hU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gotu" + } + ] + }, + { + "name": "Goudy Bookletter 1911", + "fontFamily": "Goudy Bookletter 1911, serif", + "slug": "wp-font-lib-goudy-bookletter-1911", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/goudybookletter1911/v15/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Goudy Bookletter 1911" + } + ] + }, + { + "name": "Gowun Batang", + "fontFamily": "Gowun Batang, serif", + "slug": "wp-font-lib-gowun-batang", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwSs5nhRMIjYsdSgcMa3wRhXLH-yuAtLw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gowun Batang" + }, + { + "src": "http://fonts.gstatic.com/s/gowunbatang/v7/ijwNs5nhRMIjYsdSgcMa3wRZ4J7awssxJii23w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gowun Batang" + } + ] + }, + { + "name": "Gowun Dodum", + "fontFamily": "Gowun Dodum, sans-serif", + "slug": "wp-font-lib-gowun-dodum", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gowundodum/v7/3Jn5SD_00GqwlBnWc1TUJF0FfORL0fNy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gowun Dodum" + } + ] + }, + { + "name": "Graduate", + "fontFamily": "Graduate, system-ui", + "slug": "wp-font-lib-graduate", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/graduate/v13/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Graduate" + } + ] + }, + { + "name": "Grand Hotel", + "fontFamily": "Grand Hotel, cursive", + "slug": "wp-font-lib-grand-hotel", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grandhotel/v14/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grand Hotel" + } + ] + }, + { + "name": "Grandstander", + "fontFamily": "Grandstander, system-ui", + "slug": "wp-font-lib-grandstander", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1-_D3jWttFGmQk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9--D3jWttFGmQk.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQDwG-D3jWttFGmQk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--D3jWttFGmQk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD22-D3jWttFGmQk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD4G5D3jWttFGmQk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD7i5D3jWttFGmQk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9-5D3jWttFGmQk.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD_a5D3jWttFGmQk.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zrcsvNDiQlBYQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzvcsvNDiQlBYQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9uTvcsvNDiQlBYQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zvcsvNDiQlBYQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf91TvcsvNDiQlBYQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9OTzcsvNDiQlBYQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ADzcsvNDiQlBYQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzzcsvNDiQlBYQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Grandstander" + }, + { + "src": "http://fonts.gstatic.com/s/grandstander/v15/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9TjzcsvNDiQlBYQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Grandstander" + } + ] + }, + { + "name": "Grape Nuts", + "fontFamily": "Grape Nuts, cursive", + "slug": "wp-font-lib-grape-nuts", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grapenuts/v2/syk2-yF4iLM2RfKj4F7k3tLvol2RN1E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grape Nuts" + } + ] + }, + { + "name": "Gravitas One", + "fontFamily": "Gravitas One, system-ui", + "slug": "wp-font-lib-gravitas-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gravitasone/v15/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gravitas One" + } + ] + }, + { + "name": "Great Vibes", + "fontFamily": "Great Vibes, cursive", + "slug": "wp-font-lib-great-vibes", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/greatvibes/v15/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Great Vibes" + } + ] + }, + { + "name": "Grechen Fuemen", + "fontFamily": "Grechen Fuemen, cursive", + "slug": "wp-font-lib-grechen-fuemen", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grechenfuemen/v7/vEFI2_tHEQ4d5ObgKxBzZh0MAWgc-NaXXq7H.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grechen Fuemen" + } + ] + }, + { + "name": "Grenze", + "fontFamily": "Grenze, serif", + "slug": "wp-font-lib-grenze", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Grenze" + }, + { + "src": "http://fonts.gstatic.com/s/grenze/v15/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Grenze" + } + ] + }, + { + "name": "Grenze Gotisch", + "fontFamily": "Grenze Gotisch, system-ui", + "slug": "wp-font-lib-grenze-gotisch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz5UcICdYPSd_w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rz9UcICdYPSd_w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5cT9UcICdYPSd_w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9UcICdYPSd_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5HT9UcICdYPSd_w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i58ThUcICdYPSd_w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5yDhUcICdYPSd_w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rzhUcICdYPSd_w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + }, + { + "src": "http://fonts.gstatic.com/s/grenzegotisch/v16/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5hjhUcICdYPSd_w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Grenze Gotisch" + } + ] + }, + { + "name": "Grey Qo", + "fontFamily": "Grey Qo, cursive", + "slug": "wp-font-lib-grey-qo", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/greyqo/v7/BXRrvF_Nmv_TyXxNDOtQ9Wf0QcE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Grey Qo" + } + ] + }, + { + "name": "Griffy", + "fontFamily": "Griffy, system-ui", + "slug": "wp-font-lib-griffy", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/griffy/v22/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Griffy" + } + ] + }, + { + "name": "Gruppo", + "fontFamily": "Gruppo, sans-serif", + "slug": "wp-font-lib-gruppo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gruppo/v17/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gruppo" + } + ] + }, + { + "name": "Gudea", + "fontFamily": "Gudea, sans-serif", + "slug": "wp-font-lib-gudea", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp-CP9IGON7Ez.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gudea" + }, + { + "src": "http://fonts.gstatic.com/s/gudea/v15/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Gudea" + }, + { + "src": "http://fonts.gstatic.com/s/gudea/v15/neIIzCqgsI0mp9gz26WGHK06UY30.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gudea" + } + ] + }, + { + "name": "Gugi", + "fontFamily": "Gugi, system-ui", + "slug": "wp-font-lib-gugi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gugi/v13/A2BVn5dXywshVA6A9DEfgqM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gugi" + } + ] + }, + { + "name": "Gulzar", + "fontFamily": "Gulzar, serif", + "slug": "wp-font-lib-gulzar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gulzar/v8/Wnz6HAc9eB3HB2ILYTwZqg_MPQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gulzar" + } + ] + }, + { + "name": "Gupter", + "fontFamily": "Gupter, serif", + "slug": "wp-font-lib-gupter", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gupter/v14/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gupter" + }, + { + "src": "http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qslb-bUsT5rZhaZg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Gupter" + }, + { + "src": "http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qs3bmbUsT5rZhaZg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gupter" + } + ] + }, + { + "name": "Gurajada", + "fontFamily": "Gurajada, serif", + "slug": "wp-font-lib-gurajada", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gurajada/v15/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gurajada" + } + ] + }, + { + "name": "Gwendolyn", + "fontFamily": "Gwendolyn, cursive", + "slug": "wp-font-lib-gwendolyn", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBXXvoO_M3CSss-d7ee5JRLkAXbMQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Gwendolyn" + }, + { + "src": "http://fonts.gstatic.com/s/gwendolyn/v5/qkBSXvoO_M3CSss-d7emWLtvmC7HONiSFQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Gwendolyn" + } + ] + }, + { + "name": "Habibi", + "fontFamily": "Habibi, serif", + "slug": "wp-font-lib-habibi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Habibi" + } + ] + }, + { + "name": "Hachi Maru Pop", + "fontFamily": "Hachi Maru Pop, cursive", + "slug": "wp-font-lib-hachi-maru-pop", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hachimarupop/v17/HI_TiYoRLqpLrEiMAuO9Ysfz7rW1EM_btd8u.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hachi Maru Pop" + } + ] + }, + { + "name": "Hahmlet", + "fontFamily": "Hahmlet, serif", + "slug": "wp-font-lib-hahmlet", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOdjobsO-aVxn.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKONjobsO-aVxn.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RgUONjobsO-aVxn.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKONjobsO-aVxn.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4Rh4ONjobsO-aVxn.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RiUP9jobsO-aVxn.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RitP9jobsO-aVxn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKP9jobsO-aVxn.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + }, + { + "src": "http://fonts.gstatic.com/s/hahmlet/v13/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjjP9jobsO-aVxn.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Hahmlet" + } + ] + }, + { + "name": "Halant", + "fontFamily": "Halant, serif", + "slug": "wp-font-lib-halant", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Halant" + }, + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-4-0qaujRI2PbsX39Jmky12eg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Halant" + }, + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Halant" + }, + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Halant" + }, + { + "src": "http://fonts.gstatic.com/s/halant/v14/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Halant" + } + ] + }, + { + "name": "Hammersmith One", + "fontFamily": "Hammersmith One, sans-serif", + "slug": "wp-font-lib-hammersmith-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hammersmith One" + } + ] + }, + { + "name": "Hanalei", + "fontFamily": "Hanalei, system-ui", + "slug": "wp-font-lib-hanalei", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHXzgmVydREus.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hanalei" + } + ] + }, + { + "name": "Hanalei Fill", + "fontFamily": "Hanalei Fill, system-ui", + "slug": "wp-font-lib-hanalei-fill", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hanaleifill/v22/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hanalei Fill" + } + ] + }, + { + "name": "Handlee", + "fontFamily": "Handlee, cursive", + "slug": "wp-font-lib-handlee", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/handlee/v14/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Handlee" + } + ] + }, + { + "name": "Hanken Grotesk", + "fontFamily": "Hanken Grotesk, sans-serif", + "slug": "wp-font-lib-hanken-grotesk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2da4fpNzXhRKA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Za4fpNzXhRKA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2Za4fpNzXhRKA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcbWFa4fpNzXhRKA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcVGFa4fpNzXhRKA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Fa4fpNzXhRKA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcGmFa4fpNzXhRKA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyo_BJ731BKMSK.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUyovBJ731BKMSK.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyXsovBJ731BKMSK.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyovBJ731BKMSK.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWAovBJ731BKMSK.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVspfBJ731BKMSK.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVVpfBJ731BKMSK.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUypfBJ731BKMSK.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/hankengrotesk/v8/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUbpfBJ731BKMSK.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Hanken Grotesk" + } + ] + }, + { + "name": "Hanuman", + "fontFamily": "Hanuman, serif", + "slug": "wp-font-lib-hanuman", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJzdNvD15HhpJJBQMLdPKNiaRpFvg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Hanuman" + }, + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQAr_HIlMZRNcp0o.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hanuman" + }, + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hanuman" + }, + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hanuman" + }, + { + "src": "http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQCL6HIlMZRNcp0o.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Hanuman" + } + ] + }, + { + "name": "Happy Monkey", + "fontFamily": "Happy Monkey, system-ui", + "slug": "wp-font-lib-happy-monkey", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Happy Monkey" + } + ] + }, + { + "name": "Harmattan", + "fontFamily": "Harmattan, sans-serif", + "slug": "wp-font-lib-harmattan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/harmattan/v19/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Harmattan" + }, + { + "src": "http://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xprv2mHmNZEq6TTFw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Harmattan" + }, + { + "src": "http://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xprk26HmNZEq6TTFw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Harmattan" + }, + { + "src": "http://fonts.gstatic.com/s/harmattan/v19/gokpH6L2DkFvVvRp9Xpr92-HmNZEq6TTFw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Harmattan" + } + ] + }, + { + "name": "Headland One", + "fontFamily": "Headland One, serif", + "slug": "wp-font-lib-headland-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/headlandone/v16/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Headland One" + } + ] + }, + { + "name": "Heebo", + "fontFamily": "Heebo, sans-serif", + "slug": "wp-font-lib-heebo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cckOnz02SXQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycckOnz02SXQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycckOnz02SXQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycckOnz02SXQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyycckOnz02SXQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucckOnz02SXQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiucckOnz02SXQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucckOnz02SXQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Heebo" + }, + { + "src": "http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucckOnz02SXQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Heebo" + } + ] + }, + { + "name": "Henny Penny", + "fontFamily": "Henny Penny, system-ui", + "slug": "wp-font-lib-henny-penny", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Henny Penny" + } + ] + }, + { + "name": "Hepta Slab", + "fontFamily": "Hepta Slab, serif", + "slug": "wp-font-lib-hepta-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + }, + { + "src": "http://fonts.gstatic.com/s/heptaslab/v21/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Hepta Slab" + } + ] + }, + { + "name": "Herr Von Muellerhoff", + "fontFamily": "Herr Von Muellerhoff, cursive", + "slug": "wp-font-lib-herr-von-muellerhoff", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/herrvonmuellerhoff/v16/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Herr Von Muellerhoff" + } + ] + }, + { + "name": "Hi Melody", + "fontFamily": "Hi Melody, cursive", + "slug": "wp-font-lib-hi-melody", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/himelody/v13/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hi Melody" + } + ] + }, + { + "name": "Hina Mincho", + "fontFamily": "Hina Mincho, serif", + "slug": "wp-font-lib-hina-mincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hinamincho/v9/2sDaZGBRhpXa2Jjz5w5LAGW8KbkVZTHR.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hina Mincho" + } + ] + }, + { + "name": "Hind", + "fontFamily": "Hind, sans-serif", + "slug": "wp-font-lib-hind", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind" + }, + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU69_a8oxmIRG5yBROzkDM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind" + }, + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind" + }, + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind" + }, + { + "src": "http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind" + } + ] + }, + { + "name": "Hind Guntur", + "fontFamily": "Hind Guntur, sans-serif", + "slug": "wp-font-lib-hind-guntur", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + }, + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + }, + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + }, + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + }, + { + "src": "http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind Guntur" + } + ] + }, + { + "name": "Hind Madurai", + "fontFamily": "Hind Madurai, sans-serif", + "slug": "wp-font-lib-hind-madurai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + }, + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + }, + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + }, + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + }, + { + "src": "http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind Madurai" + } + ] + }, + { + "name": "Hind Siliguri", + "fontFamily": "Hind Siliguri, sans-serif", + "slug": "wp-font-lib-hind-siliguri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + }, + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + }, + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + }, + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + }, + { + "src": "http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind Siliguri" + } + ] + }, + { + "name": "Hind Vadodara", + "fontFamily": "Hind Vadodara, sans-serif", + "slug": "wp-font-lib-hind-vadodara", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + }, + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + }, + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + }, + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + }, + { + "src": "http://fonts.gstatic.com/s/hindvadodara/v13/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Hind Vadodara" + } + ] + }, + { + "name": "Holtwood One SC", + "fontFamily": "Holtwood One SC, serif", + "slug": "wp-font-lib-holtwood-one-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/holtwoodonesc/v16/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Holtwood One SC" + } + ] + }, + { + "name": "Homemade Apple", + "fontFamily": "Homemade Apple, cursive", + "slug": "wp-font-lib-homemade-apple", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/homemadeapple/v18/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Homemade Apple" + } + ] + }, + { + "name": "Homenaje", + "fontFamily": "Homenaje, sans-serif", + "slug": "wp-font-lib-homenaje", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Homenaje" + } + ] + }, + { + "name": "Hubballi", + "fontFamily": "Hubballi, system-ui", + "slug": "wp-font-lib-hubballi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hubballi/v4/o-0JIpUj3WIZ1RFN56B7yBBNYuSF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hubballi" + } + ] + }, + { + "name": "Hurricane", + "fontFamily": "Hurricane, cursive", + "slug": "wp-font-lib-hurricane", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/hurricane/v5/pe0sMIuULZxTolZ5YldyAv2-C99ycg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Hurricane" + } + ] + }, + { + "name": "IBM Plex Mono", + "fontFamily": "IBM Plex Mono, monospace", + "slug": "wp-font-lib-ibm-plex-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexmono/v19/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "IBM Plex Mono" + } + ] + }, + { + "name": "IBM Plex Sans", + "fontFamily": "IBM Plex Sans, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans" + } + ] + }, + { + "name": "IBM Plex Sans Arabic", + "fontFamily": "IBM Plex Sans Arabic, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-arabic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3MZRtWPQCuHme67tEYUIx3Kh0PHR9N6YNe3PC5eMlAMg0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPy_dCTVsVJKxTs.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOW_tCTVsVJKxTs.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs61vSbfdlA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPO_9CTVsVJKxTs.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPi-NCTVsVJKxTs.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansarabic/v12/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOG-dCTVsVJKxTs.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Arabic" + } + ] + }, + { + "name": "IBM Plex Sans Condensed", + "fontFamily": "IBM Plex Sans Condensed, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v14/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "IBM Plex Sans Condensed" + } + ] + }, + { + "name": "IBM Plex Sans Devanagari", + "fontFamily": "IBM Plex Sans Devanagari, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-devanagari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXB3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HMUjwUcjwCEQq.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HnWnQe-b8AV0z0w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H-WrQe-b8AV0z0w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__VUL0c83gCA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HoWvQe-b8AV0z0w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HjWzQe-b8AV0z0w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansdevanagari/v11/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H6W3Qe-b8AV0z0w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Devanagari" + } + ] + }, + { + "name": "IBM Plex Sans Hebrew", + "fontFamily": "IBM Plex Sans Hebrew, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-hebrew", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa4qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEXB-l0VqDaM7C4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVt230_hjqF9Tc2.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUJ2H0_hjqF9Tc2.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2l8Fk3rSaM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVR2X0_hjqF9Tc2.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEV93n0_hjqF9Tc2.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanshebrew/v11/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUZ330_hjqF9Tc2.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Hebrew" + } + ] + }, + { + "name": "IBM Plex Sans JP", + "fontFamily": "IBM Plex Sans JP, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-jp", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XLDn9KbTDf6_f7dISNqYf_tvPT7E7yjPB7twdmHQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7OLTrNpVuw5_BAM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7IbQrNpVuw5_BAM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XNDn9KbTDf6_f7dISNqYf_tvPT1Cr4iNJ-pwc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7N7RrNpVuw5_BAM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7PLWrNpVuw5_BAM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansjp/v5/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7JbXrNpVuw5_BAM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans JP" + } + ] + }, + { + "name": "IBM Plex Sans KR", + "fontFamily": "IBM Plex Sans KR, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-kr", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFM2-VJISZe3O_rc3ZVYh4aTwNOyra_X5zCpMrMfA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyhqef7bsqMPVZb4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyn6df7bsqMPVZb4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFK2-VJISZe3O_rc3ZVYh4aTwNO8tK1W77HtMo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyiacf7bsqMPVZb4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOygqbf7bsqMPVZb4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsanskr/v10/vEFN2-VJISZe3O_rc3ZVYh4aTwNOym6af7bsqMPVZb4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans KR" + } + ] + }, + { + "name": "IBM Plex Sans Thai", + "fontFamily": "IBM Plex Sans Thai, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-thai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JNje1VVIzcq1HzJq2AEdo2Tj_qvLqEatYlR8ZKUqcX.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqExvcFbehGW74OXw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEovQFbehGW74OXw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8DtwhZcNaUg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE-vUFbehGW74OXw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE1vIFbehGW74OXw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthai/v10/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEsvMFbehGW74OXw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai" + } + ] + }, + { + "name": "IBM Plex Sans Thai Looped", + "fontFamily": "IBM Plex Sans Thai Looped, sans-serif", + "slug": "wp-font-lib-ibm-plex-sans-thai-looped", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss5AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_HaKpHOtFCQ76Q.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_NqrhFmDGC0i8Cc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_L6ohFmDGC0i8Cc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBKAoFGoBCQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_OaphFmDGC0i8Cc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_MquhFmDGC0i8Cc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexsansthailooped/v11/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_K6vhFmDGC0i8Cc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Sans Thai Looped" + } + ] + }, + { + "name": "IBM Plex Serif", + "fontFamily": "IBM Plex Serif, serif", + "slug": "wp-font-lib-ibm-plex-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "IBM Plex Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ibmplexserif/v19/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "IBM Plex Serif" + } + ] + }, + { + "name": "IM Fell DW Pica", + "fontFamily": "IM Fell DW Pica, serif", + "slug": "wp-font-lib-im-fell-dw-pica", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell DW Pica" + }, + { + "src": "http://fonts.gstatic.com/s/imfelldwpica/v16/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell DW Pica" + } + ] + }, + { + "name": "IM Fell DW Pica SC", + "fontFamily": "IM Fell DW Pica SC, serif", + "slug": "wp-font-lib-im-fell-dw-pica-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell DW Pica SC" + } + ] + }, + { + "name": "IM Fell Double Pica", + "fontFamily": "IM Fell Double Pica, serif", + "slug": "wp-font-lib-im-fell-double-pica", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell Double Pica" + }, + { + "src": "http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell Double Pica" + } + ] + }, + { + "name": "IM Fell Double Pica SC", + "fontFamily": "IM Fell Double Pica SC, serif", + "slug": "wp-font-lib-im-fell-double-pica-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell Double Pica SC" + } + ] + }, + { + "name": "IM Fell English", + "fontFamily": "IM Fell English, serif", + "slug": "wp-font-lib-im-fell-english", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell English" + }, + { + "src": "http://fonts.gstatic.com/s/imfellenglish/v14/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell English" + } + ] + }, + { + "name": "IM Fell English SC", + "fontFamily": "IM Fell English SC, serif", + "slug": "wp-font-lib-im-fell-english-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell English SC" + } + ] + }, + { + "name": "IM Fell French Canon", + "fontFamily": "IM Fell French Canon, serif", + "slug": "wp-font-lib-im-fell-french-canon", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell French Canon" + }, + { + "src": "http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell French Canon" + } + ] + }, + { + "name": "IM Fell French Canon SC", + "fontFamily": "IM Fell French Canon SC, serif", + "slug": "wp-font-lib-im-fell-french-canon-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell French Canon SC" + } + ] + }, + { + "name": "IM Fell Great Primer", + "fontFamily": "IM Fell Great Primer, serif", + "slug": "wp-font-lib-im-fell-great-primer", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell Great Primer" + }, + { + "src": "http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "IM Fell Great Primer" + } + ] + }, + { + "name": "IM Fell Great Primer SC", + "fontFamily": "IM Fell Great Primer SC, serif", + "slug": "wp-font-lib-im-fell-great-primer-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "IM Fell Great Primer SC" + } + ] + }, + { + "name": "Ibarra Real Nova", + "fontFamily": "Ibarra Real Nova, serif", + "slug": "wp-font-lib-ibarra-real-nova", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5MDtVT9TWIvS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdS5MDtVT9TWIvS.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXe-48DtVT9TWIvS.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXeH48DtVT9TWIvS.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopyiuXztxXZvSkTo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopxquXztxXZvSkTo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop_apXztxXZvSkTo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Ibarra Real Nova" + }, + { + "src": "http://fonts.gstatic.com/s/ibarrarealnova/v25/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop8-pXztxXZvSkTo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Ibarra Real Nova" + } + ] + }, + { + "name": "Iceberg", + "fontFamily": "Iceberg, system-ui", + "slug": "wp-font-lib-iceberg", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/iceberg/v20/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Iceberg" + } + ] + }, + { + "name": "Iceland", + "fontFamily": "Iceland, system-ui", + "slug": "wp-font-lib-iceland", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/iceland/v16/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Iceland" + } + ] + }, + { + "name": "Imbue", + "fontFamily": "Imbue, serif", + "slug": "wp-font-lib-imbue", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iWfOsNNK-Q4xY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iXfOsNNK-Q4xY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP5aXfOsNNK-Q4xY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXfOsNNK-Q4xY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP_qXfOsNNK-Q4xY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPxaQfOsNNK-Q4xY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPy-QfOsNNK-Q4xY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iQfOsNNK-Q4xY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Imbue" + }, + { + "src": "http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP2GQfOsNNK-Q4xY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Imbue" + } + ] + }, + { + "name": "Imperial Script", + "fontFamily": "Imperial Script, cursive", + "slug": "wp-font-lib-imperial-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imperialscript/v3/5DCPAKrpzy_H98IV2ISnZBbGrVNvPenlvttWNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Imperial Script" + } + ] + }, + { + "name": "Imprima", + "fontFamily": "Imprima, sans-serif", + "slug": "wp-font-lib-imprima", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/imprima/v18/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Imprima" + } + ] + }, + { + "name": "Inconsolata", + "fontFamily": "Inconsolata, monospace", + "slug": "wp-font-lib-inconsolata", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aRr8lleY2co.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aRr8lleY2co.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aRr8lleY2co.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aRr8lleY2co.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aRr8lleY2co.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aRr8lleY2co.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aRr8lleY2co.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + }, + { + "src": "http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aRr8lleY2co.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Inconsolata" + } + ] + }, + { + "name": "Inder", + "fontFamily": "Inder, sans-serif", + "slug": "wp-font-lib-inder", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4vq6pw-P3U4O.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inder" + } + ] + }, + { + "name": "Indie Flower", + "fontFamily": "Indie Flower, cursive", + "slug": "wp-font-lib-indie-flower", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/indieflower/v17/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Indie Flower" + } + ] + }, + { + "name": "Ingrid Darling", + "fontFamily": "Ingrid Darling, cursive", + "slug": "wp-font-lib-ingrid-darling", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ingriddarling/v2/LDIrapaJNxUtSuFdw-9yf4rCPsLOub458jGL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ingrid Darling" + } + ] + }, + { + "name": "Inika", + "fontFamily": "Inika, serif", + "slug": "wp-font-lib-inika", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-phTHRcc2s2XH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inika" + }, + { + "src": "http://fonts.gstatic.com/s/inika/v21/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inika" + } + ] + }, + { + "name": "Inknut Antiqua", + "fontFamily": "Inknut Antiqua, serif", + "slug": "wp-font-lib-inknut-antiqua", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + }, + { + "src": "http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Inknut Antiqua" + } + ] + }, + { + "name": "Inria Sans", + "fontFamily": "Inria Sans, sans-serif", + "slug": "wp-font-lib-inria-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3ELaDQtFqeY3fX4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPrcQybX4pQA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptROTiqXYfZMCOiVj9kQ1Oz4LSFrpe8uZA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3FLdDQtFqeY3fX4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inria Sans" + }, + { + "src": "http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PrcQybX4pQA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Inria Sans" + } + ] + }, + { + "name": "Inria Serif", + "fontFamily": "Inria Serif, serif", + "slug": "wp-font-lib-inria-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wAVQjFhFyta3xN.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT4THjliPbmxN0_E.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC1nPYxPY3rXxEndZJAzN3SudyjvqlCkcmU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wQUgjFhFyta3xN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inria Serif" + }, + { + "src": "http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT5TAjliPbmxN0_E.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Inria Serif" + } + ] + }, + { + "name": "Inspiration", + "fontFamily": "Inspiration, cursive", + "slug": "wp-font-lib-inspiration", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inspiration/v3/x3dkckPPZa6L4wIg5cZOEvoGnSrlBBsy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inspiration" + } + ] + }, + { + "name": "Instrument Sans", + "fontFamily": "Instrument Sans, sans-serif", + "slug": "wp-font-lib-instrument-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-Qf1mS0v3_7Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-Qf1mS0v3_7Y.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQb_gf1mS0v3_7Y.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gf1mS0v3_7Y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENuu-2kykN2u7YUwU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENut22kykN2u7YUwU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENujGxkykN2u7YUwU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Instrument Sans" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENugixkykN2u7YUwU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Instrument Sans" + } + ] + }, + { + "name": "Instrument Serif", + "fontFamily": "Instrument Serif, serif", + "slug": "wp-font-lib-instrument-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/instrumentserif/v4/jizBRFtNs2ka5fXjeivQ4LroWlx-2zIZj1bIkNo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Instrument Serif" + }, + { + "src": "http://fonts.gstatic.com/s/instrumentserif/v4/jizHRFtNs2ka5fXjeivQ4LroWlx-6zATi3TNgNq55w.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Instrument Serif" + } + ] + }, + { + "name": "Inter", + "fontFamily": "Inter, sans-serif", + "slug": "wp-font-lib-inter", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZhrib2Bg-4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Inter" + }, + { + "src": "http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZhrib2Bg-4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Inter" + } + ] + }, + { + "name": "Inter Tight", + "fontFamily": "Inter Tight, sans-serif", + "slug": "wp-font-lib-inter-tight", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw6qXCRToK8EPg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjw-qXCRToK8EPg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qXCRToK8EPg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qXCRToK8EPg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qXCRToK8EPg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqXCRToK8EPg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqXCRToK8EPg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjwiqXCRToK8EPg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqXCRToK8EPg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHi5XgqoUPvi5.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCHy5XgqoUPvi5.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0wcHy5XgqoUPvi5.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5XgqoUPvi5.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xwHy5XgqoUPvi5.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ycGC5XgqoUPvi5.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5XgqoUPvi5.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCGC5XgqoUPvi5.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + }, + { + "src": "http://fonts.gstatic.com/s/intertight/v3/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zrGC5XgqoUPvi5.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Inter Tight" + } + ] + }, + { + "name": "Irish Grover", + "fontFamily": "Irish Grover, system-ui", + "slug": "wp-font-lib-irish-grover", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Irish Grover" + } + ] + }, + { + "name": "Island Moments", + "fontFamily": "Island Moments, cursive", + "slug": "wp-font-lib-island-moments", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/islandmoments/v3/NaPBcZfVGvBdxIt7Ar0qzkXJF-TGIohbZ6SY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Island Moments" + } + ] + }, + { + "name": "Istok Web", + "fontFamily": "Istok Web, sans-serif", + "slug": "wp-font-lib-istok-web", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Istok Web" + }, + { + "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Istok Web" + }, + { + "src": "http://fonts.gstatic.com/s/istokweb/v21/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Istok Web" + }, + { + "src": "http://fonts.gstatic.com/s/istokweb/v21/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Istok Web" + } + ] + }, + { + "name": "Italiana", + "fontFamily": "Italiana, serif", + "slug": "wp-font-lib-italiana", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/italiana/v16/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Italiana" + } + ] + }, + { + "name": "Italianno", + "fontFamily": "Italianno, cursive", + "slug": "wp-font-lib-italianno", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/italianno/v17/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Italianno" + } + ] + }, + { + "name": "Itim", + "fontFamily": "Itim, cursive", + "slug": "wp-font-lib-itim", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/itim/v11/0nknC9ziJOYewARKkc7ZdwU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Itim" + } + ] + }, + { + "name": "Jacques Francois", + "fontFamily": "Jacques Francois, serif", + "slug": "wp-font-lib-jacques-francois", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jacquesfrancois/v20/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jacques Francois" + } + ] + }, + { + "name": "Jacques Francois Shadow", + "fontFamily": "Jacques Francois Shadow, system-ui", + "slug": "wp-font-lib-jacques-francois-shadow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v21/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jacques Francois Shadow" + } + ] + }, + { + "name": "Jaldi", + "fontFamily": "Jaldi, sans-serif", + "slug": "wp-font-lib-jaldi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jaldi/v12/or3sQ67z0_CI30NUZpD_B6g8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jaldi" + }, + { + "src": "http://fonts.gstatic.com/s/jaldi/v12/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Jaldi" + } + ] + }, + { + "name": "JetBrains Mono", + "fontFamily": "JetBrains Mono, monospace", + "slug": "wp-font-lib-jetbrains-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yK1jPVmUsaaDhw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKxjPVmUsaaDhw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8lqxjPVmUsaaDhw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPVmUsaaDhw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjPVmUsaaDhw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtjPVmUsaaDhw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjPVmUsaaDhw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKtjPVmUsaaDhw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-Lf1OQk6OThxPA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LflOQk6OThxPA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO_VflOQk6OThxPA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-LflOQk6OThxPA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-5flOQk6OThxPA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9VeVOQk6OThxPA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9seVOQk6OThxPA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + }, + { + "src": "http://fonts.gstatic.com/s/jetbrainsmono/v18/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LeVOQk6OThxPA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "JetBrains Mono" + } + ] + }, + { + "name": "Jim Nightshade", + "fontFamily": "Jim Nightshade, cursive", + "slug": "wp-font-lib-jim-nightshade", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jim Nightshade" + } + ] + }, + { + "name": "Joan", + "fontFamily": "Joan, serif", + "slug": "wp-font-lib-joan", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/joan/v2/ZXupe1oZsqWRbRdH8X1p_Ng.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Joan" + } + ] + }, + { + "name": "Jockey One", + "fontFamily": "Jockey One, sans-serif", + "slug": "wp-font-lib-jockey-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jockeyone/v16/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jockey One" + } + ] + }, + { + "name": "Jolly Lodger", + "fontFamily": "Jolly Lodger, system-ui", + "slug": "wp-font-lib-jolly-lodger", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jolly Lodger" + } + ] + }, + { + "name": "Jomhuria", + "fontFamily": "Jomhuria, system-ui", + "slug": "wp-font-lib-jomhuria", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jomhuria/v18/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jomhuria" + } + ] + }, + { + "name": "Jomolhari", + "fontFamily": "Jomolhari, serif", + "slug": "wp-font-lib-jomolhari", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jomolhari/v14/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jomolhari" + } + ] + }, + { + "name": "Josefin Sans", + "fontFamily": "Josefin Sans, sans-serif", + "slug": "wp-font-lib-josefin-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMFrLgTsQV0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMFrLgTsQV0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMFrLgTsQV0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMFrLgTsQV0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMFrLgTsQV0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMFrLgTsQV0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMFrLgTsQV0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKibpUV3MEQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKibpUV3MEQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKibpUV3MEQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKibpUV3MEQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKibpUV3MEQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKibpUV3MEQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + }, + { + "src": "http://fonts.gstatic.com/s/josefinsans/v26/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKibpUV3MEQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Josefin Sans" + } + ] + }, + { + "name": "Josefin Slab", + "fontFamily": "Josefin Slab, serif", + "slug": "wp-font-lib-josefin-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71mtd3k3K6CcEyI.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W79msd3k3K6CcEyI.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W7wesd3k3K6CcEyI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msd3k3K6CcEyI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W72usd3k3K6CcEyI.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W74erd3k3K6CcEyI.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W776rd3k3K6CcEyI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzs9L4KZAyK43w.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvHzo9L4KZAyK43w.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvwTo9L4KZAyK43w.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzo9L4KZAyK43w.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvrTo9L4KZAyK43w.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvQT09L4KZAyK43w.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + }, + { + "src": "http://fonts.gstatic.com/s/josefinslab/v24/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHveD09L4KZAyK43w.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Josefin Slab" + } + ] + }, + { + "name": "Jost", + "fontFamily": "Jost, sans-serif", + "slug": "wp-font-lib-jost", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJAVGPokMmuHL.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjJQVGPokMmuHL.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mz9JQVGPokMmuHL.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJQVGPokMmuHL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myRJQVGPokMmuHL.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mx9IgVGPokMmuHL.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mxEIgVGPokMmuHL.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjIgVGPokMmuHL.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwKIgVGPokMmuHL.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENI0un_HLMEo.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNI0un_HLMEo.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNI0un_HLMEo.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNI0un_HLMEo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNI0un_HLMEo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNI0un_HLMEo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNI0un_HLMEo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNI0un_HLMEo.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Jost" + }, + { + "src": "http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNI0un_HLMEo.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Jost" + } + ] + }, + { + "name": "Joti One", + "fontFamily": "Joti One, system-ui", + "slug": "wp-font-lib-joti-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jotione/v22/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Joti One" + } + ] + }, + { + "name": "Jua", + "fontFamily": "Jua, sans-serif", + "slug": "wp-font-lib-jua", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jua/v13/co3KmW9ljjAjc-DZCsKgsg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jua" + } + ] + }, + { + "name": "Judson", + "fontFamily": "Judson, serif", + "slug": "wp-font-lib-judson", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/judson/v19/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Judson" + }, + { + "src": "http://fonts.gstatic.com/s/judson/v19/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Judson" + }, + { + "src": "http://fonts.gstatic.com/s/judson/v19/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Judson" + } + ] + }, + { + "name": "Julee", + "fontFamily": "Julee, cursive", + "slug": "wp-font-lib-julee", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/julee/v25/TuGfUVB3RpZPQ6ZLodgzydtk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Julee" + } + ] + }, + { + "name": "Julius Sans One", + "fontFamily": "Julius Sans One, sans-serif", + "slug": "wp-font-lib-julius-sans-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/juliussansone/v14/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Julius Sans One" + } + ] + }, + { + "name": "Junge", + "fontFamily": "Junge, serif", + "slug": "wp-font-lib-junge", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/junge/v20/gokgH670Gl1lUqAdvhB7SnKm.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Junge" + } + ] + }, + { + "name": "Jura", + "fontFamily": "Jura, sans-serif", + "slug": "wp-font-lib-jura", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Jura" + }, + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Jura" + }, + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Jura" + }, + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Jura" + }, + { + "src": "http://fonts.gstatic.com/s/jura/v29/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Jura" + } + ] + }, + { + "name": "Just Another Hand", + "fontFamily": "Just Another Hand, cursive", + "slug": "wp-font-lib-just-another-hand", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/justanotherhand/v19/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Just Another Hand" + } + ] + }, + { + "name": "Just Me Again Down Here", + "fontFamily": "Just Me Again Down Here, cursive", + "slug": "wp-font-lib-just-me-again-down-here", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Just Me Again Down Here" + } + ] + }, + { + "name": "K2D", + "fontFamily": "K2D, sans-serif", + "slug": "wp-font-lib-k2d", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0ErE6UpvrIw74NL.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erv4QJlJw85ppSGw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er24cJlJw85ppSGw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aTnpF2V0ETd68tnLcg7w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0EjdaUpvrIw74NL.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erg4YJlJw85ppSGw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Err4EJlJw85ppSGw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Ery4AJlJw85ppSGw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er14MJlJw85ppSGw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "K2D" + }, + { + "src": "http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "K2D" + } + ] + }, + { + "name": "Kadwa", + "fontFamily": "Kadwa, serif", + "slug": "wp-font-lib-kadwa", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kadwa/v10/rnCm-x5V0g7iphTHRcc2s2XH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kadwa" + }, + { + "src": "http://fonts.gstatic.com/s/kadwa/v10/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kadwa" + } + ] + }, + { + "name": "Kaisei Decol", + "fontFamily": "Kaisei Decol, serif", + "slug": "wp-font-lib-kaisei-decol", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrwmSqP45sidWf3QmfFW6iyW1EP22OjoA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaisei Decol" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iKr3gr00i_qb57kA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kaisei Decol" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iK534r00i_qb57kA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kaisei Decol" + } + ] + }, + { + "name": "Kaisei HarunoUmi", + "fontFamily": "Kaisei HarunoUmi, serif", + "slug": "wp-font-lib-kaisei-harunoumi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_RiZQSLqBQoAHhK_C6N_nzy_jcGsv5sM8u3mk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaisei HarunoUmi" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcIj_QlMcFwmC9FAU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kaisei HarunoUmi" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcInfWlMcFwmC9FAU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kaisei HarunoUmi" + } + ] + }, + { + "name": "Kaisei Opti", + "fontFamily": "Kaisei Opti, serif", + "slug": "wp-font-lib-kaisei-opti", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldKNThJphYb8_g6c2nlIFle7KlmxuHx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaisei Opti" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGGqxY1u7f34DYwn.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kaisei Opti" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGHiw41u7f34DYwn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kaisei Opti" + } + ] + }, + { + "name": "Kaisei Tokumin", + "fontFamily": "Kaisei Tokumin, serif", + "slug": "wp-font-lib-kaisei-tokumin", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8sN5wdZg7xCwuMsylww2ZiQkJf1l0pj946.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaisei Tokumin" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnqr_3khpMIzeI6v.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kaisei Tokumin" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnrj-XkhpMIzeI6v.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kaisei Tokumin" + }, + { + "src": "http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnr_-nkhpMIzeI6v.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Kaisei Tokumin" + } + ] + }, + { + "name": "Kalam", + "fontFamily": "Kalam, cursive", + "slug": "wp-font-lib-kalam", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kalam" + }, + { + "src": "http://fonts.gstatic.com/s/kalam/v16/YA9dr0Wd4kDdMuhWMibDszkB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kalam" + }, + { + "src": "http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kalam" + } + ] + }, + { + "name": "Kameron", + "fontFamily": "Kameron, serif", + "slug": "wp-font-lib-kameron", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kameron/v15/vm82dR7vXErQxuznsL4wL-XIYH8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kameron" + }, + { + "src": "http://fonts.gstatic.com/s/kameron/v15/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kameron" + } + ] + }, + { + "name": "Kanit", + "fontFamily": "Kanit, sans-serif", + "slug": "wp-font-lib-kanit", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKZ-Go6G5tXcoaSEQGodLxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Kanit" + }, + { + "src": "http://fonts.gstatic.com/s/kanit/v13/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Kanit" + } + ] + }, + { + "name": "Kantumruy Pro", + "fontFamily": "Kantumruy Pro, sans-serif", + "slug": "wp-font-lib-kantumruy-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urUs0M34dR6dW.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg3urEs0M34dR6dW.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg0wrEs0M34dR6dW.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urEs0M34dR6dW.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1crEs0M34dR6dW.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2wq0s0M34dR6dW.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2Jq0s0M34dR6dW.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N2OXo_QrdWlcU.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7yN3OXo_QrdWlcU.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7_13OXo_QrdWlcU.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N3OXo_QrdWlcU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim75F3OXo_QrdWlcU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim731wOXo_QrdWlcU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + }, + { + "src": "http://fonts.gstatic.com/s/kantumruypro/v8/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim70RwOXo_QrdWlcU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kantumruy Pro" + } + ] + }, + { + "name": "Karantina", + "fontFamily": "Karantina, system-ui", + "slug": "wp-font-lib-karantina", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxXCgf-P5Oaiw4cw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Karantina" + }, + { + "src": "http://fonts.gstatic.com/s/karantina/v11/buE0po24ccnh31GVMABJ8AA78NVSYw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Karantina" + }, + { + "src": "http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxTC8f-P5Oaiw4cw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Karantina" + } + ] + }, + { + "name": "Karla", + "fontFamily": "Karla, sans-serif", + "slug": "wp-font-lib-karla", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqFENLR7fHGw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqFENLR7fHGw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFENLR7fHGw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqFENLR7fHGw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qFENLR7fHGw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qFENLR7fHGw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qFENLR7fHGw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCV0lPZbLXGxGR.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNkcV0lPZbLXGxGR.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlCV0lPZbLXGxGR.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlwV0lPZbLXGxGR.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmcUElPZbLXGxGR.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmlUElPZbLXGxGR.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Karla" + }, + { + "src": "http://fonts.gstatic.com/s/karla/v30/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCUElPZbLXGxGR.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Karla" + } + ] + }, + { + "name": "Karma", + "fontFamily": "Karma, serif", + "slug": "wp-font-lib-karma", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Karma" + }, + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9I4kzAzMZRGIBvS-J3kbDP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Karma" + }, + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Karma" + }, + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Karma" + }, + { + "src": "http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Karma" + } + ] + }, + { + "name": "Katibeh", + "fontFamily": "Katibeh, system-ui", + "slug": "wp-font-lib-katibeh", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/katibeh/v17/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Katibeh" + } + ] + }, + { + "name": "Kaushan Script", + "fontFamily": "Kaushan Script, cursive", + "slug": "wp-font-lib-kaushan-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kaushanscript/v14/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kaushan Script" + } + ] + }, + { + "name": "Kavivanar", + "fontFamily": "Kavivanar, cursive", + "slug": "wp-font-lib-kavivanar", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kavivanar/v18/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kavivanar" + } + ] + }, + { + "name": "Kavoon", + "fontFamily": "Kavoon, system-ui", + "slug": "wp-font-lib-kavoon", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kavoon/v21/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kavoon" + } + ] + }, + { + "name": "Kdam Thmor Pro", + "fontFamily": "Kdam Thmor Pro, sans-serif", + "slug": "wp-font-lib-kdam-thmor-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kdamthmorpro/v1/EJRPQgAzVdcI-Qdvt34jzurnGA7_j89I8ZWb.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kdam Thmor Pro" + } + ] + }, + { + "name": "Keania One", + "fontFamily": "Keania One, system-ui", + "slug": "wp-font-lib-keania-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/keaniaone/v21/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Keania One" + } + ] + }, + { + "name": "Kelly Slab", + "fontFamily": "Kelly Slab, system-ui", + "slug": "wp-font-lib-kelly-slab", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kellyslab/v15/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kelly Slab" + } + ] + }, + { + "name": "Kenia", + "fontFamily": "Kenia, system-ui", + "slug": "wp-font-lib-kenia", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kenia/v24/jizURE5PuHQH9qCONUGswfGM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kenia" + } + ] + }, + { + "name": "Khand", + "fontFamily": "Khand, sans-serif", + "slug": "wp-font-lib-khand", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Khand" + }, + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMA-IINQlQQ0YpVWHU_TBqO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Khand" + }, + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Khand" + }, + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Khand" + }, + { + "src": "http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Khand" + } + ] + }, + { + "name": "Khmer", + "fontFamily": "Khmer, system-ui", + "slug": "wp-font-lib-khmer", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/khmer/v25/MjQImit_vPPwpF-BpN2EeYmD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Khmer" + } + ] + }, + { + "name": "Khula", + "fontFamily": "Khula, sans-serif", + "slug": "wp-font-lib-khula", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Khula" + }, + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNCnoEOns3V7FcJpA_chzJ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Khula" + }, + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Khula" + }, + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Khula" + }, + { + "src": "http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Khula" + } + ] + }, + { + "name": "Kings", + "fontFamily": "Kings, cursive", + "slug": "wp-font-lib-kings", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kings/v5/8AtnGsK4O5CYXU_Iq6GSPaHS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kings" + } + ] + }, + { + "name": "Kirang Haerang", + "fontFamily": "Kirang Haerang, system-ui", + "slug": "wp-font-lib-kirang-haerang", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kiranghaerang/v20/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kirang Haerang" + } + ] + }, + { + "name": "Kite One", + "fontFamily": "Kite One, sans-serif", + "slug": "wp-font-lib-kite-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kiteone/v22/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kite One" + } + ] + }, + { + "name": "Kiwi Maru", + "fontFamily": "Kiwi Maru, serif", + "slug": "wp-font-lib-kiwi-maru", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gNCi0Vxn9R5ShnA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kiwi Maru" + }, + { + "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70YjykGkuuDep-hRg6YmACQXzLhTg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kiwi Maru" + }, + { + "src": "http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gbCm0Vxn9R5ShnA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kiwi Maru" + } + ] + }, + { + "name": "Klee One", + "fontFamily": "Klee One, cursive", + "slug": "wp-font-lib-klee-one", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kleeone/v7/LDIxapCLNRc6A8oT4q4AOeekWPrP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Klee One" + }, + { + "src": "http://fonts.gstatic.com/s/kleeone/v7/LDI2apCLNRc6A8oT4pbYF8Osc-bGkqIw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Klee One" + } + ] + }, + { + "name": "Knewave", + "fontFamily": "Knewave, system-ui", + "slug": "wp-font-lib-knewave", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Knewave" + } + ] + }, + { + "name": "KoHo", + "fontFamily": "KoHo, sans-serif", + "slug": "wp-font-lib-koho", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2F-fZ5fmddNBikefJbSOos.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "KoHo" + }, + { + "src": "http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "KoHo" + } + ] + }, + { + "name": "Kodchasan", + "fontFamily": "Kodchasan, sans-serif", + "slug": "wp-font-lib-kodchasan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kodchasan" + }, + { + "src": "http://fonts.gstatic.com/s/kodchasan/v17/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kodchasan" + } + ] + }, + { + "name": "Koh Santepheap", + "fontFamily": "Koh Santepheap, system-ui", + "slug": "wp-font-lib-koh-santepheap", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMfW3p6SJbwyGj2rBZyeOrTjNuFHVyTtjNJUWU.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + }, + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtNP3y5mD9ASHz5.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + }, + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMdW3p6SJbwyGj2rBZyeOrTjOPhF1ixsyNJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + }, + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtdOHy5mD9ASHz5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + }, + { + "src": "http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtlOny5mD9ASHz5.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Koh Santepheap" + } + ] + }, + { + "name": "Kolker Brush", + "fontFamily": "Kolker Brush, cursive", + "slug": "wp-font-lib-kolker-brush", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kolkerbrush/v3/iJWDBXWRZjfKWdvmzwvvog3-7KJ6x8qNUQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kolker Brush" + } + ] + }, + { + "name": "Konkhmer Sleokchher", + "fontFamily": "Konkhmer Sleokchher, system-ui", + "slug": "wp-font-lib-konkhmer-sleokchher", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/konkhmersleokchher/v2/_Xmw-GE-rjmabA_M-aPOZOsCrUv825LFI3507E0d-W0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Konkhmer Sleokchher" + } + ] + }, + { + "name": "Kosugi", + "fontFamily": "Kosugi, sans-serif", + "slug": "wp-font-lib-kosugi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kosugi/v15/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kosugi" + } + ] + }, + { + "name": "Kosugi Maru", + "fontFamily": "Kosugi Maru, sans-serif", + "slug": "wp-font-lib-kosugi-maru", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kosugimaru/v14/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kosugi Maru" + } + ] + }, + { + "name": "Kotta One", + "fontFamily": "Kotta One, serif", + "slug": "wp-font-lib-kotta-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kotta One" + } + ] + }, + { + "name": "Koulen", + "fontFamily": "Koulen, system-ui", + "slug": "wp-font-lib-koulen", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/koulen/v25/AMOQz46as3KIBPeWgnA9kuYMUg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Koulen" + } + ] + }, + { + "name": "Kranky", + "fontFamily": "Kranky, system-ui", + "slug": "wp-font-lib-kranky", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kranky/v24/hESw6XVgJzlPsFnMpheEZo_H_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kranky" + } + ] + }, + { + "name": "Kreon", + "fontFamily": "Kreon, serif", + "slug": "wp-font-lib-kreon", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kreon" + }, + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kreon" + }, + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kreon" + }, + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kreon" + }, + { + "src": "http://fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kreon" + } + ] + }, + { + "name": "Kristi", + "fontFamily": "Kristi, cursive", + "slug": "wp-font-lib-kristi", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kristi/v17/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kristi" + } + ] + }, + { + "name": "Krona One", + "fontFamily": "Krona One, sans-serif", + "slug": "wp-font-lib-krona-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Krona One" + } + ] + }, + { + "name": "Krub", + "fontFamily": "Krub, sans-serif", + "slug": "wp-font-lib-krub", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlLdRyC6CRYXkYQDLlTW6E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Krub" + }, + { + "src": "http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Krub" + } + ] + }, + { + "name": "Kufam", + "fontFamily": "Kufam, sans-serif", + "slug": "wp-font-lib-kufam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqk7qQCJHvIwYg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3pKk7qQCJHvIwYg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3SK47qQCJHvIwYg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3ca47qQCJHvIwYg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3Fq47qQCJHvIwYg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3P647qQCJHvIwYg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurT6gqNPPcgYp0i.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurh6gqNPPcgYp0i.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuoN7QqNPPcgYp0i.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuo07QqNPPcgYp0i.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXupT7QqNPPcgYp0i.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Kufam" + }, + { + "src": "http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXup67QqNPPcgYp0i.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Kufam" + } + ] + }, + { + "name": "Kulim Park", + "fontFamily": "Kulim Park, sans-serif", + "slug": "wp-font-lib-kulim-park", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjJYNwa5aZbUvGjU.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUKa9QYZcqCjVVUA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjPIOwa5aZbUvGjU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUTaxQYZcqCjVVUA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN59secq3hflz1Uu3IwhFws4YR0abw2Aw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjIYIwa5aZbUvGjU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUOapQYZcqCjVVUA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjOIJwa5aZbUvGjU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kulim Park" + }, + { + "src": "http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUXatQYZcqCjVVUA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Kulim Park" + } + ] + }, + { + "name": "Kumar One", + "fontFamily": "Kumar One, system-ui", + "slug": "wp-font-lib-kumar-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kumarone/v18/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kumar One" + } + ] + }, + { + "name": "Kumar One Outline", + "fontFamily": "Kumar One Outline, system-ui", + "slug": "wp-font-lib-kumar-one-outline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kumar One Outline" + } + ] + }, + { + "name": "Kumbh Sans", + "fontFamily": "Kumbh Sans, sans-serif", + "slug": "wp-font-lib-kumbh-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZcA8bTuUkqaLg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZYA8bTuUkqaLg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQz5YA8bTuUkqaLg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQkZYA8bTuUkqaLg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQo5YA8bTuUkqaLg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQT5EA8bTuUkqaLg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQdpEA8bTuUkqaLg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQEZEA8bTuUkqaLg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + }, + { + "src": "http://fonts.gstatic.com/s/kumbhsans/v20/c4mP1n92AsfhuCq6tVsaoIx1LQICk0boNoq0SjlDfnzKo-bF3mdQOJEA8bTuUkqaLg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Kumbh Sans" + } + ] + }, + { + "name": "Kurale", + "fontFamily": "Kurale, serif", + "slug": "wp-font-lib-kurale", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/kurale/v11/4iCs6KV9e9dXjho6eAT3v02QFg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Kurale" + } + ] + }, + { + "name": "La Belle Aurore", + "fontFamily": "La Belle Aurore, cursive", + "slug": "wp-font-lib-la-belle-aurore", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/labelleaurore/v16/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "La Belle Aurore" + } + ] + }, + { + "name": "Labrada", + "fontFamily": "Labrada, serif", + "slug": "wp-font-lib-labrada", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSgM4QPdUej17.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTSwM4QPdUej17.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9UNSwM4QPdUej17.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VTSwM4QPdUej17.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9VhSwM4QPdUej17.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9WNTAM4QPdUej17.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9W0TAM4QPdUej17.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9XTTAM4QPdUej17.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVh2Y9HLWefIpOyF1Vi3ZqDss1Px9X6TAM4QPdUej17.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt6SvN2fy17-dE.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt7SvN2fy17-dE.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCLV7SvN2fy17-dE.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCOt7SvN2fy17-dE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCNl7SvN2fy17-dE.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCDV8SvN2fy17-dE.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCAx8SvN2fy17-dE.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCGt8SvN2fy17-dE.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Labrada" + }, + { + "src": "http://fonts.gstatic.com/s/labrada/v2/ieVv2Y9HLWefIpOyPVxQIkLq2VfhwMCbCEJ8SvN2fy17-dE.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Labrada" + } + ] + }, + { + "name": "Lacquer", + "fontFamily": "Lacquer, system-ui", + "slug": "wp-font-lib-lacquer", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lacquer/v15/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lacquer" + } + ] + }, + { + "name": "Laila", + "fontFamily": "Laila, sans-serif", + "slug": "wp-font-lib-laila", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Laila" + }, + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjMdG_8nE8jDIRdiidIrEIu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Laila" + }, + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Laila" + }, + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Laila" + }, + { + "src": "http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Laila" + } + ] + }, + { + "name": "Lakki Reddy", + "fontFamily": "Lakki Reddy, cursive", + "slug": "wp-font-lib-lakki-reddy", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lakkireddy/v19/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lakki Reddy" + } + ] + }, + { + "name": "Lalezar", + "fontFamily": "Lalezar, system-ui", + "slug": "wp-font-lib-lalezar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lalezar/v14/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lalezar" + } + ] + }, + { + "name": "Lancelot", + "fontFamily": "Lancelot, system-ui", + "slug": "wp-font-lib-lancelot", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lancelot/v23/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lancelot" + } + ] + }, + { + "name": "Langar", + "fontFamily": "Langar, system-ui", + "slug": "wp-font-lib-langar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/langar/v27/kJEyBukW7AIlgjGVrTVZ99sqrQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Langar" + } + ] + }, + { + "name": "Lateef", + "fontFamily": "Lateef, serif", + "slug": "wp-font-lib-lateef", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0bjygbqTb9nQ-RA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0Cj-gbqTb9nQ-RA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v29/hESw6XVnNCxEvkbMpheEZo_H_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0Uj6gbqTb9nQ-RA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0fjmgbqTb9nQ-RA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0GjigbqTb9nQ-RA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lateef" + }, + { + "src": "http://fonts.gstatic.com/s/lateef/v29/hESz6XVnNCxEvkb0BjugbqTb9nQ-RA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lateef" + } + ] + }, + { + "name": "Lato", + "fontFamily": "Lato, sans-serif", + "slug": "wp-font-lib-lato", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lato" + }, + { + "src": "http://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Lato" + } + ] + }, + { + "name": "Lavishly Yours", + "fontFamily": "Lavishly Yours, cursive", + "slug": "wp-font-lib-lavishly-yours", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lavishlyyours/v2/jizDREVIvGwH5OjiZmX9r5z_WxUY0TY7ikbI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lavishly Yours" + } + ] + }, + { + "name": "League Gothic", + "fontFamily": "League Gothic, sans-serif", + "slug": "wp-font-lib-league-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/leaguegothic/v6/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_-amidQ6Q9hn.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "League Gothic" + } + ] + }, + { + "name": "League Script", + "fontFamily": "League Script, cursive", + "slug": "wp-font-lib-league-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/leaguescript/v24/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "League Script" + } + ] + }, + { + "name": "League Spartan", + "fontFamily": "League Spartan, sans-serif", + "slug": "wp-font-lib-league-spartan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpBMdcFguczA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpBMdcFguczA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpBMdcFguczA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpBMdcFguczA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpBMdcFguczA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpBMdcFguczA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpBMdcFguczA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpBMdcFguczA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "League Spartan" + }, + { + "src": "http://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpBMdcFguczA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "League Spartan" + } + ] + }, + { + "name": "Leckerli One", + "fontFamily": "Leckerli One, cursive", + "slug": "wp-font-lib-leckerli-one", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/leckerlione/v16/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Leckerli One" + } + ] + }, + { + "name": "Ledger", + "fontFamily": "Ledger, serif", + "slug": "wp-font-lib-ledger", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ledger" + } + ] + }, + { + "name": "Lekton", + "fontFamily": "Lekton, sans-serif", + "slug": "wp-font-lib-lekton", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lekton/v17/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lekton" + }, + { + "src": "http://fonts.gstatic.com/s/lekton/v17/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Lekton" + }, + { + "src": "http://fonts.gstatic.com/s/lekton/v17/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lekton" + } + ] + }, + { + "name": "Lemon", + "fontFamily": "Lemon, system-ui", + "slug": "wp-font-lib-lemon", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lemon/v15/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lemon" + } + ] + }, + { + "name": "Lemonada", + "fontFamily": "Lemonada, system-ui", + "slug": "wp-font-lib-lemonada", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2mfWc3Z2pTg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lemonada" + }, + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2mfWc3Z2pTg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lemonada" + }, + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2mfWc3Z2pTg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lemonada" + }, + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2mfWc3Z2pTg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lemonada" + }, + { + "src": "http://fonts.gstatic.com/s/lemonada/v26/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2mfWc3Z2pTg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lemonada" + } + ] + }, + { + "name": "Lexend", + "fontFamily": "Lexend, sans-serif", + "slug": "wp-font-lib-lexend", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsX_LBte6KuGEo.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sW_LBte6KuGEo.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LBte6KuGEo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LBte6KuGEo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend" + }, + { + "src": "http://fonts.gstatic.com/s/lexend/v18/wlptgwvFAVdoq2_F94zlCfv0bz1WC5IR_LBte6KuGEo.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend" + } + ] + }, + { + "name": "Lexend Deca", + "fontFamily": "Lexend Deca, sans-serif", + "slug": "wp-font-lib-lexend-deca", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48MxArBPCqLNflg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cM1ArBPCqLNflg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4rs1ArBPCqLNflg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1ArBPCqLNflg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1ArBPCqLNflg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4LspArBPCqLNflg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4F8pArBPCqLNflg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cMpArBPCqLNflg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + }, + { + "src": "http://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4WcpArBPCqLNflg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Deca" + } + ] + }, + { + "name": "Lexend Exa", + "fontFamily": "Lexend Exa, sans-serif", + "slug": "wp-font-lib-lexend-exa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + }, + { + "src": "http://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Exa" + } + ] + }, + { + "name": "Lexend Giga", + "fontFamily": "Lexend Giga, sans-serif", + "slug": "wp-font-lib-lexend-giga", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LmE68oo6eepYQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWLiE68oo6eepYQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRChriE68oo6eepYQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LiE68oo6eepYQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC6riE68oo6eepYQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCBr-E68oo6eepYQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCP7-E68oo6eepYQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWL-E68oo6eepYQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + }, + { + "src": "http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCcb-E68oo6eepYQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Giga" + } + ] + }, + { + "name": "Lexend Mega", + "fontFamily": "Lexend Mega, sans-serif", + "slug": "wp-font-lib-lexend-mega", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fivveyiq9EqQw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcfmvveyiq9EqQw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLr_mvveyiq9EqQw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmvveyiq9EqQw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLw_mvveyiq9EqQw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLL_6vveyiq9EqQw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLFv6vveyiq9EqQw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vveyiq9EqQw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + }, + { + "src": "http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLWP6vveyiq9EqQw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Mega" + } + ] + }, + { + "name": "Lexend Peta", + "fontFamily": "Lexend Peta, sans-serif", + "slug": "wp-font-lib-lexend-peta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SFyW1YuRTsnfw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSByW1YuRTsnfw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRtyByW1YuRTsnfw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SByW1YuRTsnfw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR2yByW1YuRTsnfw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRNydyW1YuRTsnfw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRDidyW1YuRTsnfw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSdyW1YuRTsnfw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendpeta/v27/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRQCdyW1YuRTsnfw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Peta" + } + ] + }, + { + "name": "Lexend Tera", + "fontFamily": "Lexend Tera, sans-serif", + "slug": "wp-font-lib-lexend-tera", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zITdpz0fYxcrQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzMTdpz0fYxcrQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMuTMTdpz0fYxcrQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMTdpz0fYxcrQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM1TMTdpz0fYxcrQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMOTQTdpz0fYxcrQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMADQTdpz0fYxcrQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzQTdpz0fYxcrQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + }, + { + "src": "http://fonts.gstatic.com/s/lexendtera/v27/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMTjQTdpz0fYxcrQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Tera" + } + ] + }, + { + "name": "Lexend Zetta", + "fontFamily": "Lexend Zetta, sans-serif", + "slug": "wp-font-lib-lexend-zetta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bH0z5jbs8qbts.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bG0z5jbs8qbts.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0z5jbs8qbts.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG0z5jbs8qbts.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy-TG0z5jbs8qbts.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCywjB0z5jbs8qbts.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCyzHB0z5jbs8qbts.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + }, + { + "src": "http://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy3_B0z5jbs8qbts.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Lexend Zetta" + } + ] + }, + { + "name": "Libre Barcode 128", + "fontFamily": "Libre Barcode 128, system-ui", + "slug": "wp-font-lib-libre-barcode-128", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode128/v26/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 128" + } + ] + }, + { + "name": "Libre Barcode 128 Text", + "fontFamily": "Libre Barcode 128 Text, system-ui", + "slug": "wp-font-lib-libre-barcode-128-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode128text/v26/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 128 Text" + } + ] + }, + { + "name": "Libre Barcode 39", + "fontFamily": "Libre Barcode 39, system-ui", + "slug": "wp-font-lib-libre-barcode-39", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode39/v19/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 39" + } + ] + }, + { + "name": "Libre Barcode 39 Extended", + "fontFamily": "Libre Barcode 39 Extended, system-ui", + "slug": "wp-font-lib-libre-barcode-39-extended", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode39extended/v25/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 39 Extended" + } + ] + }, + { + "name": "Libre Barcode 39 Extended Text", + "fontFamily": "Libre Barcode 39 Extended Text, system-ui", + "slug": "wp-font-lib-libre-barcode-39-extended-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode39extendedtext/v25/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 39 Extended Text" + } + ] + }, + { + "name": "Libre Barcode 39 Text", + "fontFamily": "Libre Barcode 39 Text, system-ui", + "slug": "wp-font-lib-libre-barcode-39-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcode39text/v26/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode 39 Text" + } + ] + }, + { + "name": "Libre Barcode EAN13 Text", + "fontFamily": "Libre Barcode EAN13 Text, system-ui", + "slug": "wp-font-lib-libre-barcode-ean13-text", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebarcodeean13text/v19/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Barcode EAN13 Text" + } + ] + }, + { + "name": "Libre Baskerville", + "fontFamily": "Libre Baskerville, serif", + "slug": "wp-font-lib-libre-baskerville", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Baskerville" + }, + { + "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Libre Baskerville" + }, + { + "src": "http://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Libre Baskerville" + } + ] + }, + { + "name": "Libre Bodoni", + "fontFamily": "Libre Bodoni, serif", + "slug": "wp-font-lib-libre-bodoni", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6I1fwWzZcOb3U3s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6L9fwWzZcOb3U3s.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6FNYwWzZcOb3U3s.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6GpYwWzZcOb3U3s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcKS_TdMTyQ3syLg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcGy_TdMTyQ3syLg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUc9yjTdMTyQ3syLg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Libre Bodoni" + }, + { + "src": "http://fonts.gstatic.com/s/librebodoni/v5/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUczijTdMTyQ3syLg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Libre Bodoni" + } + ] + }, + { + "name": "Libre Caslon Display", + "fontFamily": "Libre Caslon Display, serif", + "slug": "wp-font-lib-libre-caslon-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librecaslondisplay/v14/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Caslon Display" + } + ] + }, + { + "name": "Libre Caslon Text", + "fontFamily": "Libre Caslon Text, serif", + "slug": "wp-font-lib-libre-caslon-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Caslon Text" + }, + { + "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Libre Caslon Text" + }, + { + "src": "http://fonts.gstatic.com/s/librecaslontext/v5/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Libre Caslon Text" + } + ] + }, + { + "name": "Libre Franklin", + "fontFamily": "Libre Franklin, sans-serif", + "slug": "wp-font-lib-libre-franklin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsSUB9rIb-JH1g.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsWUB9rIb-JH1g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWUB9rIb-JH1g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWUB9rIb-JH1g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWUB9rIb-JH1g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKUB9rIb-JH1g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKUB9rIb-JH1g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKUB9rIb-JH1g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KUB9rIb-JH1g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RdDMTedX1sGE.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8RNDMTedX1sGE.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oYiRNDMTedX1sGE.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RNDMTedX1sGE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZORNDMTedX1sGE.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oaiQ9DMTedX1sGE.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oabQ9DMTedX1sGE.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8Q9DMTedX1sGE.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + }, + { + "src": "http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05obVQ9DMTedX1sGE.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Libre Franklin" + } + ] + }, + { + "name": "Licorice", + "fontFamily": "Licorice, cursive", + "slug": "wp-font-lib-licorice", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/licorice/v3/t5tjIR8TMomTCAyjNk23hqLgzCHu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Licorice" + } + ] + }, + { + "name": "Life Savers", + "fontFamily": "Life Savers, system-ui", + "slug": "wp-font-lib-life-savers", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Life Savers" + }, + { + "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Life Savers" + }, + { + "src": "http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Life Savers" + } + ] + }, + { + "name": "Lilita One", + "fontFamily": "Lilita One, system-ui", + "slug": "wp-font-lib-lilita-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lilitaone/v13/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lilita One" + } + ] + }, + { + "name": "Lily Script One", + "fontFamily": "Lily Script One, system-ui", + "slug": "wp-font-lib-lily-script-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lily Script One" + } + ] + }, + { + "name": "Limelight", + "fontFamily": "Limelight, system-ui", + "slug": "wp-font-lib-limelight", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/limelight/v17/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Limelight" + } + ] + }, + { + "name": "Linden Hill", + "fontFamily": "Linden Hill, serif", + "slug": "wp-font-lib-linden-hill", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lindenhill/v22/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Linden Hill" + }, + { + "src": "http://fonts.gstatic.com/s/lindenhill/v22/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Linden Hill" + } + ] + }, + { + "name": "Literata", + "fontFamily": "Literata, serif", + "slug": "wp-font-lib-literata", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG_F_bcTWCWp8g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbE-_F_bcTWCWp8g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_F_bcTWCWp8g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbCO_F_bcTWCWp8g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbM-4F_bcTWCWp8g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbPa4F_bcTWCWp8g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG4F_bcTWCWp8g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbLi4F_bcTWCWp8g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7XWSUKTt8iVow.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8obXWSUKTt8iVow.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8_7XWSUKTt8iVow.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8zbXWSUKTt8iVow.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8IbLWSUKTt8iVow.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8GLLWSUKTt8iVow.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7LWSUKTt8iVow.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Literata" + }, + { + "src": "http://fonts.gstatic.com/s/literata/v34/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8VrLWSUKTt8iVow.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Literata" + } + ] + }, + { + "name": "Liu Jian Mao Cao", + "fontFamily": "Liu Jian Mao Cao, cursive", + "slug": "wp-font-lib-liu-jian-mao-cao", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/liujianmaocao/v15/~ChIKEExpdSBKaWFuIE1hbyBDYW8gACoECAEYAQ==.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Liu Jian Mao Cao" + } + ] + }, + { + "name": "Livvic", + "fontFamily": "Livvic, sans-serif", + "slug": "wp-font-lib-livvic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Livvic" + }, + { + "src": "http://fonts.gstatic.com/s/livvic/v14/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Livvic" + } + ] + }, + { + "name": "Lobster", + "fontFamily": "Lobster, system-ui", + "slug": "wp-font-lib-lobster", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lobster/v28/neILzCirqoswsqX9_oWsMqEzSJQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lobster" + } + ] + }, + { + "name": "Lobster Two", + "fontFamily": "Lobster Two, system-ui", + "slug": "wp-font-lib-lobster-two", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lobster Two" + }, + { + "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Lobster Two" + }, + { + "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lobster Two" + }, + { + "src": "http://fonts.gstatic.com/s/lobstertwo/v18/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Lobster Two" + } + ] + }, + { + "name": "Londrina Outline", + "fontFamily": "Londrina Outline, system-ui", + "slug": "wp-font-lib-londrina-outline", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/londrinaoutline/v23/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Londrina Outline" + } + ] + }, + { + "name": "Londrina Shadow", + "fontFamily": "Londrina Shadow, system-ui", + "slug": "wp-font-lib-londrina-shadow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/londrinashadow/v22/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Londrina Shadow" + } + ] + }, + { + "name": "Londrina Sketch", + "fontFamily": "Londrina Sketch, system-ui", + "slug": "wp-font-lib-londrina-sketch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/londrinasketch/v21/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Londrina Sketch" + } + ] + }, + { + "name": "Londrina Solid", + "fontFamily": "Londrina Solid, system-ui", + "slug": "wp-font-lib-londrina-solid", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Londrina Solid" + }, + { + "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Londrina Solid" + }, + { + "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Londrina Solid" + }, + { + "src": "http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Londrina Solid" + } + ] + }, + { + "name": "Long Cang", + "fontFamily": "Long Cang, cursive", + "slug": "wp-font-lib-long-cang", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/longcang/v17/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Long Cang" + } + ] + }, + { + "name": "Lora", + "fontFamily": "Lora, serif", + "slug": "wp-font-lib-lora", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuyJGmKxemMeZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJGmKxemMeZ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJGmKxemMeZ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJGmKxemMeZ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqh8ndeZzZ0.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqh8ndeZzZ0.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqh8ndeZzZ0.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Lora" + }, + { + "src": "http://fonts.gstatic.com/s/lora/v32/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqh8ndeZzZ0.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Lora" + } + ] + }, + { + "name": "Love Light", + "fontFamily": "Love Light, cursive", + "slug": "wp-font-lib-love-light", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lovelight/v3/t5tlIR0TNJyZWimpNAXDjKbCyTHuspo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Love Light" + } + ] + }, + { + "name": "Love Ya Like A Sister", + "fontFamily": "Love Ya Like A Sister, system-ui", + "slug": "wp-font-lib-love-ya-like-a-sister", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/loveyalikeasister/v16/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Love Ya Like A Sister" + } + ] + }, + { + "name": "Loved by the King", + "fontFamily": "Loved by the King, cursive", + "slug": "wp-font-lib-loved-by-the-king", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lovedbytheking/v17/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Loved by the King" + } + ] + }, + { + "name": "Lovers Quarrel", + "fontFamily": "Lovers Quarrel, cursive", + "slug": "wp-font-lib-lovers-quarrel", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/loversquarrel/v21/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lovers Quarrel" + } + ] + }, + { + "name": "Luckiest Guy", + "fontFamily": "Luckiest Guy, system-ui", + "slug": "wp-font-lib-luckiest-guy", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/luckiestguy/v18/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Luckiest Guy" + } + ] + }, + { + "name": "Lusitana", + "fontFamily": "Lusitana, serif", + "slug": "wp-font-lib-lusitana", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lusitana" + }, + { + "src": "http://fonts.gstatic.com/s/lusitana/v13/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Lusitana" + } + ] + }, + { + "name": "Lustria", + "fontFamily": "Lustria, serif", + "slug": "wp-font-lib-lustria", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Lustria" + } + ] + }, + { + "name": "Luxurious Roman", + "fontFamily": "Luxurious Roman, system-ui", + "slug": "wp-font-lib-luxurious-roman", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/luxuriousroman/v4/buEupou_ZcP1w0yTKxJJokVSmbpqYgckeo9RMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Luxurious Roman" + } + ] + }, + { + "name": "Luxurious Script", + "fontFamily": "Luxurious Script, cursive", + "slug": "wp-font-lib-luxurious-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/luxuriousscript/v5/ahcCv9e7yydulT32KZ0rBIoD7DzMg0rOby1JtYk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Luxurious Script" + } + ] + }, + { + "name": "M PLUS 1", + "fontFamily": "M PLUS 1, sans-serif", + "slug": "wp-font-lib-m-plus-1", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSe78nZcsGGycA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51Sa78nZcsGGycA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Cya78nZcsGGycA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSa78nZcsGGycA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Zya78nZcsGGycA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5iyG78nZcsGGycA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5siG78nZcsGGycA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51SG78nZcsGGycA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5_CG78nZcsGGycA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "M PLUS 1" + } + ] + }, + { + "name": "M PLUS 1 Code", + "fontFamily": "M PLUS 1 Code, sans-serif", + "slug": "wp-font-lib-m-plus-1-code", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0XHpapwmdZhY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7gN0HHpapwmdZhY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7jT0HHpapwmdZhY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0HHpapwmdZhY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7i_0HHpapwmdZhY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hT13HpapwmdZhY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hq13HpapwmdZhY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS 1 Code" + } + ] + }, + { + "name": "M PLUS 1p", + "fontFamily": "M PLUS 1p, sans-serif", + "slug": "wp-font-lib-m-plus-1p", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + }, + { + "src": "http://fonts.gstatic.com/s/mplus1p/v28/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "M PLUS 1p" + } + ] + }, + { + "name": "M PLUS 2", + "fontFamily": "M PLUS 2, sans-serif", + "slug": "wp-font-lib-m-plus-2", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa-VxlqHrzNgAw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwua6VxlqHrzNgAw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwZ66VxlqHrzNgAw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6VxlqHrzNgAw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwC66VxlqHrzNgAw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw56mVxlqHrzNgAw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw3qmVxlqHrzNgAw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwuamVxlqHrzNgAw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + }, + { + "src": "http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwkKmVxlqHrzNgAw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "M PLUS 2" + } + ] + }, + { + "name": "M PLUS Code Latin", + "fontFamily": "M PLUS Code Latin, sans-serif", + "slug": "wp-font-lib-m-plus-code-latin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbB6i5MqF9TRwg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1MbA6i5MqF9TRwg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1BjA6i5MqF9TRwg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA6i5MqF9TRwg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1HTA6i5MqF9TRwg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1JjH6i5MqF9TRwg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + }, + { + "src": "http://fonts.gstatic.com/s/mpluscodelatin/v11/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1KHH6i5MqF9TRwg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS Code Latin" + } + ] + }, + { + "name": "M PLUS Rounded 1c", + "fontFamily": "M PLUS Rounded 1c, sans-serif", + "slug": "wp-font-lib-m-plus-rounded-1c", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + }, + { + "src": "http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "M PLUS Rounded 1c" + } + ] + }, + { + "name": "Ma Shan Zheng", + "fontFamily": "Ma Shan Zheng, cursive", + "slug": "wp-font-lib-ma-shan-zheng", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mashanzheng/v10/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ma Shan Zheng" + } + ] + }, + { + "name": "Macondo", + "fontFamily": "Macondo, system-ui", + "slug": "wp-font-lib-macondo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/macondo/v21/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Macondo" + } + ] + }, + { + "name": "Macondo Swash Caps", + "fontFamily": "Macondo Swash Caps, system-ui", + "slug": "wp-font-lib-macondo-swash-caps", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/macondoswashcaps/v20/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Macondo Swash Caps" + } + ] + }, + { + "name": "Mada", + "fontFamily": "Mada, sans-serif", + "slug": "wp-font-lib-mada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlOkHkw2-m9x2iC.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFmQkHkw2-m9x2iC.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFnOkHkw2-m9x2iC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFn8kHkw2-m9x2iC.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFkQl3kw2-m9x2iC.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFkpl3kw2-m9x2iC.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlOl3kw2-m9x2iC.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mada" + }, + { + "src": "http://fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFlnl3kw2-m9x2iC.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Mada" + } + ] + }, + { + "name": "Magra", + "fontFamily": "Magra, sans-serif", + "slug": "wp-font-lib-magra", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/magra/v14/uK_94ruaZus72k5xIDMfO-ed.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Magra" + }, + { + "src": "http://fonts.gstatic.com/s/magra/v14/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Magra" + } + ] + }, + { + "name": "Maiden Orange", + "fontFamily": "Maiden Orange, system-ui", + "slug": "wp-font-lib-maiden-orange", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/maidenorange/v25/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Maiden Orange" + } + ] + }, + { + "name": "Maitree", + "fontFamily": "Maitree, serif", + "slug": "wp-font-lib-maitree", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Maitree" + }, + { + "src": "http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Maitree" + } + ] + }, + { + "name": "Major Mono Display", + "fontFamily": "Major Mono Display, monospace", + "slug": "wp-font-lib-major-mono-display", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/majormonodisplay/v13/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Major Mono Display" + } + ] + }, + { + "name": "Mako", + "fontFamily": "Mako, sans-serif", + "slug": "wp-font-lib-mako", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mako/v18/H4coBX6Mmc_Z0ST09g478Lo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mako" + } + ] + }, + { + "name": "Mali", + "fontFamily": "Mali, cursive", + "slug": "wp-font-lib-mali", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0ba2SRONuN4eCrODlxxOd8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bU2SRONuN4SCjECn50Kd_PmA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mali" + }, + { + "src": "http://fonts.gstatic.com/s/mali/v10/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Mali" + } + ] + }, + { + "name": "Mallanna", + "fontFamily": "Mallanna, sans-serif", + "slug": "wp-font-lib-mallanna", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mallanna/v13/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mallanna" + } + ] + }, + { + "name": "Mandali", + "fontFamily": "Mandali, sans-serif", + "slug": "wp-font-lib-mandali", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mandali/v14/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mandali" + } + ] + }, + { + "name": "Manjari", + "fontFamily": "Manjari, sans-serif", + "slug": "wp-font-lib-manjari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/manjari/v9/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Manjari" + }, + { + "src": "http://fonts.gstatic.com/s/manjari/v9/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Manjari" + }, + { + "src": "http://fonts.gstatic.com/s/manjari/v9/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Manjari" + } + ] + }, + { + "name": "Manrope", + "fontFamily": "Manrope, sans-serif", + "slug": "wp-font-lib-manrope", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F87jxeN7B.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F87jxeN7B.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Manrope" + }, + { + "src": "http://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Manrope" + } + ] + }, + { + "name": "Mansalva", + "fontFamily": "Mansalva, cursive", + "slug": "wp-font-lib-mansalva", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mansalva/v12/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mansalva" + } + ] + }, + { + "name": "Manuale", + "fontFamily": "Manuale, serif", + "slug": "wp-font-lib-manuale", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeG6e7wD1TB_JHHY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wD1TB_JHHY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wD1TB_JHHY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwD1TB_JHHY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwD1TB_JHHY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeFkfLwD1TB_JHHY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOApA3zRdIWHYr8M.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zRdIWHYr8M.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zRdIWHYr8M.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zRdIWHYr8M.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zRdIWHYr8M.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Manuale" + }, + { + "src": "http://fonts.gstatic.com/s/manuale/v28/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsONRH3zRdIWHYr8M.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Manuale" + } + ] + }, + { + "name": "Marcellus", + "fontFamily": "Marcellus, serif", + "slug": "wp-font-lib-marcellus", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marcellus" + } + ] + }, + { + "name": "Marcellus SC", + "fontFamily": "Marcellus SC, serif", + "slug": "wp-font-lib-marcellus-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marcellus SC" + } + ] + }, + { + "name": "Marck Script", + "fontFamily": "Marck Script, cursive", + "slug": "wp-font-lib-marck-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marckscript/v17/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marck Script" + } + ] + }, + { + "name": "Margarine", + "fontFamily": "Margarine, system-ui", + "slug": "wp-font-lib-margarine", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/margarine/v22/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Margarine" + } + ] + }, + { + "name": "Marhey", + "fontFamily": "Marhey, system-ui", + "slug": "wp-font-lib-marhey", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBZVwO2cXiGevOMw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Marhey" + }, + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBctwO2cXiGevOMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marhey" + }, + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBflwO2cXiGevOMw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Marhey" + }, + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBRV3O2cXiGevOMw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Marhey" + }, + { + "src": "http://fonts.gstatic.com/s/marhey/v4/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBSx3O2cXiGevOMw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Marhey" + } + ] + }, + { + "name": "Markazi Text", + "fontFamily": "Markazi Text, serif", + "slug": "wp-font-lib-markazi-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Markazi Text" + }, + { + "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Markazi Text" + }, + { + "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Markazi Text" + }, + { + "src": "http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Markazi Text" + } + ] + }, + { + "name": "Marko One", + "fontFamily": "Marko One, serif", + "slug": "wp-font-lib-marko-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/markoone/v22/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marko One" + } + ] + }, + { + "name": "Marmelad", + "fontFamily": "Marmelad, sans-serif", + "slug": "wp-font-lib-marmelad", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marmelad/v18/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marmelad" + } + ] + }, + { + "name": "Martel", + "fontFamily": "Martel, serif", + "slug": "wp-font-lib-martel", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Martel" + }, + { + "src": "http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Martel" + } + ] + }, + { + "name": "Martel Sans", + "fontFamily": "Martel Sans, sans-serif", + "slug": "wp-font-lib-martel-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + }, + { + "src": "http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Martel Sans" + } + ] + }, + { + "name": "Martian Mono", + "fontFamily": "Martian Mono, monospace", + "slug": "wp-font-lib-martian-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qus6WD75kdpF2.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qu86WD75kdpF2.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY00u86WD75kdpF2.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qu86WD75kdpF2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1Yu86WD75kdpF2.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY20vM6WD75kdpF2.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY2NvM6WD75kdpF2.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + }, + { + "src": "http://fonts.gstatic.com/s/martianmono/v3/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qvM6WD75kdpF2.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Martian Mono" + } + ] + }, + { + "name": "Marvel", + "fontFamily": "Marvel, sans-serif", + "slug": "wp-font-lib-marvel", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/marvel/v14/nwpVtKeoNgBV0qaIkV7ED366zg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Marvel" + }, + { + "src": "http://fonts.gstatic.com/s/marvel/v14/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Marvel" + }, + { + "src": "http://fonts.gstatic.com/s/marvel/v14/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Marvel" + }, + { + "src": "http://fonts.gstatic.com/s/marvel/v14/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Marvel" + } + ] + }, + { + "name": "Mate", + "fontFamily": "Mate, serif", + "slug": "wp-font-lib-mate", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mate/v15/m8JdjftRd7WZ2z28WoXSaLU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mate" + }, + { + "src": "http://fonts.gstatic.com/s/mate/v15/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Mate" + } + ] + }, + { + "name": "Mate SC", + "fontFamily": "Mate SC, serif", + "slug": "wp-font-lib-mate-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/matesc/v22/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mate SC" + } + ] + }, + { + "name": "Material Icons", + "fontFamily": "Material Icons, monospace", + "slug": "wp-font-lib-material-icons", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNZIhI8tIHh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons" + } + ] + }, + { + "name": "Material Icons Outlined", + "fontFamily": "Material Icons Outlined, monospace", + "slug": "wp-font-lib-material-icons-outlined", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUcdl5GuI2Ze.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons Outlined" + } + ] + }, + { + "name": "Material Icons Round", + "fontFamily": "Material Icons Round, monospace", + "slug": "wp-font-lib-material-icons-round", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialiconsround/v108/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmMq_fTTvg-.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons Round" + } + ] + }, + { + "name": "Material Icons Sharp", + "fontFamily": "Material Icons Sharp, monospace", + "slug": "wp-font-lib-material-icons-sharp", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialiconssharp/v109/oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvmvSImEyc0vd.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons Sharp" + } + ] + }, + { + "name": "Material Icons Two Tone", + "fontFamily": "Material Icons Two Tone, monospace", + "slug": "wp-font-lib-material-icons-two-tone", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialiconstwotone/v112/hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNCu3NjDrH_77.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Icons Two Tone" + } + ] + }, + { + "name": "Material Symbols Outlined", + "fontFamily": "Material Symbols Outlined, monospace", + "slug": "wp-font-lib-material-symbols-outlined", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHeembd5zrTgt.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDAvHOembd5zrTgt.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDDxHOembd5zrTgt.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOembd5zrTgt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCdHOembd5zrTgt.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBxG-embd5zrTgt.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsoutlined/v114/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDBIG-embd5zrTgt.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Material Symbols Outlined" + } + ] + }, + { + "name": "Material Symbols Rounded", + "fontFamily": "Material Symbols Rounded, monospace", + "slug": "wp-font-lib-material-symbols-rounded", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIekXxKJKJBjAa8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rAelXxKJKJBjAa8.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rNmlXxKJKJBjAa8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIelXxKJKJBjAa8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rLWlXxKJKJBjAa8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rFmiXxKJKJBjAa8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolsrounded/v113/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rGCiXxKJKJBjAa8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Material Symbols Rounded" + } + ] + }, + { + "name": "Material Symbols Sharp", + "fontFamily": "Material Symbols Sharp, monospace", + "slug": "wp-font-lib-material-symbols-sharp", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLozCOJ1H7-knk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxMLojCOJ1H7-knk.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxPVojCOJ1H7-knk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLojCOJ1H7-knk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxO5ojCOJ1H7-knk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNVpTCOJ1H7-knk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + }, + { + "src": "http://fonts.gstatic.com/s/materialsymbolssharp/v110/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxNspTCOJ1H7-knk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Material Symbols Sharp" + } + ] + }, + { + "name": "Maven Pro", + "fontFamily": "Maven Pro, sans-serif", + "slug": "wp-font-lib-maven-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nCpozp5GvU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nCpozp5GvU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nCpozp5GvU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nCpozp5GvU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nCpozp5GvU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + }, + { + "src": "http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nCpozp5GvU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Maven Pro" + } + ] + }, + { + "name": "McLaren", + "fontFamily": "McLaren, system-ui", + "slug": "wp-font-lib-mclaren", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mclaren/v14/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "McLaren" + } + ] + }, + { + "name": "Mea Culpa", + "fontFamily": "Mea Culpa, cursive", + "slug": "wp-font-lib-mea-culpa", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meaculpa/v3/AMOTz4GcuWbEIuza8jsZms0QW3mqyg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mea Culpa" + } + ] + }, + { + "name": "Meddon", + "fontFamily": "Meddon, cursive", + "slug": "wp-font-lib-meddon", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meddon/v20/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Meddon" + } + ] + }, + { + "name": "MedievalSharp", + "fontFamily": "MedievalSharp, system-ui", + "slug": "wp-font-lib-medievalsharp", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/medievalsharp/v24/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "MedievalSharp" + } + ] + }, + { + "name": "Medula One", + "fontFamily": "Medula One, system-ui", + "slug": "wp-font-lib-medula-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Medula One" + } + ] + }, + { + "name": "Meera Inimai", + "fontFamily": "Meera Inimai, sans-serif", + "slug": "wp-font-lib-meera-inimai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meerainimai/v12/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Meera Inimai" + } + ] + }, + { + "name": "Megrim", + "fontFamily": "Megrim, system-ui", + "slug": "wp-font-lib-megrim", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/megrim/v16/46kulbz5WjvLqJZlbWXgd0RY1g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Megrim" + } + ] + }, + { + "name": "Meie Script", + "fontFamily": "Meie Script, cursive", + "slug": "wp-font-lib-meie-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Meie Script" + } + ] + }, + { + "name": "Meow Script", + "fontFamily": "Meow Script, cursive", + "slug": "wp-font-lib-meow-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/meowscript/v5/0FlQVPqanlaJrtr8AnJ0ESch0_0CfDf1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Meow Script" + } + ] + }, + { + "name": "Merienda", + "fontFamily": "Merienda, cursive", + "slug": "wp-font-lib-merienda", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5JHhoSU78QGBV0A.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5enhoSU78QGBV0A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5SHhoSU78QGBV0A.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5pH9oSU78QGBV0A.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5nX9oSU78QGBV0A.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5-n9oSU78QGBV0A.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Merienda" + }, + { + "src": "http://fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5039oSU78QGBV0A.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Merienda" + } + ] + }, + { + "name": "Merriweather", + "fontFamily": "Merriweather, serif", + "slug": "wp-font-lib-merriweather", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Merriweather" + }, + { + "src": "http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Merriweather" + } + ] + }, + { + "name": "Merriweather Sans", + "fontFamily": "Merriweather Sans, sans-serif", + "slug": "wp-font-lib-merriweather-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ljuEG7xFHnQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ljuEG7xFHnQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ljuEG7xFHnQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkljuEG7xFHnQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekljuEG7xFHnQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukljuEG7xFHnQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzesCzRRXnaur.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzesCzRRXnaur.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zesCzRRXnaur.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TyusCzRRXnaur.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qyusCzRRXnaur.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + }, + { + "src": "http://fonts.gstatic.com/s/merriweathersans/v26/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NyusCzRRXnaur.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Merriweather Sans" + } + ] + }, + { + "name": "Metal", + "fontFamily": "Metal, system-ui", + "slug": "wp-font-lib-metal", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/metal/v28/lW-wwjUJIXTo7i3nnoQAUdN2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Metal" + } + ] + }, + { + "name": "Metal Mania", + "fontFamily": "Metal Mania, system-ui", + "slug": "wp-font-lib-metal-mania", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Metal Mania" + } + ] + }, + { + "name": "Metamorphous", + "fontFamily": "Metamorphous, system-ui", + "slug": "wp-font-lib-metamorphous", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/metamorphous/v18/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Metamorphous" + } + ] + }, + { + "name": "Metrophobic", + "fontFamily": "Metrophobic, sans-serif", + "slug": "wp-font-lib-metrophobic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/metrophobic/v23/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Metrophobic" + } + ] + }, + { + "name": "Michroma", + "fontFamily": "Michroma, sans-serif", + "slug": "wp-font-lib-michroma", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/michroma/v16/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Michroma" + } + ] + }, + { + "name": "Milonga", + "fontFamily": "Milonga, system-ui", + "slug": "wp-font-lib-milonga", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/milonga/v20/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Milonga" + } + ] + }, + { + "name": "Miltonian", + "fontFamily": "Miltonian, system-ui", + "slug": "wp-font-lib-miltonian", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/miltonian/v26/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miltonian" + } + ] + }, + { + "name": "Miltonian Tattoo", + "fontFamily": "Miltonian Tattoo, system-ui", + "slug": "wp-font-lib-miltonian-tattoo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/miltoniantattoo/v28/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miltonian Tattoo" + } + ] + }, + { + "name": "Mina", + "fontFamily": "Mina, sans-serif", + "slug": "wp-font-lib-mina", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mina/v11/-nFzOGc18vARrz9j7i3y65o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mina" + }, + { + "src": "http://fonts.gstatic.com/s/mina/v11/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mina" + } + ] + }, + { + "name": "Mingzat", + "fontFamily": "Mingzat, sans-serif", + "slug": "wp-font-lib-mingzat", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mingzat/v6/0QIgMX5C-o-oWWyvBttkm_mv670.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mingzat" + } + ] + }, + { + "name": "Miniver", + "fontFamily": "Miniver, system-ui", + "slug": "wp-font-lib-miniver", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/miniver/v21/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miniver" + } + ] + }, + { + "name": "Miriam Libre", + "fontFamily": "Miriam Libre, sans-serif", + "slug": "wp-font-lib-miriam-libre", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/miriamlibre/v14/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miriam Libre" + }, + { + "src": "http://fonts.gstatic.com/s/miriamlibre/v14/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Miriam Libre" + } + ] + }, + { + "name": "Mirza", + "fontFamily": "Mirza, system-ui", + "slug": "wp-font-lib-mirza", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mirza/v15/co3ImWlikiN5EurdKMewsrvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mirza" + }, + { + "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIpAeO4mafBomDi.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mirza" + }, + { + "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIFBuO4mafBomDi.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mirza" + }, + { + "src": "http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtJhB-O4mafBomDi.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mirza" + } + ] + }, + { + "name": "Miss Fajardose", + "fontFamily": "Miss Fajardose, cursive", + "slug": "wp-font-lib-miss-fajardose", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Miss Fajardose" + } + ] + }, + { + "name": "Mitr", + "fontFamily": "Mitr, sans-serif", + "slug": "wp-font-lib-mitr", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiLypw5ucZFyTsyMJj_b1o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mitr" + }, + { + "src": "http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mitr" + } + ] + }, + { + "name": "Mochiy Pop One", + "fontFamily": "Mochiy Pop One, sans-serif", + "slug": "wp-font-lib-mochiy-pop-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mochiypopone/v7/QdVPSTA9Jh-gg-5XZP2UmU4O9kwwD3s6ZKAi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mochiy Pop One" + } + ] + }, + { + "name": "Mochiy Pop P One", + "fontFamily": "Mochiy Pop P One, sans-serif", + "slug": "wp-font-lib-mochiy-pop-p-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mochiypoppone/v7/Ktk2AKuPeY_td1-h9LayHYWCjAqyN4O3WYZB_sU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mochiy Pop P One" + } + ] + }, + { + "name": "Modak", + "fontFamily": "Modak, system-ui", + "slug": "wp-font-lib-modak", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/modak/v18/EJRYQgs1XtIEsnMH8BVZ76KU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Modak" + } + ] + }, + { + "name": "Modern Antiqua", + "fontFamily": "Modern Antiqua, system-ui", + "slug": "wp-font-lib-modern-antiqua", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/modernantiqua/v22/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Modern Antiqua" + } + ] + }, + { + "name": "Mogra", + "fontFamily": "Mogra, system-ui", + "slug": "wp-font-lib-mogra", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mogra/v19/f0X40eSs8c95TBo4DvLmxtnG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mogra" + } + ] + }, + { + "name": "Mohave", + "fontFamily": "Mohave, sans-serif", + "slug": "wp-font-lib-mohave", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdif_HvCQopLSvBk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_HvCQopLSvBk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdkv_HvCQopLSvBk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdqf4HvCQopLSvBk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdp74HvCQopLSvBk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8qLOaprDXrBlSVw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G89rOaprDXrBlSVw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8xLOaprDXrBlSVw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8KLSaprDXrBlSVw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Mohave" + }, + { + "src": "http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8EbSaprDXrBlSVw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Mohave" + } + ] + }, + { + "name": "Molengo", + "fontFamily": "Molengo, sans-serif", + "slug": "wp-font-lib-molengo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Molengo" + } + ] + }, + { + "name": "Molle", + "fontFamily": "Molle, cursive", + "slug": "wp-font-lib-molle", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/molle/v21/E21n_dL5hOXFhWEsXzgmVydREus.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Molle" + } + ] + }, + { + "name": "Monda", + "fontFamily": "Monda, sans-serif", + "slug": "wp-font-lib-monda", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/monda/v16/TK3tWkYFABsmjvpmNBsLvPdG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Monda" + }, + { + "src": "http://fonts.gstatic.com/s/monda/v16/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Monda" + } + ] + }, + { + "name": "Monofett", + "fontFamily": "Monofett, monospace", + "slug": "wp-font-lib-monofett", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/monofett/v23/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Monofett" + } + ] + }, + { + "name": "Monomaniac One", + "fontFamily": "Monomaniac One, sans-serif", + "slug": "wp-font-lib-monomaniac-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/monomaniacone/v9/4iC06K17YctZjx50EU-QlwPmcqRnqYkB5kwI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Monomaniac One" + } + ] + }, + { + "name": "Monoton", + "fontFamily": "Monoton, system-ui", + "slug": "wp-font-lib-monoton", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/monoton/v15/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Monoton" + } + ] + }, + { + "name": "Monsieur La Doulaise", + "fontFamily": "Monsieur La Doulaise, cursive", + "slug": "wp-font-lib-monsieur-la-doulaise", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/monsieurladoulaise/v15/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Monsieur La Doulaise" + } + ] + }, + { + "name": "Montaga", + "fontFamily": "Montaga, serif", + "slug": "wp-font-lib-montaga", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montaga" + } + ] + }, + { + "name": "Montagu Slab", + "fontFamily": "Montagu Slab, serif", + "slug": "wp-font-lib-montagu-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbE3P9Fs7bOSO7.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkBbEnP9Fs7bOSO7.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkCFEnP9Fs7bOSO7.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEnP9Fs7bOSO7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDpEnP9Fs7bOSO7.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkAFFXP9Fs7bOSO7.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + }, + { + "src": "http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkA8FXP9Fs7bOSO7.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Montagu Slab" + } + ] + }, + { + "name": "MonteCarlo", + "fontFamily": "MonteCarlo, cursive", + "slug": "wp-font-lib-montecarlo", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montecarlo/v8/buEzpo6-f9X01GadLA0G0CoV_NxLeiw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "MonteCarlo" + } + ] + }, + { + "name": "Montez", + "fontFamily": "Montez, cursive", + "slug": "wp-font-lib-montez", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montez/v18/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montez" + } + ] + }, + { + "name": "Montserrat", + "fontFamily": "Montserrat, sans-serif", + "slug": "wp-font-lib-montserrat", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-Y3tcoqK5.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-Y3tcoqK5.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-Y3tcoqK5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-Y3tcoqK5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-Y3tcoqK5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-Y3tcoqK5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-Y3tcoqK5.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w-Y3tcoqK5.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aX9-p7K5ILg.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aX9-p7K5ILg.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aX9-p7K5ILg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aX9-p7K5ILg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aX9-p7K5ILg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aX9-p7K5ILg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aX9-p7K5ILg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aX9-p7K5ILg.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Montserrat" + }, + { + "src": "http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aX9-p7K5ILg.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Montserrat" + } + ] + }, + { + "name": "Montserrat Alternates", + "fontFamily": "Montserrat Alternates, sans-serif", + "slug": "wp-font-lib-montserrat-alternates", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Montserrat Alternates" + }, + { + "src": "http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Montserrat Alternates" + } + ] + }, + { + "name": "Montserrat Subrayada", + "fontFamily": "Montserrat Subrayada, sans-serif", + "slug": "wp-font-lib-montserrat-subrayada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Montserrat Subrayada" + }, + { + "src": "http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Montserrat Subrayada" + } + ] + }, + { + "name": "Moo Lah Lah", + "fontFamily": "Moo Lah Lah, system-ui", + "slug": "wp-font-lib-moo-lah-lah", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/moolahlah/v3/dg4h_p_opKZOA0w1AYcm55wtYQYugjW4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Moo Lah Lah" + } + ] + }, + { + "name": "Moon Dance", + "fontFamily": "Moon Dance, cursive", + "slug": "wp-font-lib-moon-dance", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/moondance/v3/WBLgrEbUbFlYW9ekmGawe2XiKMiokE4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Moon Dance" + } + ] + }, + { + "name": "Moul", + "fontFamily": "Moul, system-ui", + "slug": "wp-font-lib-moul", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/moul/v25/nuF2D__FSo_3E-RYiJCy-00.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Moul" + } + ] + }, + { + "name": "Moulpali", + "fontFamily": "Moulpali, system-ui", + "slug": "wp-font-lib-moulpali", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/moulpali/v28/H4ckBXKMl9HagUWymyY6wr-wg763.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Moulpali" + } + ] + }, + { + "name": "Mountains of Christmas", + "fontFamily": "Mountains of Christmas, system-ui", + "slug": "wp-font-lib-mountains-of-christmas", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mountains of Christmas" + }, + { + "src": "http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mountains of Christmas" + } + ] + }, + { + "name": "Mouse Memoirs", + "fontFamily": "Mouse Memoirs, sans-serif", + "slug": "wp-font-lib-mouse-memoirs", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mousememoirs/v14/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mouse Memoirs" + } + ] + }, + { + "name": "Mr Bedfort", + "fontFamily": "Mr Bedfort, cursive", + "slug": "wp-font-lib-mr-bedfort", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrbedfort/v22/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mr Bedfort" + } + ] + }, + { + "name": "Mr Dafoe", + "fontFamily": "Mr Dafoe, cursive", + "slug": "wp-font-lib-mr-dafoe", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mr Dafoe" + } + ] + }, + { + "name": "Mr De Haviland", + "fontFamily": "Mr De Haviland, cursive", + "slug": "wp-font-lib-mr-de-haviland", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mr De Haviland" + } + ] + }, + { + "name": "Mrs Saint Delafield", + "fontFamily": "Mrs Saint Delafield, cursive", + "slug": "wp-font-lib-mrs-saint-delafield", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mrs Saint Delafield" + } + ] + }, + { + "name": "Mrs Sheppards", + "fontFamily": "Mrs Sheppards, cursive", + "slug": "wp-font-lib-mrs-sheppards", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mrssheppards/v21/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mrs Sheppards" + } + ] + }, + { + "name": "Ms Madi", + "fontFamily": "Ms Madi, cursive", + "slug": "wp-font-lib-ms-madi", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1N-DPiI7QAYo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ms Madi" + } + ] + }, + { + "name": "Mukta", + "fontFamily": "Mukta, sans-serif", + "slug": "wp-font-lib-mukta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWKBXyXfDDVXYnGp32S0H3f.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mukta" + }, + { + "src": "http://fonts.gstatic.com/s/mukta/v14/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mukta" + } + ] + }, + { + "name": "Mukta Mahee", + "fontFamily": "Mukta Mahee, sans-serif", + "slug": "wp-font-lib-mukta-mahee", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + }, + { + "src": "http://fonts.gstatic.com/s/muktamahee/v16/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mukta Mahee" + } + ] + }, + { + "name": "Mukta Malar", + "fontFamily": "Mukta Malar, sans-serif", + "slug": "wp-font-lib-mukta-malar", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + }, + { + "src": "http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mukta Malar" + } + ] + }, + { + "name": "Mukta Vaani", + "fontFamily": "Mukta Vaani, sans-serif", + "slug": "wp-font-lib-mukta-vaani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + }, + { + "src": "http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mukta Vaani" + } + ] + }, + { + "name": "Mulish", + "fontFamily": "Mulish, sans-serif", + "slug": "wp-font-lib-mulish", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNRwaClGrw-PTY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaClGrw-PTY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaClGrw-PTY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaClGrw-PTY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaClGrw-PTY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaClGrw-PTY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaClGrw-PTY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexTpWwaClGrw-PTY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeOvHp47LTZFwA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSd-OvHp47LTZFwA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvHp47LTZFwA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSG-OvHp47LTZFwA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsS9-SvHp47LTZFwA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSzuSvHp47LTZFwA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeSvHp47LTZFwA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Mulish" + }, + { + "src": "http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSgOSvHp47LTZFwA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Mulish" + } + ] + }, + { + "name": "Murecho", + "fontFamily": "Murecho, sans-serif", + "slug": "wp-font-lib-murecho", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMo15XWZLCpUOaM6.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMq14nWZLCpUOaM6.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Murecho" + }, + { + "src": "http://fonts.gstatic.com/s/murecho/v10/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrC4nWZLCpUOaM6.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Murecho" + } + ] + }, + { + "name": "MuseoModerno", + "fontFamily": "MuseoModerno, system-ui", + "slug": "wp-font-lib-museomoderno", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuewajeKlCdo.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuewajeKlCdo.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuewajeKlCdo.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuewajeKlCdo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuewajeKlCdo.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuewajeKlCdo.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuewajeKlCdo.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuewajeKlCdo.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuewajeKlCdo.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa4QicCgGdrS3g.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0a8QicCgGdrS3g.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HD68QicCgGdrS3g.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa8QicCgGdrS3g.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HY68QicCgGdrS3g.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54Hj6gQicCgGdrS3g.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HtqgQicCgGdrS3g.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0agQicCgGdrS3g.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + }, + { + "src": "http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H-KgQicCgGdrS3g.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "MuseoModerno" + } + ] + }, + { + "name": "My Soul", + "fontFamily": "My Soul, cursive", + "slug": "wp-font-lib-my-soul", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mysoul/v2/3XFqErcuy945_u6KF_Ulk2nnXf0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "My Soul" + } + ] + }, + { + "name": "Mynerve", + "fontFamily": "Mynerve, cursive", + "slug": "wp-font-lib-mynerve", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mynerve/v2/P5sCzZKPdNjb4jt7xCRuiZ-uydg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mynerve" + } + ] + }, + { + "name": "Mystery Quest", + "fontFamily": "Mystery Quest, system-ui", + "slug": "wp-font-lib-mystery-quest", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Mystery Quest" + } + ] + }, + { + "name": "NTR", + "fontFamily": "NTR, sans-serif", + "slug": "wp-font-lib-ntr", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ntr/v15/RLpzK5Xy0ZjiGGhs5TA4bg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "NTR" + } + ] + }, + { + "name": "Nabla", + "fontFamily": "Nabla, system-ui", + "slug": "wp-font-lib-nabla", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nabla/v10/j8_D6-LI0Lvpe7Makz5UhJt9C3uqg_X_75gyGS4jAxsNIjrRNRBUFFR_198.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nabla" + } + ] + }, + { + "name": "Nanum Brush Script", + "fontFamily": "Nanum Brush Script, cursive", + "slug": "wp-font-lib-nanum-brush-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanumbrushscript/v22/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Brush Script" + } + ] + }, + { + "name": "Nanum Gothic", + "fontFamily": "Nanum Gothic, sans-serif", + "slug": "wp-font-lib-nanum-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic" + } + ] + }, + { + "name": "Nanum Gothic Coding", + "fontFamily": "Nanum Gothic Coding, monospace", + "slug": "wp-font-lib-nanum-gothic-coding", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic Coding" + }, + { + "src": "http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nanum Gothic Coding" + } + ] + }, + { + "name": "Nanum Myeongjo", + "fontFamily": "Nanum Myeongjo, serif", + "slug": "wp-font-lib-nanum-myeongjo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Myeongjo" + }, + { + "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nanum Myeongjo" + }, + { + "src": "http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Nanum Myeongjo" + } + ] + }, + { + "name": "Nanum Pen Script", + "fontFamily": "Nanum Pen Script, cursive", + "slug": "wp-font-lib-nanum-pen-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nanumpenscript/v19/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nanum Pen Script" + } + ] + }, + { + "name": "Neonderthaw", + "fontFamily": "Neonderthaw, cursive", + "slug": "wp-font-lib-neonderthaw", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/neonderthaw/v3/Iure6Yx5-oWVZI0r-17AeZZJprVA4XQ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Neonderthaw" + } + ] + }, + { + "name": "Nerko One", + "fontFamily": "Nerko One, cursive", + "slug": "wp-font-lib-nerko-one", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nerkoone/v16/m8JQjfZSc7OXlB3ZMOjzcJ5BZmqa3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nerko One" + } + ] + }, + { + "name": "Neucha", + "fontFamily": "Neucha, cursive", + "slug": "wp-font-lib-neucha", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bvugNsCxVEgA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Neucha" + } + ] + }, + { + "name": "Neuton", + "fontFamily": "Neuton, serif", + "slug": "wp-font-lib-neuton", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBTrPtMoH62xUZyyII7civlBw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Neuton" + }, + { + "src": "http://fonts.gstatic.com/s/neuton/v19/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Neuton" + } + ] + }, + { + "name": "New Rocker", + "fontFamily": "New Rocker, system-ui", + "slug": "wp-font-lib-new-rocker", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "New Rocker" + } + ] + }, + { + "name": "New Tegomin", + "fontFamily": "New Tegomin, serif", + "slug": "wp-font-lib-new-tegomin", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/newtegomin/v10/SLXMc1fV7Gd9USdBAfPlqfN0Q3ptkDMN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "New Tegomin" + } + ] + }, + { + "name": "News Cycle", + "fontFamily": "News Cycle, sans-serif", + "slug": "wp-font-lib-news-cycle", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/newscycle/v23/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "News Cycle" + }, + { + "src": "http://fonts.gstatic.com/s/newscycle/v23/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "News Cycle" + } + ] + }, + { + "name": "Newsreader", + "fontFamily": "Newsreader, serif", + "slug": "wp-font-lib-newsreader", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-I_ADOxEPjCggA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wJo_ADOxEPjCggA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ADOxEPjCggA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wSo_ADOxEPjCggA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wpojADOxEPjCggA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wn4jADOxEPjCggA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-IjADOxEPjCggA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoT-ZAHDWwgECi.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMx2T-ZAHDWwgECi.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZAHDWwgECi.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwaT-ZAHDWwgECi.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMz2SOZAHDWwgECi.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMzPSOZAHDWwgECi.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Newsreader" + }, + { + "src": "http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoSOZAHDWwgECi.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Newsreader" + } + ] + }, + { + "name": "Niconne", + "fontFamily": "Niconne, cursive", + "slug": "wp-font-lib-niconne", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Niconne" + } + ] + }, + { + "name": "Niramit", + "fontFamily": "Niramit, sans-serif", + "slug": "wp-font-lib-niramit", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Niramit" + }, + { + "src": "http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Niramit" + } + ] + }, + { + "name": "Nixie One", + "fontFamily": "Nixie One, system-ui", + "slug": "wp-font-lib-nixie-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nixie One" + } + ] + }, + { + "name": "Nobile", + "fontFamily": "Nobile, sans-serif", + "slug": "wp-font-lib-nobile", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nobile" + }, + { + "src": "http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Nobile" + } + ] + }, + { + "name": "Nokora", + "fontFamily": "Nokora, sans-serif", + "slug": "wp-font-lib-nokora", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CgoKBk5va29yYRhkIAAqBAgBGAE=.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Nokora" + }, + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRisAiAAKgQIARgB.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Nokora" + }, + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CggKBk5va29yYSAAKgQIARgB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nokora" + }, + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRi8BSAAKgQIARgB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nokora" + }, + { + "src": "http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRiEByAAKgQIARgB.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Nokora" + } + ] + }, + { + "name": "Norican", + "fontFamily": "Norican, cursive", + "slug": "wp-font-lib-norican", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/norican/v14/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Norican" + } + ] + }, + { + "name": "Nosifer", + "fontFamily": "Nosifer, system-ui", + "slug": "wp-font-lib-nosifer", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nosifer/v20/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nosifer" + } + ] + }, + { + "name": "Notable", + "fontFamily": "Notable, sans-serif", + "slug": "wp-font-lib-notable", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notable/v14/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Notable" + } + ] + }, + { + "name": "Nothing You Could Do", + "fontFamily": "Nothing You Could Do, cursive", + "slug": "wp-font-lib-nothing-you-could-do", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nothingyoucoulddo/v15/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nothing You Could Do" + } + ] + }, + { + "name": "Noticia Text", + "fontFamily": "Noticia Text, serif", + "slug": "wp-font-lib-noticia-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noticia Text" + }, + { + "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noticia Text" + }, + { + "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noticia Text" + }, + { + "src": "http://fonts.gstatic.com/s/noticiatext/v15/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noticia Text" + } + ] + }, + { + "name": "Noto Color Emoji", + "fontFamily": "Noto Color Emoji, sans-serif", + "slug": "wp-font-lib-noto-color-emoji", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notocoloremoji/v25/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFab5s79iz64w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Color Emoji" + } + ] + }, + { + "name": "Noto Emoji", + "fontFamily": "Noto Emoji, sans-serif", + "slug": "wp-font-lib-noto-emoji", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob_10jwvS-FGJCMY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + }, + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwvS-FGJCMY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + }, + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-Z0jwvS-FGJCMY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + }, + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob911TwvS-FGJCMY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + }, + { + "src": "http://fonts.gstatic.com/s/notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob9M1TwvS-FGJCMY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Emoji" + } + ] + }, + { + "name": "Noto Kufi Arabic", + "fontFamily": "Noto Kufi Arabic, sans-serif", + "slug": "wp-font-lib-noto-kufi-arabic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v3obPnLSmf5yD.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v34bPnLSmf5yD.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh4x34bPnLSmf5yD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v34bPnLSmf5yD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5d34bPnLSmf5yD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6x2IbPnLSmf5yD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6I2IbPnLSmf5yD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v2IbPnLSmf5yD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notokufiarabic/v16/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7G2IbPnLSmf5yD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Kufi Arabic" + } + ] + }, + { + "name": "Noto Music", + "fontFamily": "Noto Music, sans-serif", + "slug": "wp-font-lib-noto-music", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notomusic/v17/pe0rMIiSN5pO63htf1sxIteQB9Zra1U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Music" + } + ] + }, + { + "name": "Noto Naskh Arabic", + "fontFamily": "Noto Naskh Arabic, serif", + "slug": "wp-font-lib-noto-naskh-arabic", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5krK0z9_Mnuw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Naskh Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwj85krK0z9_Mnuw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Naskh Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwY8lkrK0z9_Mnuw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Naskh Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notonaskharabic/v33/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwWslkrK0z9_Mnuw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Naskh Arabic" + } + ] + }, + { + "name": "Noto Nastaliq Urdu", + "fontFamily": "Noto Nastaliq Urdu, serif", + "slug": "wp-font-lib-noto-nastaliq-urdu", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qt_-DK2f2-_8mEw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Nastaliq Urdu" + }, + { + "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qu3-DK2f2-_8mEw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Nastaliq Urdu" + }, + { + "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3QgH5DK2f2-_8mEw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Nastaliq Urdu" + }, + { + "src": "http://fonts.gstatic.com/s/notonastaliqurdu/v20/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qjj5DK2f2-_8mEw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Nastaliq Urdu" + } + ] + }, + { + "name": "Noto Rashi Hebrew", + "fontFamily": "Noto Rashi Hebrew, serif", + "slug": "wp-font-lib-noto-rashi-hebrew", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-DkRyq6Nf2pfA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-HkRyq6Nf2pfA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZWeHkRyq6Nf2pfA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HkRyq6Nf2pfA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZNeHkRyq6Nf2pfA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ2ebkRyq6Nf2pfA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ4ObkRyq6Nf2pfA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-bkRyq6Nf2pfA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notorashihebrew/v25/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZrubkRyq6Nf2pfA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Rashi Hebrew" + } + ] + }, + { + "name": "Noto Sans", + "fontFamily": "Noto Sans, sans-serif", + "slug": "wp-font-lib-noto-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNjhjRFSfiM7HBj.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0MIpQlx3QUlC5A4PNr4AwhQ_yu6WBjJLE.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjKhVlY9aA5Wl6PQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AyNYtyEx2xqPaif.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZlY9aA5Wl6PQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzpYdyEx2xqPaif.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjFhdlY9aA5Wl6PQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AyxYNyEx2xqPaif.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBlY9aA5Wl6PQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AydZ9yEx2xqPaif.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjQhJlY9aA5Wl6PQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzlZdyEx2xqPaif.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjZhNlY9aA5Wl6PQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans" + }, + { + "src": "http://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4AzBZNyEx2xqPaif.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Noto Sans" + } + ] + }, + { + "name": "Noto Sans Adlam", + "fontFamily": "Noto Sans Adlam, sans-serif", + "slug": "wp-font-lib-noto-sans-adlam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufkn0TGnBZLwhuvk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufqXzTGnBZLwhuvk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufpzzTGnBZLwhuvk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam" + } + ] + }, + { + "name": "Noto Sans Adlam Unjoined", + "fontFamily": "Noto Sans Adlam Unjoined, sans-serif", + "slug": "wp-font-lib-noto-sans-adlam-unjoined", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35PMEe-E3slUg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam Unjoined" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Yd_5PMEe-E3slUg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam Unjoined" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YTP-PMEe-E3slUg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam Unjoined" + }, + { + "src": "http://fonts.gstatic.com/s/notosansadlamunjoined/v25/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YQr-PMEe-E3slUg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Adlam Unjoined" + } + ] + }, + { + "name": "Noto Sans Anatolian Hieroglyphs", + "fontFamily": "Noto Sans Anatolian Hieroglyphs, sans-serif", + "slug": "wp-font-lib-noto-sans-anatolian-hieroglyphs", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v14/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Anatolian Hieroglyphs" + } + ] + }, + { + "name": "Noto Sans Arabic", + "fontFamily": "Noto Sans Arabic, sans-serif", + "slug": "wp-font-lib-noto-sans-arabic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyG2vu3CBFQLaig.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGyvu3CBFQLaig.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCflmyvu3CBFQLaig.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCf-myvu3CBFQLaig.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfFmuvu3CBFQLaig.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfL2uvu3CBFQLaig.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGuvu3CBFQLaig.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfYWuvu3CBFQLaig.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Arabic" + } + ] + }, + { + "name": "Noto Sans Armenian", + "fontFamily": "Noto Sans Armenian, sans-serif", + "slug": "wp-font-lib-noto-sans-armenian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxbq0iYy6zF3Eg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxb60iYy6zF3Eg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoqvb60iYy6zF3Eg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorDb60iYy6zF3Eg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoovaK0iYy6zF3Eg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLooWaK0iYy6zF3Eg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxaK0iYy6zF3Eg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopYaK0iYy6zF3Eg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Armenian" + } + ] + }, + { + "name": "Noto Sans Avestan", + "fontFamily": "Noto Sans Avestan, sans-serif", + "slug": "wp-font-lib-noto-sans-avestan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansavestan/v20/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Avestan" + } + ] + }, + { + "name": "Noto Sans Balinese", + "fontFamily": "Noto Sans Balinese, sans-serif", + "slug": "wp-font-lib-noto-sans-balinese", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Balinese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov4XdhE5Vd222PPY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Balinese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov2nahE5Vd222PPY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Balinese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov1DahE5Vd222PPY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Balinese" + } + ] + }, + { + "name": "Noto Sans Bamum", + "fontFamily": "Noto Sans Bamum, sans-serif", + "slug": "wp-font-lib-noto-sans-bamum", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bamum" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEeVO-_gLykxEkxA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bamum" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEQlJ-_gLykxEkxA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bamum" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPETBJ-_gLykxEkxA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bamum" + } + ] + }, + { + "name": "Noto Sans Bassa Vah", + "fontFamily": "Noto Sans Bassa Vah, sans-serif", + "slug": "wp-font-lib-noto-sans-bassa-vah", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAc6p34gH-GD7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bassa Vah" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MoAc6p34gH-GD7.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bassa Vah" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4PEBs6p34gH-GD7.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bassa Vah" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4P9Bs6p34gH-GD7.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bassa Vah" + } + ] + }, + { + "name": "Noto Sans Batak", + "fontFamily": "Noto Sans Batak, sans-serif", + "slug": "wp-font-lib-noto-sans-batak", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Batak" + } + ] + }, + { + "name": "Noto Sans Bengali", + "fontFamily": "Noto Sans Bengali, sans-serif", + "slug": "wp-font-lib-noto-sans-bengali", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolKudCk8izI0lc.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglLudCk8izI0lc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmstdLudCk8izI0lc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsrtLudCk8izI0lc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsldMudCk8izI0lc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6Kmsm5MudCk8izI0lc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglMudCk8izI0lc.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsiBMudCk8izI0lc.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bengali" + } + ] + }, + { + "name": "Noto Sans Bhaiksuki", + "fontFamily": "Noto Sans Bhaiksuki, sans-serif", + "slug": "wp-font-lib-noto-sans-bhaiksuki", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Bhaiksuki" + } + ] + }, + { + "name": "Noto Sans Brahmi", + "fontFamily": "Noto Sans Brahmi, sans-serif", + "slug": "wp-font-lib-noto-sans-brahmi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbrahmi/v15/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Brahmi" + } + ] + }, + { + "name": "Noto Sans Buginese", + "fontFamily": "Noto Sans Buginese, sans-serif", + "slug": "wp-font-lib-noto-sans-buginese", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbuginese/v18/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Buginese" + } + ] + }, + { + "name": "Noto Sans Buhid", + "fontFamily": "Noto Sans Buhid, sans-serif", + "slug": "wp-font-lib-noto-sans-buhid", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansbuhid/v18/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Buhid" + } + ] + }, + { + "name": "Noto Sans Canadian Aboriginal", + "fontFamily": "Noto Sans Canadian Aboriginal, sans-serif", + "slug": "wp-font-lib-noto-sans-canadian-aboriginal", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLj_yAsg0q0uhQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2Ln_yAsg0q0uhQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigBrn_yAsg0q0uhQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigarn_yAsg0q0uhQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzighr7_yAsg0q0uhQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigv77_yAsg0q0uhQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2L7_yAsg0q0uhQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig8b7_yAsg0q0uhQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Canadian Aboriginal" + } + ] + }, + { + "name": "Noto Sans Carian", + "fontFamily": "Noto Sans Carian, sans-serif", + "slug": "wp-font-lib-noto-sans-carian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscarian/v15/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Carian" + } + ] + }, + { + "name": "Noto Sans Caucasian Albanian", + "fontFamily": "Noto Sans Caucasian Albanian, sans-serif", + "slug": "wp-font-lib-noto-sans-caucasian-albanian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Caucasian Albanian" + } + ] + }, + { + "name": "Noto Sans Chakma", + "fontFamily": "Noto Sans Chakma, sans-serif", + "slug": "wp-font-lib-noto-sans-chakma", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Chakma" + } + ] + }, + { + "name": "Noto Sans Cham", + "fontFamily": "Noto Sans Cham, sans-serif", + "slug": "wp-font-lib-noto-sans-cham", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcER0cv7GykboaLg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRwcv7GykboaLg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcTxwcv7GykboaLg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcIxwcv7GykboaLg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfczxscv7GykboaLg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfc9hscv7GykboaLg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRscv7GykboaLg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcuBscv7GykboaLg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cham" + } + ] + }, + { + "name": "Noto Sans Cherokee", + "fontFamily": "Noto Sans Cherokee, sans-serif", + "slug": "wp-font-lib-noto-sans-cherokee", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5ODkm5rAffjl0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5PDkm5rAffjl0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWnBPDkm5rAffjl0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWhxPDkm5rAffjl0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWvBIDkm5rAffjl0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWslIDkm5rAffjl0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5IDkm5rAffjl0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + }, + { + "src": "http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWodIDkm5rAffjl0.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cherokee" + } + ] + }, + { + "name": "Noto Sans Chorasmian", + "fontFamily": "Noto Sans Chorasmian, sans-serif", + "slug": "wp-font-lib-noto-sans-chorasmian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanschorasmian/v1/MQpL-X6uKMC7ROPLwRnI9ULxK_7NVkf8S5vyoH7w4g9b.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Chorasmian" + } + ] + }, + { + "name": "Noto Sans Coptic", + "fontFamily": "Noto Sans Coptic, sans-serif", + "slug": "wp-font-lib-noto-sans-coptic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Coptic" + } + ] + }, + { + "name": "Noto Sans Cuneiform", + "fontFamily": "Noto Sans Cuneiform, sans-serif", + "slug": "wp-font-lib-noto-sans-cuneiform", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscuneiform/v15/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cuneiform" + } + ] + }, + { + "name": "Noto Sans Cypriot", + "fontFamily": "Noto Sans Cypriot, sans-serif", + "slug": "wp-font-lib-noto-sans-cypriot", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Cypriot" + } + ] + }, + { + "name": "Noto Sans Deseret", + "fontFamily": "Noto Sans Deseret, sans-serif", + "slug": "wp-font-lib-noto-sans-deseret", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansdeseret/v15/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Deseret" + } + ] + }, + { + "name": "Noto Sans Devanagari", + "fontFamily": "Noto Sans Devanagari, sans-serif", + "slug": "wp-font-lib-noto-sans-devanagari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQky-AzoFoW4Ow.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQly-AzoFoW4Ow.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlSoly-AzoFoW4Ow.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-AzoFoW4Ow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlUYly-AzoFoW4Ow.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Alaoiy-AzoFoW4Ow.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlZMiy-AzoFoW4Ow.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQiy-AzoFoW4Ow.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Ald0iy-AzoFoW4Ow.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Devanagari" + } + ] + }, + { + "name": "Noto Sans Display", + "fontFamily": "Noto Sans Display, sans-serif", + "slug": "wp-font-lib-noto-sans-display", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cLVTGQ2iHrvWM.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cKVTGQ2iHrvWM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_ykKVTGQ2iHrvWM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKVTGQ2iHrvWM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_0UKVTGQ2iHrvWM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_6kNVTGQ2iHrvWM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_5ANVTGQ2iHrvWM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cNVTGQ2iHrvWM.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_94NVTGQ2iHrvWM.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXOa3gPurWM9uQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXKa3gPurWM9uQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9J43Ka3gPurWM9uQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXKa3gPurWM9uQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9Jj3Ka3gPurWM9uQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JY3Wa3gPurWM9uQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JWnWa3gPurWM9uQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXWa3gPurWM9uQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + }, + { + "src": "http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JFHWa3gPurWM9uQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Noto Sans Display" + } + ] + }, + { + "name": "Noto Sans Duployan", + "fontFamily": "Noto Sans Duployan, sans-serif", + "slug": "wp-font-lib-noto-sans-duployan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansduployan/v16/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Duployan" + } + ] + }, + { + "name": "Noto Sans Egyptian Hieroglyphs", + "fontFamily": "Noto Sans Egyptian Hieroglyphs, sans-serif", + "slug": "wp-font-lib-noto-sans-egyptian-hieroglyphs", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v26/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Egyptian Hieroglyphs" + } + ] + }, + { + "name": "Noto Sans Elbasan", + "fontFamily": "Noto Sans Elbasan, sans-serif", + "slug": "wp-font-lib-noto-sans-elbasan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanselbasan/v16/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Elbasan" + } + ] + }, + { + "name": "Noto Sans Elymaic", + "fontFamily": "Noto Sans Elymaic, sans-serif", + "slug": "wp-font-lib-noto-sans-elymaic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Elymaic" + } + ] + }, + { + "name": "Noto Sans Ethiopic", + "fontFamily": "Noto Sans Ethiopic, sans-serif", + "slug": "wp-font-lib-noto-sans-ethiopic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OKqDjwmfeaY9u.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OK6DjwmfeaY9u.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T34QK6DjwmfeaY9u.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OK6DjwmfeaY9u.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T358K6DjwmfeaY9u.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36QLKDjwmfeaY9u.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36pLKDjwmfeaY9u.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OLKDjwmfeaY9u.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notosansethiopic/v46/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37nLKDjwmfeaY9u.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ethiopic" + } + ] + }, + { + "name": "Noto Sans Georgian", + "fontFamily": "Noto Sans Georgian, sans-serif", + "slug": "wp-font-lib-noto-sans-georgian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzVj-f5WK0OQV.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptnzFj-f5WK0OQV.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpu5zFj-f5WK0OQV.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvVzFj-f5WK0OQV.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdps5y1j-f5WK0OQV.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpsAy1j-f5WK0OQV.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptny1j-f5WK0OQV.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptOy1j-f5WK0OQV.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Georgian" + } + ] + }, + { + "name": "Noto Sans Glagolitic", + "fontFamily": "Noto Sans Glagolitic, sans-serif", + "slug": "wp-font-lib-noto-sans-glagolitic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansglagolitic/v15/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Glagolitic" + } + ] + }, + { + "name": "Noto Sans Gothic", + "fontFamily": "Noto Sans Gothic, sans-serif", + "slug": "wp-font-lib-noto-sans-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgothic/v15/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gothic" + } + ] + }, + { + "name": "Noto Sans Grantha", + "fontFamily": "Noto Sans Grantha, sans-serif", + "slug": "wp-font-lib-noto-sans-grantha", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Grantha" + } + ] + }, + { + "name": "Noto Sans Gujarati", + "fontFamily": "Noto Sans Gujarati, sans-serif", + "slug": "wp-font-lib-noto-sans-gujarati", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFgPM_OdiEH0s.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpFwPM_OdiEH0s.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_z3FwPM_OdiEH0s.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPM_OdiEH0s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ybFwPM_OdiEH0s.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_x3EAPM_OdiEH0s.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_xOEAPM_OdiEH0s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpEAPM_OdiEH0s.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wAEAPM_OdiEH0s.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gujarati" + } + ] + }, + { + "name": "Noto Sans Gunjala Gondi", + "fontFamily": "Noto Sans Gunjala Gondi, sans-serif", + "slug": "wp-font-lib-noto-sans-gunjala-gondi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgunjalagondi/v15/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gunjala Gondi" + } + ] + }, + { + "name": "Noto Sans Gurmukhi", + "fontFamily": "Noto Sans Gurmukhi, sans-serif", + "slug": "wp-font-lib-noto-sans-gurmukhi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oe3bxZ_trdp7h.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OenbxZ_trdp7h.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG0QenbxZ_trdp7h.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG18enbxZ_trdp7h.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2QfXbxZ_trdp7h.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2pfXbxZ_trdp7h.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OfXbxZ_trdp7h.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3nfXbxZ_trdp7h.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Gurmukhi" + } + ] + }, + { + "name": "Noto Sans HK", + "fontFamily": "Noto Sans HK, sans-serif", + "slug": "wp-font-lib-noto-sans-hk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans HK" + } + ] + }, + { + "name": "Noto Sans Hanifi Rohingya", + "fontFamily": "Noto Sans Hanifi Rohingya, sans-serif", + "slug": "wp-font-lib-noto-sans-hanifi-rohingya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4j6vvcudK8rN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanifi Rohingya" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYq4j6vvcudK8rN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanifi Rohingya" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIbG5T6vvcudK8rN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanifi Rohingya" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshanifirohingya/v26/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIb_5T6vvcudK8rN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanifi Rohingya" + } + ] + }, + { + "name": "Noto Sans Hanunoo", + "fontFamily": "Noto Sans Hanunoo, sans-serif", + "slug": "wp-font-lib-noto-sans-hanunoo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshanunoo/v17/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hanunoo" + } + ] + }, + { + "name": "Noto Sans Hatran", + "fontFamily": "Noto Sans Hatran, sans-serif", + "slug": "wp-font-lib-noto-sans-hatran", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshatran/v15/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hatran" + } + ] + }, + { + "name": "Noto Sans Hebrew", + "fontFamily": "Noto Sans Hebrew, sans-serif", + "slug": "wp-font-lib-noto-sans-hebrew", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4utoiJltutR2g.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX94qtoiJltutR2g.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXKYqtoiJltutR2g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXRYqtoiJltutR2g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXqY2toiJltutR2g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXkI2toiJltutR2g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX942toiJltutR2g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX3o2toiJltutR2g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Hebrew" + } + ] + }, + { + "name": "Noto Sans Imperial Aramaic", + "fontFamily": "Noto Sans Imperial Aramaic, sans-serif", + "slug": "wp-font-lib-noto-sans-imperial-aramaic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansimperialaramaic/v15/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Imperial Aramaic" + } + ] + }, + { + "name": "Noto Sans Indic Siyaq Numbers", + "fontFamily": "Noto Sans Indic Siyaq Numbers, sans-serif", + "slug": "wp-font-lib-noto-sans-indic-siyaq-numbers", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v15/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Indic Siyaq Numbers" + } + ] + }, + { + "name": "Noto Sans Inscriptional Pahlavi", + "fontFamily": "Noto Sans Inscriptional Pahlavi, sans-serif", + "slug": "wp-font-lib-noto-sans-inscriptional-pahlavi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v15/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Inscriptional Pahlavi" + } + ] + }, + { + "name": "Noto Sans Inscriptional Parthian", + "fontFamily": "Noto Sans Inscriptional Parthian, sans-serif", + "slug": "wp-font-lib-noto-sans-inscriptional-parthian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansinscriptionalparthian/v16/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Inscriptional Parthian" + } + ] + }, + { + "name": "Noto Sans JP", + "fontFamily": "Noto Sans JP, sans-serif", + "slug": "wp-font-lib-noto-sans-jp", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEi75vY0rw-oME.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEj75vY0rw-oME.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFE8j75vY0rw-oME.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj75vY0rw-oME.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj75vY0rw-oME.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFM8k75vY0rw-oME.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk75vY0rw-oME.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFJEk75vY0rw-oME.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFLgk75vY0rw-oME.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans JP" + } + ] + }, + { + "name": "Noto Sans Javanese", + "fontFamily": "Noto Sans Javanese, sans-serif", + "slug": "wp-font-lib-noto-sans-javanese", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFliZYWj4O8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Javanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxKvkFFliZYWj4O8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Javanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxEfjFFliZYWj4O8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Javanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxH7jFFliZYWj4O8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Javanese" + } + ] + }, + { + "name": "Noto Sans KR", + "fontFamily": "Noto Sans KR, sans-serif", + "slug": "wp-font-lib-noto-sans-kr", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans KR" + } + ] + }, + { + "name": "Noto Sans Kaithi", + "fontFamily": "Noto Sans Kaithi, sans-serif", + "slug": "wp-font-lib-noto-sans-kaithi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskaithi/v16/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kaithi" + } + ] + }, + { + "name": "Noto Sans Kannada", + "fontFamily": "Noto Sans Kannada, sans-serif", + "slug": "wp-font-lib-noto-sans-kannada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvMzSIMLsPKrkY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvNzSIMLsPKrkY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrGXNzSIMLsPKrkY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrAnNzSIMLsPKrkY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrOXKzSIMLsPKrkY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrNzKzSIMLsPKrkY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvKzSIMLsPKrkY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrJLKzSIMLsPKrkY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kannada" + } + ] + }, + { + "name": "Noto Sans Kayah Li", + "fontFamily": "Noto Sans Kayah Li, sans-serif", + "slug": "wp-font-lib-noto-sans-kayah-li", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kayah Li" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WBU3CZH4EXLuKVM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kayah Li" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WPkwCZH4EXLuKVM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kayah Li" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WMAwCZH4EXLuKVM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kayah Li" + } + ] + }, + { + "name": "Noto Sans Kharoshthi", + "fontFamily": "Noto Sans Kharoshthi, sans-serif", + "slug": "wp-font-lib-noto-sans-kharoshthi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskharoshthi/v16/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Kharoshthi" + } + ] + }, + { + "name": "Noto Sans Khmer", + "fontFamily": "Noto Sans Khmer, sans-serif", + "slug": "wp-font-lib-noto-sans-khmer", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAZz4kAbrddiA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNAJz4kAbrddiA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYvTAJz4kAbrddiA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYu_AJz4kAbrddiA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtTB5z4kAbrddiA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtqB5z4kAbrddiA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNB5z4kAbrddiA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYskB5z4kAbrddiA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khmer" + } + ] + }, + { + "name": "Noto Sans Khojki", + "fontFamily": "Noto Sans Khojki, sans-serif", + "slug": "wp-font-lib-noto-sans-khojki", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskhojki/v16/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khojki" + } + ] + }, + { + "name": "Noto Sans Khudawadi", + "fontFamily": "Noto Sans Khudawadi, sans-serif", + "slug": "wp-font-lib-noto-sans-khudawadi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanskhudawadi/v16/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Khudawadi" + } + ] + }, + { + "name": "Noto Sans Lao", + "fontFamily": "Noto Sans Lao, sans-serif", + "slug": "wp-font-lib-noto-sans-lao", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccfdf5MK3riB2w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cbdf5MK3riB2w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4L8bdf5MK3riB2w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4Q8bdf5MK3riB2w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4r8Hdf5MK3riB2w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4lsHdf5MK3riB2w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cHdf5MK3riB2w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt42MHdf5MK3riB2w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao" + } + ] + }, + { + "name": "Noto Sans Lao Looped", + "fontFamily": "Noto Sans Lao Looped, sans-serif", + "slug": "wp-font-lib-noto-sans-lao-looped", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr2M-Zw5V_T71k.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHr3M-Zw5V_T71k.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomKT3M-Zw5V_T71k.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr3M-Zw5V_T71k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomMj3M-Zw5V_T71k.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomCTwM-Zw5V_T71k.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomB3wM-Zw5V_T71k.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHrwM-Zw5V_T71k.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslaolooped/v5/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomFPwM-Zw5V_T71k.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lao Looped" + } + ] + }, + { + "name": "Noto Sans Lepcha", + "fontFamily": "Noto Sans Lepcha, sans-serif", + "slug": "wp-font-lib-noto-sans-lepcha", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslepcha/v16/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lepcha" + } + ] + }, + { + "name": "Noto Sans Limbu", + "fontFamily": "Noto Sans Limbu, sans-serif", + "slug": "wp-font-lib-noto-sans-limbu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Limbu" + } + ] + }, + { + "name": "Noto Sans Linear A", + "fontFamily": "Noto Sans Linear A, sans-serif", + "slug": "wp-font-lib-noto-sans-linear-a", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslineara/v16/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Linear A" + } + ] + }, + { + "name": "Noto Sans Linear B", + "fontFamily": "Noto Sans Linear B, sans-serif", + "slug": "wp-font-lib-noto-sans-linear-b", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslinearb/v15/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Linear B" + } + ] + }, + { + "name": "Noto Sans Lisu", + "fontFamily": "Noto Sans Lisu, sans-serif", + "slug": "wp-font-lib-noto-sans-lisu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lisu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP61wt29IlxkVdig.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lisu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPB1st29IlxkVdig.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lisu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPPlst29IlxkVdig.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lisu" + } + ] + }, + { + "name": "Noto Sans Lycian", + "fontFamily": "Noto Sans Lycian, sans-serif", + "slug": "wp-font-lib-noto-sans-lycian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lycian" + } + ] + }, + { + "name": "Noto Sans Lydian", + "fontFamily": "Noto Sans Lydian, sans-serif", + "slug": "wp-font-lib-noto-sans-lydian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanslydian/v15/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Lydian" + } + ] + }, + { + "name": "Noto Sans Mahajani", + "fontFamily": "Noto Sans Mahajani, sans-serif", + "slug": "wp-font-lib-noto-sans-mahajani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmahajani/v15/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mahajani" + } + ] + }, + { + "name": "Noto Sans Malayalam", + "fontFamily": "Noto Sans Malayalam, sans-serif", + "slug": "wp-font-lib-noto-sans-malayalam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuH9BFzEr6HxEA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuD9BFzEr6HxEA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_GOD9BFzEr6HxEA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_dOD9BFzEr6HxEA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_mOf9BFzEr6HxEA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_oef9BFzEr6HxEA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuf9BFzEr6HxEA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_7-f9BFzEr6HxEA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Malayalam" + } + ] + }, + { + "name": "Noto Sans Mandaic", + "fontFamily": "Noto Sans Mandaic, sans-serif", + "slug": "wp-font-lib-noto-sans-mandaic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmandaic/v15/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mandaic" + } + ] + }, + { + "name": "Noto Sans Manichaean", + "fontFamily": "Noto Sans Manichaean, sans-serif", + "slug": "wp-font-lib-noto-sans-manichaean", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmanichaean/v15/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Manichaean" + } + ] + }, + { + "name": "Noto Sans Marchen", + "fontFamily": "Noto Sans Marchen, sans-serif", + "slug": "wp-font-lib-noto-sans-marchen", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmarchen/v17/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Marchen" + } + ] + }, + { + "name": "Noto Sans Masaram Gondi", + "fontFamily": "Noto Sans Masaram Gondi, sans-serif", + "slug": "wp-font-lib-noto-sans-masaram-gondi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Masaram Gondi" + } + ] + }, + { + "name": "Noto Sans Math", + "fontFamily": "Noto Sans Math, sans-serif", + "slug": "wp-font-lib-noto-sans-math", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Math" + } + ] + }, + { + "name": "Noto Sans Mayan Numerals", + "fontFamily": "Noto Sans Mayan Numerals, sans-serif", + "slug": "wp-font-lib-noto-sans-mayan-numerals", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmayannumerals/v15/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mayan Numerals" + } + ] + }, + { + "name": "Noto Sans Medefaidrin", + "fontFamily": "Noto Sans Medefaidrin, sans-serif", + "slug": "wp-font-lib-noto-sans-medefaidrin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Medefaidrin" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmHjWlT318e5A3rw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Medefaidrin" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmJTRlT318e5A3rw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Medefaidrin" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmK3RlT318e5A3rw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Medefaidrin" + } + ] + }, + { + "name": "Noto Sans Meetei Mayek", + "fontFamily": "Noto Sans Meetei Mayek, sans-serif", + "slug": "wp-font-lib-noto-sans-meetei-mayek", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ__TW5PgeFYVa.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ_vTW5PgeFYVa.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1SX_vTW5PgeFYVa.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1T7_vTW5PgeFYVa.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1QX-fTW5PgeFYVa.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Qu-fTW5PgeFYVa.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ-fTW5PgeFYVa.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Rg-fTW5PgeFYVa.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meetei Mayek" + } + ] + }, + { + "name": "Noto Sans Mende Kikakui", + "fontFamily": "Noto Sans Mende Kikakui, sans-serif", + "slug": "wp-font-lib-noto-sans-mende-kikakui", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmendekikakui/v28/11hRGoLHz17aKjQCWj-JHcLvu2Q5zZrnkbNCLUx_aDJLAHer.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mende Kikakui" + } + ] + }, + { + "name": "Noto Sans Meroitic", + "fontFamily": "Noto Sans Meroitic, sans-serif", + "slug": "wp-font-lib-noto-sans-meroitic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmeroitic/v16/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Meroitic" + } + ] + }, + { + "name": "Noto Sans Miao", + "fontFamily": "Noto Sans Miao, sans-serif", + "slug": "wp-font-lib-noto-sans-miao", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Miao" + } + ] + }, + { + "name": "Noto Sans Modi", + "fontFamily": "Noto Sans Modi, sans-serif", + "slug": "wp-font-lib-noto-sans-modi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmodi/v20/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Modi" + } + ] + }, + { + "name": "Noto Sans Mongolian", + "fontFamily": "Noto Sans Mongolian, sans-serif", + "slug": "wp-font-lib-noto-sans-mongolian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mongolian" + } + ] + }, + { + "name": "Noto Sans Mono", + "fontFamily": "Noto Sans Mono, monospace", + "slug": "wp-font-lib-noto-sans-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNI49rXVEQQL8Y.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNJ49rXVEQQL8Y.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_A1J49rXVEQQL8Y.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49rXVEQQL8Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_GFJ49rXVEQQL8Y.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_I1O49rXVEQQL8Y.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_LRO49rXVEQQL8Y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNO49rXVEQQL8Y.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmono/v27/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_PpO49rXVEQQL8Y.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mono" + } + ] + }, + { + "name": "Noto Sans Mro", + "fontFamily": "Noto Sans Mro, sans-serif", + "slug": "wp-font-lib-noto-sans-mro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Mro" + } + ] + }, + { + "name": "Noto Sans Multani", + "fontFamily": "Noto Sans Multani, sans-serif", + "slug": "wp-font-lib-noto-sans-multani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Multani" + } + ] + }, + { + "name": "Noto Sans Myanmar", + "fontFamily": "Noto Sans Myanmar, sans-serif", + "slug": "wp-font-lib-noto-sans-myanmar", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZs_y1ZtY3ymOryg38hOCSdOnFq0HGS1uEapkAC3AY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HE-98EwiEwLxR-r.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFa9MEwiEwLxR-r.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEC9cEwiEwLxR-r.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEu8sEwiEwLxR-r.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFK88EwiEwLxR-r.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFW8MEwiEwLxR-r.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFy8cEwiEwLxR-r.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Myanmar" + } + ] + }, + { + "name": "Noto Sans NKo", + "fontFamily": "Noto Sans NKo, sans-serif", + "slug": "wp-font-lib-noto-sans-nko", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnko/v2/esDX31ZdNv-KYGGJpKGk2_RpMpCMHMLBrdA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans NKo" + } + ] + }, + { + "name": "Noto Sans Nabataean", + "fontFamily": "Noto Sans Nabataean, sans-serif", + "slug": "wp-font-lib-noto-sans-nabataean", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnabataean/v15/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nabataean" + } + ] + }, + { + "name": "Noto Sans Nag Mundari", + "fontFamily": "Noto Sans Nag Mundari, sans-serif", + "slug": "wp-font-lib-noto-sans-nag-mundari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHRxirbUGA0whP19M.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nag Mundari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHRyqrbUGA0whP19M.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nag Mundari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHR8asbUGA0whP19M.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nag Mundari" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnagmundari/v1/3qTAoi2hnSyU8TNFIdhZTyod3g5lBnKlQFk2kS9fr9Eq09RHR_-sbUGA0whP19M.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nag Mundari" + } + ] + }, + { + "name": "Noto Sans Nandinagari", + "fontFamily": "Noto Sans Nandinagari, sans-serif", + "slug": "wp-font-lib-noto-sans-nandinagari", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnandinagari/v3/or38Q7733eiDljA1IufXSNFT-1KI5y10H4jVa5RXzC1KOw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nandinagari" + } + ] + }, + { + "name": "Noto Sans New Tai Lue", + "fontFamily": "Noto Sans New Tai Lue, sans-serif", + "slug": "wp-font-lib-noto-sans-new-tai-lue", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAYUbghFPKzeY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans New Tai Lue" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pddfAYUbghFPKzeY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans New Tai Lue" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdTvHYUbghFPKzeY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans New Tai Lue" + }, + { + "src": "http://fonts.gstatic.com/s/notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdQLHYUbghFPKzeY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans New Tai Lue" + } + ] + }, + { + "name": "Noto Sans Newa", + "fontFamily": "Noto Sans Newa, sans-serif", + "slug": "wp-font-lib-noto-sans-newa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Newa" + } + ] + }, + { + "name": "Noto Sans Nushu", + "fontFamily": "Noto Sans Nushu, sans-serif", + "slug": "wp-font-lib-noto-sans-nushu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansnushu/v19/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Nushu" + } + ] + }, + { + "name": "Noto Sans Ogham", + "fontFamily": "Noto Sans Ogham, sans-serif", + "slug": "wp-font-lib-noto-sans-ogham", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansogham/v15/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ogham" + } + ] + }, + { + "name": "Noto Sans Ol Chiki", + "fontFamily": "Noto Sans Ol Chiki, sans-serif", + "slug": "wp-font-lib-noto-sans-ol-chiki", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ol Chiki" + }, + { + "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALVs267I6gVrz5gQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ol Chiki" + }, + { + "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALbcx67I6gVrz5gQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ol Chiki" + }, + { + "src": "http://fonts.gstatic.com/s/notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALY4x67I6gVrz5gQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ol Chiki" + } + ] + }, + { + "name": "Noto Sans Old Hungarian", + "fontFamily": "Noto Sans Old Hungarian, sans-serif", + "slug": "wp-font-lib-noto-sans-old-hungarian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldhungarian/v15/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Hungarian" + } + ] + }, + { + "name": "Noto Sans Old Italic", + "fontFamily": "Noto Sans Old Italic, sans-serif", + "slug": "wp-font-lib-noto-sans-old-italic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansolditalic/v15/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Italic" + } + ] + }, + { + "name": "Noto Sans Old North Arabian", + "fontFamily": "Noto Sans Old North Arabian, sans-serif", + "slug": "wp-font-lib-noto-sans-old-north-arabian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldnortharabian/v15/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old North Arabian" + } + ] + }, + { + "name": "Noto Sans Old Permic", + "fontFamily": "Noto Sans Old Permic, sans-serif", + "slug": "wp-font-lib-noto-sans-old-permic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldpermic/v16/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Permic" + } + ] + }, + { + "name": "Noto Sans Old Persian", + "fontFamily": "Noto Sans Old Persian, sans-serif", + "slug": "wp-font-lib-noto-sans-old-persian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldpersian/v15/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Persian" + } + ] + }, + { + "name": "Noto Sans Old Sogdian", + "fontFamily": "Noto Sans Old Sogdian, sans-serif", + "slug": "wp-font-lib-noto-sans-old-sogdian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldsogdian/v15/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Sogdian" + } + ] + }, + { + "name": "Noto Sans Old South Arabian", + "fontFamily": "Noto Sans Old South Arabian, sans-serif", + "slug": "wp-font-lib-noto-sans-old-south-arabian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldsoutharabian/v15/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old South Arabian" + } + ] + }, + { + "name": "Noto Sans Old Turkic", + "fontFamily": "Noto Sans Old Turkic, sans-serif", + "slug": "wp-font-lib-noto-sans-old-turkic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoldturkic/v15/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Old Turkic" + } + ] + }, + { + "name": "Noto Sans Oriya", + "fontFamily": "Noto Sans Oriya, sans-serif", + "slug": "wp-font-lib-noto-sans-oriya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0fq_c6LhHBRe-.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0f6_c6LhHBRe-.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Iviqf6_c6LhHBRe-.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_c6LhHBRe-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvjGf6_c6LhHBRe-.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgqeK_c6LhHBRe-.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgTeK_c6LhHBRe-.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0eK_c6LhHBRe-.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvhdeK_c6LhHBRe-.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Oriya" + } + ] + }, + { + "name": "Noto Sans Osage", + "fontFamily": "Noto Sans Osage, sans-serif", + "slug": "wp-font-lib-noto-sans-osage", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Osage" + } + ] + }, + { + "name": "Noto Sans Osmanya", + "fontFamily": "Noto Sans Osmanya, sans-serif", + "slug": "wp-font-lib-noto-sans-osmanya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Osmanya" + } + ] + }, + { + "name": "Noto Sans Pahawh Hmong", + "fontFamily": "Noto Sans Pahawh Hmong, sans-serif", + "slug": "wp-font-lib-noto-sans-pahawh-hmong", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanspahawhhmong/v18/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Pahawh Hmong" + } + ] + }, + { + "name": "Noto Sans Palmyrene", + "fontFamily": "Noto Sans Palmyrene, sans-serif", + "slug": "wp-font-lib-noto-sans-palmyrene", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanspalmyrene/v15/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Palmyrene" + } + ] + }, + { + "name": "Noto Sans Pau Cin Hau", + "fontFamily": "Noto Sans Pau Cin Hau, sans-serif", + "slug": "wp-font-lib-noto-sans-pau-cin-hau", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanspaucinhau/v20/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Pau Cin Hau" + } + ] + }, + { + "name": "Noto Sans Phags Pa", + "fontFamily": "Noto Sans Phags Pa, sans-serif", + "slug": "wp-font-lib-noto-sans-phags-pa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Phags Pa" + } + ] + }, + { + "name": "Noto Sans Phoenician", + "fontFamily": "Noto Sans Phoenician, sans-serif", + "slug": "wp-font-lib-noto-sans-phoenician", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansphoenician/v15/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Phoenician" + } + ] + }, + { + "name": "Noto Sans Psalter Pahlavi", + "fontFamily": "Noto Sans Psalter Pahlavi, sans-serif", + "slug": "wp-font-lib-noto-sans-psalter-pahlavi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanspsalterpahlavi/v15/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Psalter Pahlavi" + } + ] + }, + { + "name": "Noto Sans Rejang", + "fontFamily": "Noto Sans Rejang, sans-serif", + "slug": "wp-font-lib-noto-sans-rejang", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansrejang/v18/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Rejang" + } + ] + }, + { + "name": "Noto Sans Runic", + "fontFamily": "Noto Sans Runic, sans-serif", + "slug": "wp-font-lib-noto-sans-runic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansrunic/v15/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Runic" + } + ] + }, + { + "name": "Noto Sans SC", + "fontFamily": "Noto Sans SC, sans-serif", + "slug": "wp-font-lib-noto-sans-sc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans SC" + } + ] + }, + { + "name": "Noto Sans Samaritan", + "fontFamily": "Noto Sans Samaritan, sans-serif", + "slug": "wp-font-lib-noto-sans-samaritan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssamaritan/v15/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUo5jNlOVMzQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Samaritan" + } + ] + }, + { + "name": "Noto Sans Saurashtra", + "fontFamily": "Noto Sans Saurashtra, sans-serif", + "slug": "wp-font-lib-noto-sans-saurashtra", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssaurashtra/v19/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Saurashtra" + } + ] + }, + { + "name": "Noto Sans Sharada", + "fontFamily": "Noto Sans Sharada, sans-serif", + "slug": "wp-font-lib-noto-sans-sharada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sharada" + } + ] + }, + { + "name": "Noto Sans Shavian", + "fontFamily": "Noto Sans Shavian, sans-serif", + "slug": "wp-font-lib-noto-sans-shavian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansshavian/v15/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Shavian" + } + ] + }, + { + "name": "Noto Sans Siddham", + "fontFamily": "Noto Sans Siddham, sans-serif", + "slug": "wp-font-lib-noto-sans-siddham", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssiddham/v17/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Siddham" + } + ] + }, + { + "name": "Noto Sans SignWriting", + "fontFamily": "Noto Sans SignWriting, sans-serif", + "slug": "wp-font-lib-noto-sans-signwriting", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssignwriting/v1/Noas6VX_wIWFbTTCrYmvy9A2UnkL-2SZAWiUEVCARYQemg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans SignWriting" + } + ] + }, + { + "name": "Noto Sans Sinhala", + "fontFamily": "Noto Sans Sinhala, sans-serif", + "slug": "wp-font-lib-noto-sans-sinhala", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2b5lgLpJwbQRM.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2a5lgLpJwbQRM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwlOa5lgLpJwbQRM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwj-a5lgLpJwbQRM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwtOd5lgLpJwbQRM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwuqd5lgLpJwbQRM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2d5lgLpJwbQRM.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwqSd5lgLpJwbQRM.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sinhala" + } + ] + }, + { + "name": "Noto Sans Sogdian", + "fontFamily": "Noto Sans Sogdian, sans-serif", + "slug": "wp-font-lib-noto-sans-sogdian", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssogdian/v15/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sogdian" + } + ] + }, + { + "name": "Noto Sans Sora Sompeng", + "fontFamily": "Noto Sans Sora Sompeng, sans-serif", + "slug": "wp-font-lib-noto-sans-sora-sompeng", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sora Sompeng" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHRO18DpZXJQd4Mu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sora Sompeng" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSi0MDpZXJQd4Mu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sora Sompeng" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSb0MDpZXJQd4Mu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sora Sompeng" + } + ] + }, + { + "name": "Noto Sans Soyombo", + "fontFamily": "Noto Sans Soyombo, sans-serif", + "slug": "wp-font-lib-noto-sans-soyombo", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssoyombo/v15/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Soyombo" + } + ] + }, + { + "name": "Noto Sans Sundanese", + "fontFamily": "Noto Sans Sundanese, sans-serif", + "slug": "wp-font-lib-noto-sans-sundanese", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sundanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxbNNHCizv7fQES.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sundanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6cty3M9HCizv7fQES.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sundanese" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctyOM9HCizv7fQES.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Sundanese" + } + ] + }, + { + "name": "Noto Sans Syloti Nagri", + "fontFamily": "Noto Sans Syloti Nagri, sans-serif", + "slug": "wp-font-lib-noto-sans-syloti-nagri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syloti Nagri" + } + ] + }, + { + "name": "Noto Sans Symbols", + "fontFamily": "Noto Sans Symbols, sans-serif", + "slug": "wp-font-lib-noto-sans-symbols", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ4gavVFRkzrbQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_Q8gavVFRkzrbQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gIw8gavVFRkzrbQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gTw8gavVFRkzrbQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gowggavVFRkzrbQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gmgggavVFRkzrbQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_QggavVFRkzrbQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g1AggavVFRkzrbQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols" + } + ] + }, + { + "name": "Noto Sans Symbols 2", + "fontFamily": "Noto Sans Symbols 2, sans-serif", + "slug": "wp-font-lib-noto-sans-symbols-2", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssymbols2/v19/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Symbols 2" + } + ] + }, + { + "name": "Noto Sans Syriac", + "fontFamily": "Noto Sans Syriac, sans-serif", + "slug": "wp-font-lib-noto-sans-syriac", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9caJyZfUL_FC.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD9MaJyZfUL_FC.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Ud9MaJyZfUL_FC.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9MaJyZfUL_FC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Vx9MaJyZfUL_FC.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wd88aJyZfUL_FC.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Wk88aJyZfUL_FC.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-XD88aJyZfUL_FC.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + }, + { + "src": "http://fonts.gstatic.com/s/notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-Xq88aJyZfUL_FC.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Syriac" + } + ] + }, + { + "name": "Noto Sans TC", + "fontFamily": "Noto Sans TC, sans-serif", + "slug": "wp-font-lib-noto-sans-tc", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans TC" + } + ] + }, + { + "name": "Noto Sans Tagalog", + "fontFamily": "Noto Sans Tagalog, sans-serif", + "slug": "wp-font-lib-noto-sans-tagalog", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstagalog/v18/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tagalog" + } + ] + }, + { + "name": "Noto Sans Tagbanwa", + "fontFamily": "Noto Sans Tagbanwa, sans-serif", + "slug": "wp-font-lib-noto-sans-tagbanwa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstagbanwa/v18/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tagbanwa" + } + ] + }, + { + "name": "Noto Sans Tai Le", + "fontFamily": "Noto Sans Tai Le, sans-serif", + "slug": "wp-font-lib-noto-sans-tai-le", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Le" + } + ] + }, + { + "name": "Noto Sans Tai Tham", + "fontFamily": "Noto Sans Tai Tham, sans-serif", + "slug": "wp-font-lib-noto-sans-tai-tham", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Tham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBBcbPgquyaRGKMw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Tham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBPscPgquyaRGKMw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Tham" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBMIcPgquyaRGKMw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Tham" + } + ] + }, + { + "name": "Noto Sans Tai Viet", + "fontFamily": "Noto Sans Tai Viet, sans-serif", + "slug": "wp-font-lib-noto-sans-tai-viet", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstaiviet/v16/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tai Viet" + } + ] + }, + { + "name": "Noto Sans Takri", + "fontFamily": "Noto Sans Takri, sans-serif", + "slug": "wp-font-lib-noto-sans-takri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstakri/v21/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Takri" + } + ] + }, + { + "name": "Noto Sans Tamil", + "fontFamily": "Noto Sans Tamil, sans-serif", + "slug": "wp-font-lib-noto-sans-tamil", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGor0RqKDt_EvT.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGo70RqKDt_EvT.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7uYo70RqKDt_EvT.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7v0o70RqKDt_EvT.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7sYpL0RqKDt_EvT.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7shpL0RqKDt_EvT.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGpL0RqKDt_EvT.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tvpL0RqKDt_EvT.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil" + } + ] + }, + { + "name": "Noto Sans Tamil Supplement", + "fontFamily": "Noto Sans Tamil Supplement, sans-serif", + "slug": "wp-font-lib-noto-sans-tamil-supplement", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstamilsupplement/v19/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tamil Supplement" + } + ] + }, + { + "name": "Noto Sans Tangsa", + "fontFamily": "Noto Sans Tangsa, sans-serif", + "slug": "wp-font-lib-noto-sans-tangsa", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1YkyoRYdplyJDA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tangsa" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1qkyoRYdplyJDA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tangsa" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2GlCoRYdplyJDA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tangsa" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstangsa/v3/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2_lCoRYdplyJDA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tangsa" + } + ] + }, + { + "name": "Noto Sans Telugu", + "fontFamily": "Noto Sans Telugu, sans-serif", + "slug": "wp-font-lib-noto-sans-telugu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezfqQUbf-3v37w.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zbqQUbf-3v37w.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntJTbqQUbf-3v37w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntSTbqQUbf-3v37w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntpTHqQUbf-3v37w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntnDHqQUbf-3v37w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zHqQUbf-3v37w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt0jHqQUbf-3v37w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Telugu" + } + ] + }, + { + "name": "Noto Sans Thaana", + "fontFamily": "Noto Sans Thaana, sans-serif", + "slug": "wp-font-lib-noto-sans-thaana", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbxLhnu4-tbNu.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VrbhLhnu4-tbNu.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4W1bhLhnu4-tbNu.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XZbhLhnu4-tbNu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4U1aRLhnu4-tbNu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4UMaRLhnu4-tbNu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VraRLhnu4-tbNu.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VCaRLhnu4-tbNu.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thaana" + } + ] + }, + { + "name": "Noto Sans Thai", + "fontFamily": "Noto Sans Thai, sans-serif", + "slug": "wp-font-lib-noto-sans-thai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RspzF-QRvzzXg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRtpzF-QRvzzXg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU8ptpzF-QRvzzXg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU6ZtpzF-QRvzzXg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU0pqpzF-QRvzzXg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU3NqpzF-QRvzzXg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRqpzF-QRvzzXg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUz1qpzF-QRvzzXg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai" + } + ] + }, + { + "name": "Noto Sans Thai Looped", + "fontFamily": "Noto Sans Thai Looped, sans-serif", + "slug": "wp-font-lib-noto-sans-thai-looped", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50fF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3YX6AYeCT_Wfd1.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y84E4UgrzUO5sKA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yl4I4UgrzUO5sKA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gO6ocWiHvWQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yz4M4UgrzUO5sKA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y44Q4UgrzUO5sKA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yh4U4UgrzUO5sKA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Ym4Y4UgrzUO5sKA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + }, + { + "src": "http://fonts.gstatic.com/s/notosansthailooped/v14/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yv4c4UgrzUO5sKA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Sans Thai Looped" + } + ] + }, + { + "name": "Noto Sans Tifinagh", + "fontFamily": "Noto Sans Tifinagh, sans-serif", + "slug": "wp-font-lib-noto-sans-tifinagh", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstifinagh/v17/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tifinagh" + } + ] + }, + { + "name": "Noto Sans Tirhuta", + "fontFamily": "Noto Sans Tirhuta, sans-serif", + "slug": "wp-font-lib-noto-sans-tirhuta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanstirhuta/v15/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Tirhuta" + } + ] + }, + { + "name": "Noto Sans Ugaritic", + "fontFamily": "Noto Sans Ugaritic, sans-serif", + "slug": "wp-font-lib-noto-sans-ugaritic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansugaritic/v16/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Ugaritic" + } + ] + }, + { + "name": "Noto Sans Vai", + "fontFamily": "Noto Sans Vai, sans-serif", + "slug": "wp-font-lib-noto-sans-vai", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Vai" + } + ] + }, + { + "name": "Noto Sans Wancho", + "fontFamily": "Noto Sans Wancho, sans-serif", + "slug": "wp-font-lib-noto-sans-wancho", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Wancho" + } + ] + }, + { + "name": "Noto Sans Warang Citi", + "fontFamily": "Noto Sans Warang Citi, sans-serif", + "slug": "wp-font-lib-noto-sans-warang-citi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Warang Citi" + } + ] + }, + { + "name": "Noto Sans Yi", + "fontFamily": "Noto Sans Yi, sans-serif", + "slug": "wp-font-lib-noto-sans-yi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosansyi/v19/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Yi" + } + ] + }, + { + "name": "Noto Sans Zanabazar Square", + "fontFamily": "Noto Sans Zanabazar Square, sans-serif", + "slug": "wp-font-lib-noto-sans-zanabazar-square", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notosanszanabazarsquare/v16/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Sans Zanabazar Square" + } + ] + }, + { + "name": "Noto Serif", + "fontFamily": "Noto Serif, serif", + "slug": "wp-font-lib-noto-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFGjwM0Lhq_Szw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZKFCjwM0Lhq_Szw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZ9lCjwM0Lhq_Szw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFCjwM0Lhq_Szw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZmlCjwM0Lhq_Szw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZdlejwM0Lhq_Szw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZT1ejwM0Lhq_Szw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZKFejwM0Lhq_Szw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZAVejwM0Lhq_Szw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBNLgscPpKrCzyUi.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPLg8cPpKrCzyUi.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBMVg8cPpKrCzyUi.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBNLg8cPpKrCzyUi.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBN5g8cPpKrCzyUi.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBOVhMcPpKrCzyUi.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBOshMcPpKrCzyUi.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPLhMcPpKrCzyUi.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/notoserif/v22/ga6saw1J5X9T9RW6j9bNfFIMZhhWnFTyNZIQD1-_FXP0RgnaOg9MYBPihMcPpKrCzyUi.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Noto Serif" + } + ] + }, + { + "name": "Noto Serif Ahom", + "fontFamily": "Noto Serif Ahom, serif", + "slug": "wp-font-lib-noto-serif-ahom", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifahom/v19/FeVIS0hfp6cprmEUffAW_fUL_AN-wuYrPFiwaw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ahom" + } + ] + }, + { + "name": "Noto Serif Armenian", + "fontFamily": "Noto Serif Armenian, serif", + "slug": "wp-font-lib-noto-serif-armenian", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8ObxvXagGdkbg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8KbxvXagGdkbg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZ1cKbxvXagGdkbg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8KbxvXagGdkbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZucKbxvXagGdkbg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZVcWbxvXagGdkbg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZbMWbxvXagGdkbg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8WbxvXagGdkbg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifarmenian/v25/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZIsWbxvXagGdkbg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Armenian" + } + ] + }, + { + "name": "Noto Serif Balinese", + "fontFamily": "Noto Serif Balinese, serif", + "slug": "wp-font-lib-noto-serif-balinese", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifbalinese/v18/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRbgJdhapcUU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Balinese" + } + ] + }, + { + "name": "Noto Serif Bengali", + "fontFamily": "Noto Serif Bengali, serif", + "slug": "wp-font-lib-noto-serif-bengali", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAH3qn4LjQH8yD.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAHnqn4LjQH8yD.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfdeHnqn4LjQH8yD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHnqn4LjQH8yD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcyHnqn4LjQH8yD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffeGXqn4LjQH8yD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffnGXqn4LjQH8yD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAGXqn4LjQH8yD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfepGXqn4LjQH8yD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Bengali" + } + ] + }, + { + "name": "Noto Serif Devanagari", + "fontFamily": "Noto Serif Devanagari, serif", + "slug": "wp-font-lib-noto-serif-devanagari", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-og-HMUe1u_dv.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-ow-HMUe1u_dv.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTBgow-HMUe1u_dv.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-ow-HMUe1u_dv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTAMow-HMUe1u_dv.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDgpA-HMUe1u_dv.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDZpA-HMUe1u_dv.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-pA-HMUe1u_dv.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdevanagari/v28/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTCXpA-HMUe1u_dv.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Devanagari" + } + ] + }, + { + "name": "Noto Serif Display", + "fontFamily": "Noto Serif Display, serif", + "slug": "wp-font-lib-noto-serif-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd49gKaDU9hvzC.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd4tgKaDU9hvzC.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVoD4tgKaDU9hvzC.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4tgKaDU9hvzC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpv4tgKaDU9hvzC.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVqD5dgKaDU9hvzC.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVq65dgKaDU9hvzC.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd5dgKaDU9hvzC.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVr05dgKaDU9hvzC.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBIYjEfg-zCmf4.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBJYjEfg-zCmf4.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoW5JYjEfg-zCmf4.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBJYjEfg-zCmf4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoQJJYjEfg-zCmf4.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-Voe5OYjEfg-zCmf4.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoddOYjEfg-zCmf4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBOYjEfg-zCmf4.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifdisplay/v18/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoZlOYjEfg-zCmf4.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Noto Serif Display" + } + ] + }, + { + "name": "Noto Serif Dogra", + "fontFamily": "Noto Serif Dogra, serif", + "slug": "wp-font-lib-noto-serif-dogra", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifdogra/v16/MQpP-XquKMC7ROPP3QOOlm7xPu3fGy63IbPzkns.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Dogra" + } + ] + }, + { + "name": "Noto Serif Ethiopic", + "fontFamily": "Noto Serif Ethiopic, serif", + "slug": "wp-font-lib-noto-serif-ethiopic", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSQjkaO9UVLyiw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSUjkaO9UVLyiw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCkyUjkaO9UVLyiw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUjkaO9UVLyiw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxC_yUjkaO9UVLyiw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCEyIjkaO9UVLyiw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCKiIjkaO9UVLyiw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSIjkaO9UVLyiw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifethiopic/v23/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCZCIjkaO9UVLyiw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Ethiopic" + } + ] + }, + { + "name": "Noto Serif Georgian", + "fontFamily": "Noto Serif Georgian, serif", + "slug": "wp-font-lib-noto-serif-georgian", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvsfdzTw-FgZxQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzvofdzTw-FgZxQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSEPofdzTw-FgZxQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvofdzTw-FgZxQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSfPofdzTw-FgZxQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSkP0fdzTw-FgZxQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSqf0fdzTw-FgZxQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzv0fdzTw-FgZxQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgeorgian/v24/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aS5_0fdzTw-FgZxQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Georgian" + } + ] + }, + { + "name": "Noto Serif Grantha", + "fontFamily": "Noto Serif Grantha, serif", + "slug": "wp-font-lib-noto-serif-grantha", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifgrantha/v19/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqFENLR7fHGw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Grantha" + } + ] + }, + { + "name": "Noto Serif Gujarati", + "fontFamily": "Noto Serif Gujarati, serif", + "slug": "wp-font-lib-noto-serif-gujarati", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycYzuM1Kf-OJu.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuaycIzuM1Kf-OJu.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuZscIzuM1Kf-OJu.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycIzuM1Kf-OJu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYAcIzuM1Kf-OJu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Hubsd4zuM1Kf-OJu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HubVd4zuM1Kf-OJu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huayd4zuM1Kf-OJu.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgujarati/v26/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huabd4zuM1Kf-OJu.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gujarati" + } + ] + }, + { + "name": "Noto Serif Gurmukhi", + "fontFamily": "Noto Serif Gurmukhi, serif", + "slug": "wp-font-lib-noto-serif-gurmukhi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eBTNmqVU7y6l.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-eRTNmqVU7y6l.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr7geRTNmqVU7y6l.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eRTNmqVU7y6l.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6MeRTNmqVU7y6l.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5gfhTNmqVU7y6l.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5ZfhTNmqVU7y6l.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-fhTNmqVU7y6l.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifgurmukhi/v20/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4XfhTNmqVU7y6l.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Gurmukhi" + } + ] + }, + { + "name": "Noto Serif HK", + "fontFamily": "Noto Serif HK, serif", + "slug": "wp-font-lib-noto-serif-hk", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-K2RmV9Su1M6i.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMcgK2RmV9Su1M6i.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMd-K2RmV9Su1M6i.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMdMK2RmV9Su1M6i.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMegLGRmV9Su1M6i.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMeZLGRmV9Su1M6i.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-LGRmV9Su1M6i.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMfXLGRmV9Su1M6i.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif HK" + } + ] + }, + { + "name": "Noto Serif Hebrew", + "fontFamily": "Noto Serif Hebrew, serif", + "slug": "wp-font-lib-noto-serif-hebrew", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwTAG8_vlQxz24.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwSAG8_vlQxz24.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVFISAG8_vlQxz24.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSAG8_vlQxz24.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVD4SAG8_vlQxz24.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVNIVAG8_vlQxz24.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVOsVAG8_vlQxz24.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwVAG8_vlQxz24.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifhebrew/v25/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVKUVAG8_vlQxz24.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Hebrew" + } + ] + }, + { + "name": "Noto Serif JP", + "fontFamily": "Noto Serif JP, serif", + "slug": "wp-font-lib-noto-serif-jp", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif JP" + } + ] + }, + { + "name": "Noto Serif KR", + "fontFamily": "Noto Serif KR, serif", + "slug": "wp-font-lib-noto-serif-kr", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif KR" + } + ] + }, + { + "name": "Noto Serif Kannada", + "fontFamily": "Noto Serif Kannada, serif", + "slug": "wp-font-lib-noto-serif-kannada", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYCceRJ71svgcI.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYDceRJ71svgcI.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgZgDceRJ71svgcI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDceRJ71svgcI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgfQDceRJ71svgcI.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgRgEceRJ71svgcI.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgSEEceRJ71svgcI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYEceRJ71svgcI.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkannada/v26/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgW8EceRJ71svgcI.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Kannada" + } + ] + }, + { + "name": "Noto Serif Khmer", + "fontFamily": "Noto Serif Khmer, serif", + "slug": "wp-font-lib-noto-serif-khmer", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B4wXEZK9Xo4xg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaB8wXEZK9Xo4xg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNth8wXEZK9Xo4xg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8wXEZK9Xo4xg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN2h8wXEZK9Xo4xg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNNhgwXEZK9Xo4xg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNDxgwXEZK9Xo4xg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaBgwXEZK9Xo4xg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhmer/v23/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNQRgwXEZK9Xo4xg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khmer" + } + ] + }, + { + "name": "Noto Serif Khojki", + "fontFamily": "Noto Serif Khojki, serif", + "slug": "wp-font-lib-noto-serif-khojki", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY0ghvyZ0Qtc5HAQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khojki" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY4AhvyZ0Qtc5HAQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khojki" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYDA9vyZ0Qtc5HAQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khojki" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifkhojki/v8/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYNQ9vyZ0Qtc5HAQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Khojki" + } + ] + }, + { + "name": "Noto Serif Lao", + "fontFamily": "Noto Serif Lao, serif", + "slug": "wp-font-lib-noto-serif-lao", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMLrvOjlmyhHHQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMKrvOjlmyhHHQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8Vb0KrvOjlmyhHHQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKrvOjlmyhHHQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VdEKrvOjlmyhHHQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VT0NrvOjlmyhHHQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VQQNrvOjlmyhHHQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMNrvOjlmyhHHQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriflao/v23/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VUoNrvOjlmyhHHQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Lao" + } + ] + }, + { + "name": "Noto Serif Malayalam", + "fontFamily": "Noto Serif Malayalam, serif", + "slug": "wp-font-lib-noto-serif-malayalam", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-1fnVwHpQVySg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-xfnVwHpQVySg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL16exfnVwHpQVySg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xfnVwHpQVySg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1hexfnVwHpQVySg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1aetfnVwHpQVySg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1UOtfnVwHpQVySg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-tfnVwHpQVySg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmalayalam/v28/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1HutfnVwHpQVySg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Malayalam" + } + ] + }, + { + "name": "Noto Serif Myanmar", + "fontFamily": "Noto Serif Myanmar, serif", + "slug": "wp-font-lib-noto-serif-myanmar", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJudM7F2Yv76aBKKs-bHMQfAHUw3jnNwBDsU9X6RPzQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNbDHMefv2TeXJng.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNCDLMefv2TeXJng.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1pBrocdDqRA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNUDPMefv2TeXJng.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNfDTMefv2TeXJng.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNGDXMefv2TeXJng.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNBDbMefv2TeXJng.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNIDfMefv2TeXJng.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Myanmar" + } + ] + }, + { + "name": "Noto Serif NP Hmong", + "fontFamily": "Noto Serif NP Hmong, serif", + "slug": "wp-font-lib-noto-serif-np-hmong", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbjPhFLp3u0rVO-d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif NP Hmong" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbj9hFLp3u0rVO-d.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif NP Hmong" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgRg1Lp3u0rVO-d.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif NP Hmong" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgog1Lp3u0rVO-d.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif NP Hmong" + } + ] + }, + { + "name": "Noto Serif Oriya", + "fontFamily": "Noto Serif Oriya, serif", + "slug": "wp-font-lib-noto-serif-oriya", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxrc_Hy-v039MF1j.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxru_Hy-v039MF1j.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxoC-3y-v039MF1j.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Oriya" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriforiya/v4/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxo7-3y-v039MF1j.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Oriya" + } + ] + }, + { + "name": "Noto Serif SC", + "fontFamily": "Noto Serif SC, serif", + "slug": "wp-font-lib-noto-serif-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif SC" + } + ] + }, + { + "name": "Noto Serif Sinhala", + "fontFamily": "Noto Serif Sinhala, serif", + "slug": "wp-font-lib-noto-serif-sinhala", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxRlMsxaLRn3W-.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExR1MsxaLRn3W-.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pHvR1MsxaLRn3W-.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR1MsxaLRn3W-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGDR1MsxaLRn3W-.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFvQFMsxaLRn3W-.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFWQFMsxaLRn3W-.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExQFMsxaLRn3W-.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifsinhala/v26/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pEYQFMsxaLRn3W-.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Sinhala" + } + ] + }, + { + "name": "Noto Serif TC", + "fontFamily": "Noto Serif TC, serif", + "slug": "wp-font-lib-noto-serif-tc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif TC" + } + ] + }, + { + "name": "Noto Serif Tamil", + "fontFamily": "Noto Serif Tamil, serif", + "slug": "wp-font-lib-noto-serif-tamil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN6R8Pz3v8Etew.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNN-R8Pz3v8Etew.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecat6t-R8Pz3v8Etew.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-R8Pz3v8Etew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatht-R8Pz3v8Etew.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatatiR8Pz3v8Etew.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatU9iR8Pz3v8Etew.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNNiR8Pz3v8Etew.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatHdiR8Pz3v8Etew.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5svbzncQ9e3wx.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5s_bzncQ9e3wx.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJwns_bzncQ9e3wx.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5s_bzncQ9e3wx.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJxLs_bzncQ9e3wx.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyntPbzncQ9e3wx.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyetPbzncQ9e3wx.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5tPbzncQ9e3wx.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftamil/v28/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJzQtPbzncQ9e3wx.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Noto Serif Tamil" + } + ] + }, + { + "name": "Noto Serif Tangut", + "fontFamily": "Noto Serif Tangut, serif", + "slug": "wp-font-lib-noto-serif-tangut", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftangut/v16/xn76YGc72GKoTvER4Gn3b4m9Ern7Em41fcvN2KT4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tangut" + } + ] + }, + { + "name": "Noto Serif Telugu", + "fontFamily": "Noto Serif Telugu, serif", + "slug": "wp-font-lib-noto-serif-telugu", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TGwuY2fjgrZYA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTCwuY2fjgrZYA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DqzCwuY2fjgrZYA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCwuY2fjgrZYA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DxzCwuY2fjgrZYA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DKzewuY2fjgrZYA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DEjewuY2fjgrZYA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTewuY2fjgrZYA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftelugu/v25/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DXDewuY2fjgrZYA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Telugu" + } + ] + }, + { + "name": "Noto Serif Thai", + "fontFamily": "Noto Serif Thai, serif", + "slug": "wp-font-lib-noto-serif-thai", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiFuRRCmsdu0Qx.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiF-RRCmsdu0Qx.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0p8F-RRCmsdu0Qx.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF-RRCmsdu0Qx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oQF-RRCmsdu0Qx.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0r8EORRCmsdu0Qx.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0rFEORRCmsdu0Qx.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiEORRCmsdu0Qx.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qLEORRCmsdu0Qx.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Thai" + } + ] + }, + { + "name": "Noto Serif Tibetan", + "fontFamily": "Noto Serif Tibetan, serif", + "slug": "wp-font-lib-noto-serif-tibetan", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYdPS7rdSy_32c.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYcPS7rdSy_32c.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIugcPS7rdSy_32c.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcPS7rdSy_32c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIoQcPS7rdSy_32c.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmImgbPS7rdSy_32c.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIlEbPS7rdSy_32c.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYbPS7rdSy_32c.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftibetan/v22/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIh8bPS7rdSy_32c.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Noto Serif Tibetan" + } + ] + }, + { + "name": "Noto Serif Toto", + "fontFamily": "Noto Serif Toto, serif", + "slug": "wp-font-lib-noto-serif-toto", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCy3Il-aj55vdNug.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Toto" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCx_Il-aj55vdNug.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Toto" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC_PPl-aj55vdNug.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Toto" + }, + { + "src": "http://fonts.gstatic.com/s/notoseriftoto/v4/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC8rPl-aj55vdNug.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Toto" + } + ] + }, + { + "name": "Noto Serif Yezidi", + "fontFamily": "Noto Serif Yezidi, serif", + "slug": "wp-font-lib-noto-serif-yezidi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEkrlGJgmVCqg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Serif Yezidi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD6SEkrlGJgmVCqg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Serif Yezidi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDBSYkrlGJgmVCqg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Serif Yezidi" + }, + { + "src": "http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDPCYkrlGJgmVCqg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Serif Yezidi" + } + ] + }, + { + "name": "Noto Traditional Nushu", + "fontFamily": "Noto Traditional Nushu, sans-serif", + "slug": "wp-font-lib-noto-traditional-nushu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXvy1tnPa7QoqirI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Noto Traditional Nushu" + }, + { + "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXus1tnPa7QoqirI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Noto Traditional Nushu" + }, + { + "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXue1tnPa7QoqirI.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Noto Traditional Nushu" + }, + { + "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXty0dnPa7QoqirI.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Noto Traditional Nushu" + }, + { + "src": "http://fonts.gstatic.com/s/nototraditionalnushu/v17/SZcV3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67PUZX6ADm6oa8IXtL0dnPa7QoqirI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Noto Traditional Nushu" + } + ] + }, + { + "name": "Nova Cut", + "fontFamily": "Nova Cut, system-ui", + "slug": "wp-font-lib-nova-cut", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novacut/v24/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Cut" + } + ] + }, + { + "name": "Nova Flat", + "fontFamily": "Nova Flat, system-ui", + "slug": "wp-font-lib-nova-flat", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novaflat/v24/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Flat" + } + ] + }, + { + "name": "Nova Mono", + "fontFamily": "Nova Mono, monospace", + "slug": "wp-font-lib-nova-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novamono/v18/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Mono" + } + ] + }, + { + "name": "Nova Oval", + "fontFamily": "Nova Oval, system-ui", + "slug": "wp-font-lib-nova-oval", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novaoval/v24/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Oval" + } + ] + }, + { + "name": "Nova Round", + "fontFamily": "Nova Round, system-ui", + "slug": "wp-font-lib-nova-round", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novaround/v21/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Round" + } + ] + }, + { + "name": "Nova Script", + "fontFamily": "Nova Script, system-ui", + "slug": "wp-font-lib-nova-script", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novascript/v25/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Script" + } + ] + }, + { + "name": "Nova Slim", + "fontFamily": "Nova Slim, system-ui", + "slug": "wp-font-lib-nova-slim", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novaslim/v24/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Slim" + } + ] + }, + { + "name": "Nova Square", + "fontFamily": "Nova Square, system-ui", + "slug": "wp-font-lib-nova-square", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/novasquare/v20/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nova Square" + } + ] + }, + { + "name": "Numans", + "fontFamily": "Numans, sans-serif", + "slug": "wp-font-lib-numans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Numans" + } + ] + }, + { + "name": "Nunito", + "fontFamily": "Nunito, sans-serif", + "slug": "wp-font-lib-nunito", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshRTM9jo7eTWk.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhRTM9jo7eTWk.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM9jo7eTWk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTM9jo7eTWk.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM9jo7eTWk.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM9jo7eTWk.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTM9jo7eTWk.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTM9jo7eTWk.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXA3iqzbXWnoeg.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83A3iqzbXWnoeg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3iqzbXWnoeg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNin3A3iqzbXWnoeg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3c3iqzbXWnoeg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSnc3iqzbXWnoeg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXc3iqzbXWnoeg.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Nunito" + }, + { + "src": "http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3iqzbXWnoeg.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Nunito" + } + ] + }, + { + "name": "Nunito Sans", + "fontFamily": "Nunito Sans, sans-serif", + "slug": "wp-font-lib-nunito-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVilntF8kA_Ykqw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GiClntF8kA_Ykqw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilntF8kA_Ykqw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G5ClntF8kA_Ykqw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GCC5ntF8kA_Ykqw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GMS5ntF8kA_Ykqw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVi5ntF8kA_Ykqw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4Gfy5ntF8kA_Ykqw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP91UgIfM0qxVd.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmrR91UgIfM0qxVd.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmqP91UgIfM0qxVd.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmq991UgIfM0qxVd.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpR8FUgIfM0qxVd.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmpo8FUgIfM0qxVd.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmoP8FUgIfM0qxVd.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + }, + { + "src": "http://fonts.gstatic.com/s/nunitosans/v15/pe1kMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwXeVy3GboJ0kTHmom8FUgIfM0qxVd.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Nunito Sans" + } + ] + }, + { + "name": "Nuosu SIL", + "fontFamily": "Nuosu SIL, serif", + "slug": "wp-font-lib-nuosu-sil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/nuosusil/v6/8vIK7wM3wmRn_kc4uAjeFGxbO_zo-w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Nuosu SIL" + } + ] + }, + { + "name": "Odibee Sans", + "fontFamily": "Odibee Sans, system-ui", + "slug": "wp-font-lib-odibee-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/odibeesans/v14/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Odibee Sans" + } + ] + }, + { + "name": "Odor Mean Chey", + "fontFamily": "Odor Mean Chey, serif", + "slug": "wp-font-lib-odor-mean-chey", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/odormeanchey/v27/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Odor Mean Chey" + } + ] + }, + { + "name": "Offside", + "fontFamily": "Offside, system-ui", + "slug": "wp-font-lib-offside", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/offside/v22/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Offside" + } + ] + }, + { + "name": "Oi", + "fontFamily": "Oi, system-ui", + "slug": "wp-font-lib-oi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oi/v16/w8gXH2EuRqtaut6yjBOG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oi" + } + ] + }, + { + "name": "Old Standard TT", + "fontFamily": "Old Standard TT, serif", + "slug": "wp-font-lib-old-standard-tt", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Old Standard TT" + }, + { + "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Old Standard TT" + }, + { + "src": "http://fonts.gstatic.com/s/oldstandardtt/v18/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Old Standard TT" + } + ] + }, + { + "name": "Oldenburg", + "fontFamily": "Oldenburg, system-ui", + "slug": "wp-font-lib-oldenburg", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oldenburg/v20/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oldenburg" + } + ] + }, + { + "name": "Ole", + "fontFamily": "Ole, cursive", + "slug": "wp-font-lib-ole", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rd89fw69qJ_ew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ole" + } + ] + }, + { + "name": "Oleo Script", + "fontFamily": "Oleo Script, system-ui", + "slug": "wp-font-lib-oleo-script", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oleo Script" + }, + { + "src": "http://fonts.gstatic.com/s/oleoscript/v14/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oleo Script" + } + ] + }, + { + "name": "Oleo Script Swash Caps", + "fontFamily": "Oleo Script Swash Caps, system-ui", + "slug": "wp-font-lib-oleo-script-swash-caps", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oleo Script Swash Caps" + }, + { + "src": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oleo Script Swash Caps" + } + ] + }, + { + "name": "Oooh Baby", + "fontFamily": "Oooh Baby, cursive", + "slug": "wp-font-lib-oooh-baby", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ooohbaby/v4/2sDcZGJWgJTT2Jf76xQDb2-4C7wFZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oooh Baby" + } + ] + }, + { + "name": "Open Sans", + "fontFamily": "Open Sans, sans-serif", + "slug": "wp-font-lib-open-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4nY1M2xLER.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4nY1M2xLER.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4nY1M2xLER.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4nY1M2xLER.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4nY1M2xLER.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4nY1M2xLER.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVcUwaERZjA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVcUwaERZjA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVcUwaERZjA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVcUwaERZjA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVcUwaERZjA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Open Sans" + }, + { + "src": "http://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVcUwaERZjA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Open Sans" + } + ] + }, + { + "name": "Oranienbaum", + "fontFamily": "Oranienbaum, serif", + "slug": "wp-font-lib-oranienbaum", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oranienbaum" + } + ] + }, + { + "name": "Orbitron", + "fontFamily": "Orbitron, sans-serif", + "slug": "wp-font-lib-orbitron", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xpmIyXjU1pg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxpmIyXjU1pg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_CmxpmIyXjU1pg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxpmIyXjU1pg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Orbitron" + }, + { + "src": "http://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxpmIyXjU1pg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Orbitron" + } + ] + }, + { + "name": "Oregano", + "fontFamily": "Oregano, system-ui", + "slug": "wp-font-lib-oregano", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oregano/v13/If2IXTPxciS3H4S2kZffPznO3yM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oregano" + }, + { + "src": "http://fonts.gstatic.com/s/oregano/v13/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Oregano" + } + ] + }, + { + "name": "Orelega One", + "fontFamily": "Orelega One, system-ui", + "slug": "wp-font-lib-orelega-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/orelegaone/v10/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Orelega One" + } + ] + }, + { + "name": "Orienta", + "fontFamily": "Orienta, sans-serif", + "slug": "wp-font-lib-orienta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/orienta/v15/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Orienta" + } + ] + }, + { + "name": "Original Surfer", + "fontFamily": "Original Surfer, system-ui", + "slug": "wp-font-lib-original-surfer", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/originalsurfer/v18/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Original Surfer" + } + ] + }, + { + "name": "Oswald", + "fontFamily": "Oswald, sans-serif", + "slug": "wp-font-lib-oswald", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Oswald" + }, + { + "src": "http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oswald" + } + ] + }, + { + "name": "Outfit", + "fontFamily": "Outfit, sans-serif", + "slug": "wp-font-lib-outfit", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4G-EiAou6Y.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bC1C4G-EiAou6Y.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4G-EiAou6Y.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4G-EiAou6Y.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4G-EiAou6Y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bCyC4G-EiAou6Y.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Outfit" + }, + { + "src": "http://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4G-EiAou6Y.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Outfit" + } + ] + }, + { + "name": "Over the Rainbow", + "fontFamily": "Over the Rainbow, cursive", + "slug": "wp-font-lib-over-the-rainbow", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overtherainbow/v16/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Over the Rainbow" + } + ] + }, + { + "name": "Overlock", + "fontFamily": "Overlock, system-ui", + "slug": "wp-font-lib-overlock", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Overlock" + }, + { + "src": "http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Overlock" + } + ] + }, + { + "name": "Overlock SC", + "fontFamily": "Overlock SC, system-ui", + "slug": "wp-font-lib-overlock-sc", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overlocksc/v21/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Overlock SC" + } + ] + }, + { + "name": "Overpass", + "fontFamily": "Overpass, sans-serif", + "slug": "wp-font-lib-overpass", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PLrOZCLtce-og.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPPrOZCLtce-og.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrOZCLtce-og.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrOZCLtce-og.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6zvPrOZCLtce-og.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6IvTrOZCLtce-og.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6G_TrOZCLtce-og.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPTrOZCLtce-og.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6VfTrOZCLtce-og.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADe5qPl8Kuosgz.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDepqPl8Kuosgz.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqPl8Kuosgz.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqPl8Kuosgz.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLAxepqPl8Kuosgz.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDdfZqPl8Kuosgz.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDkfZqPl8Kuosgz.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDfZqPl8Kuosgz.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Overpass" + }, + { + "src": "http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCqfZqPl8Kuosgz.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Overpass" + } + ] + }, + { + "name": "Overpass Mono", + "fontFamily": "Overpass Mono, monospace", + "slug": "wp-font-lib-overpass-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EWKokzzXur-SmIr.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + }, + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUokzzXur-SmIr.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + }, + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXmokzzXur-SmIr.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + }, + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUKpUzzXur-SmIr.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + }, + { + "src": "http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUzpUzzXur-SmIr.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Overpass Mono" + } + ] + }, + { + "name": "Ovo", + "fontFamily": "Ovo, serif", + "slug": "wp-font-lib-ovo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ovo/v17/yYLl0h7Wyfzjy4Q5_3WVxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ovo" + } + ] + }, + { + "name": "Oxanium", + "fontFamily": "Oxanium, system-ui", + "slug": "wp-font-lib-oxanium", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JfniMBXQ7d67x.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G80XfniMBXQ7d67x.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfniMBXQ7d67x.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G817fniMBXQ7d67x.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82XeXiMBXQ7d67x.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82ueXiMBXQ7d67x.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oxanium" + }, + { + "src": "http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JeXiMBXQ7d67x.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Oxanium" + } + ] + }, + { + "name": "Oxygen", + "fontFamily": "Oxygen, sans-serif", + "slug": "wp-font-lib-oxygen", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Oxygen" + }, + { + "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oxygen" + }, + { + "src": "http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Oxygen" + } + ] + }, + { + "name": "Oxygen Mono", + "fontFamily": "Oxygen Mono, monospace", + "slug": "wp-font-lib-oxygen-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/oxygenmono/v14/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Oxygen Mono" + } + ] + }, + { + "name": "PT Mono", + "fontFamily": "PT Mono, monospace", + "slug": "wp-font-lib-pt-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Mono" + } + ] + }, + { + "name": "PT Sans", + "fontFamily": "PT Sans, sans-serif", + "slug": "wp-font-lib-pt-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79P0WOxOGMMDQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ptsans/v17/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "PT Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "PT Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ptsans/v17/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "PT Sans" + } + ] + }, + { + "name": "PT Sans Caption", + "fontFamily": "PT Sans Caption, sans-serif", + "slug": "wp-font-lib-pt-sans-caption", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Sans Caption" + }, + { + "src": "http://fonts.gstatic.com/s/ptsanscaption/v19/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "PT Sans Caption" + } + ] + }, + { + "name": "PT Sans Narrow", + "fontFamily": "PT Sans Narrow, sans-serif", + "slug": "wp-font-lib-pt-sans-narrow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Sans Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/ptsansnarrow/v18/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "PT Sans Narrow" + } + ] + }, + { + "name": "PT Serif", + "fontFamily": "PT Serif, serif", + "slug": "wp-font-lib-pt-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "PT Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "PT Serif" + }, + { + "src": "http://fonts.gstatic.com/s/ptserif/v18/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "PT Serif" + } + ] + }, + { + "name": "PT Serif Caption", + "fontFamily": "PT Serif Caption, serif", + "slug": "wp-font-lib-pt-serif-caption", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "PT Serif Caption" + }, + { + "src": "http://fonts.gstatic.com/s/ptserifcaption/v17/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "PT Serif Caption" + } + ] + }, + { + "name": "Pacifico", + "fontFamily": "Pacifico, cursive", + "slug": "wp-font-lib-pacifico", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pacifico" + } + ] + }, + { + "name": "Padauk", + "fontFamily": "Padauk, sans-serif", + "slug": "wp-font-lib-padauk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/padauk/v16/RrQRboJg-id7OnbBa0_g3LlYbg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Padauk" + }, + { + "src": "http://fonts.gstatic.com/s/padauk/v16/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Padauk" + } + ] + }, + { + "name": "Padyakke Expanded One", + "fontFamily": "Padyakke Expanded One, system-ui", + "slug": "wp-font-lib-padyakke-expanded-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/padyakkeexpandedone/v2/K2FvfY9El_tbR0JfHb6WWvrBaU6XAUvC4IAYOKRkpDjeoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Padyakke Expanded One" + } + ] + }, + { + "name": "Palanquin", + "fontFamily": "Palanquin, sans-serif", + "slug": "wp-font-lib-palanquin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Palanquin" + }, + { + "src": "http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Palanquin" + } + ] + }, + { + "name": "Palanquin Dark", + "fontFamily": "Palanquin Dark, sans-serif", + "slug": "wp-font-lib-palanquin-dark", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Palanquin Dark" + }, + { + "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Palanquin Dark" + }, + { + "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Palanquin Dark" + }, + { + "src": "http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Palanquin Dark" + } + ] + }, + { + "name": "Palette Mosaic", + "fontFamily": "Palette Mosaic, system-ui", + "slug": "wp-font-lib-palette-mosaic", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/palettemosaic/v10/AMOIz4aBvWuBFe3TohdW6YZ9MFiy4dxL4jSr.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Palette Mosaic" + } + ] + }, + { + "name": "Pangolin", + "fontFamily": "Pangolin, cursive", + "slug": "wp-font-lib-pangolin", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pangolin/v11/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pangolin" + } + ] + }, + { + "name": "Paprika", + "fontFamily": "Paprika, system-ui", + "slug": "wp-font-lib-paprika", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/paprika/v21/8QIJdijZitv49rDfuIgOq7jkAOw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Paprika" + } + ] + }, + { + "name": "Parisienne", + "fontFamily": "Parisienne, cursive", + "slug": "wp-font-lib-parisienne", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Parisienne" + } + ] + }, + { + "name": "Passero One", + "fontFamily": "Passero One, system-ui", + "slug": "wp-font-lib-passero-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/passeroone/v24/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Passero One" + } + ] + }, + { + "name": "Passion One", + "fontFamily": "Passion One, system-ui", + "slug": "wp-font-lib-passion-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/passionone/v16/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Passion One" + }, + { + "src": "http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Passion One" + }, + { + "src": "http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Passion One" + } + ] + }, + { + "name": "Passions Conflict", + "fontFamily": "Passions Conflict, cursive", + "slug": "wp-font-lib-passions-conflict", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/passionsconflict/v5/kmKnZrcrFhfafnWX9x0GuEC-zowow5NeYRI4CN2V.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Passions Conflict" + } + ] + }, + { + "name": "Pathway Extreme", + "fontFamily": "Pathway Extreme, sans-serif", + "slug": "wp-font-lib-pathway-extreme", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2Nx1Kyw3igP5eg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWN11Kyw3igP5eg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakht11Kyw3igP5eg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2N11Kyw3igP5eg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak6t11Kyw3igP5eg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakBtp1Kyw3igP5eg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakP9p1Kyw3igP5eg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakWNp1Kyw3igP5eg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakcdp1Kyw3igP5eg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daSYzqAbpepnF.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4daCYzqAbpepnF.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ7DaCYzqAbpepnF.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6daCYzqAbpepnF.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ6vaCYzqAbpepnF.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ5DbyYzqAbpepnF.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ56byYzqAbpepnF.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ4dbyYzqAbpepnF.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + }, + { + "src": "http://fonts.gstatic.com/s/pathwayextreme/v3/neI4zCC3pJ0rsaH2_sD-QttXPfDlq0kVrdFsAHYoa7O3LCjRa7zISmmvKDxFz3m_CdF3-dIqTRGxEJ40byYzqAbpepnF.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Pathway Extreme" + } + ] + }, + { + "name": "Pathway Gothic One", + "fontFamily": "Pathway Gothic One, sans-serif", + "slug": "wp-font-lib-pathway-gothic-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pathwaygothicone/v15/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pathway Gothic One" + } + ] + }, + { + "name": "Patrick Hand", + "fontFamily": "Patrick Hand, cursive", + "slug": "wp-font-lib-patrick-hand", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/patrickhand/v20/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Patrick Hand" + } + ] + }, + { + "name": "Patrick Hand SC", + "fontFamily": "Patrick Hand SC, cursive", + "slug": "wp-font-lib-patrick-hand-sc", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/patrickhandsc/v13/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Patrick Hand SC" + } + ] + }, + { + "name": "Pattaya", + "fontFamily": "Pattaya, sans-serif", + "slug": "wp-font-lib-pattaya", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pattaya/v13/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pattaya" + } + ] + }, + { + "name": "Patua One", + "fontFamily": "Patua One, system-ui", + "slug": "wp-font-lib-patua-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/patuaone/v16/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Patua One" + } + ] + }, + { + "name": "Pavanam", + "fontFamily": "Pavanam, sans-serif", + "slug": "wp-font-lib-pavanam", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pavanam/v11/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pavanam" + } + ] + }, + { + "name": "Paytone One", + "fontFamily": "Paytone One, sans-serif", + "slug": "wp-font-lib-paytone-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/paytoneone/v21/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Paytone One" + } + ] + }, + { + "name": "Peddana", + "fontFamily": "Peddana, serif", + "slug": "wp-font-lib-peddana", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/peddana/v20/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Peddana" + } + ] + }, + { + "name": "Peralta", + "fontFamily": "Peralta, system-ui", + "slug": "wp-font-lib-peralta", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/peralta/v17/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Peralta" + } + ] + }, + { + "name": "Permanent Marker", + "fontFamily": "Permanent Marker, cursive", + "slug": "wp-font-lib-permanent-marker", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Permanent Marker" + } + ] + }, + { + "name": "Petemoss", + "fontFamily": "Petemoss, cursive", + "slug": "wp-font-lib-petemoss", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/petemoss/v5/A2BZn5tA2xgtGWHZgxkesKb9UouQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Petemoss" + } + ] + }, + { + "name": "Petit Formal Script", + "fontFamily": "Petit Formal Script, cursive", + "slug": "wp-font-lib-petit-formal-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/petitformalscript/v14/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Petit Formal Script" + } + ] + }, + { + "name": "Petrona", + "fontFamily": "Petrona, serif", + "slug": "wp-font-lib-petrona", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsARBH452Mvds.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NsQRBH452Mvds.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk7TsQRBH452Mvds.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsQRBH452Mvds.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6_sQRBH452Mvds.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5TtgRBH452Mvds.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5qtgRBH452Mvds.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NtgRBH452Mvds.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4ktgRBH452Mvds.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwDFYpUN-dsIWs.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwCFYpUN-dsIWs.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8rICFYpUN-dsIWs.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwCFYpUN-dsIWs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8t4CFYpUN-dsIWs.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8jIFFYpUN-dsIWs.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8gsFFYpUN-dsIWs.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwFFYpUN-dsIWs.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Petrona" + }, + { + "src": "http://fonts.gstatic.com/s/petrona/v32/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8kUFFYpUN-dsIWs.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Petrona" + } + ] + }, + { + "name": "Philosopher", + "fontFamily": "Philosopher, sans-serif", + "slug": "wp-font-lib-philosopher", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Philosopher" + }, + { + "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Philosopher" + }, + { + "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Philosopher" + }, + { + "src": "http://fonts.gstatic.com/s/philosopher/v19/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Philosopher" + } + ] + }, + { + "name": "Phudu", + "fontFamily": "Phudu, system-ui", + "slug": "wp-font-lib-phudu", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkK62zUSwWuz38Tgg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKtWzUSwWuz38Tgg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKh2zUSwWuz38Tgg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKa2vUSwWuz38Tgg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKUmvUSwWuz38Tgg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKNWvUSwWuz38Tgg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Phudu" + }, + { + "src": "http://fonts.gstatic.com/s/phudu/v1/0FlJVPSHk0ya-7OUeO_U-Lwm7PkKHGvUSwWuz38Tgg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Phudu" + } + ] + }, + { + "name": "Piazzolla", + "fontFamily": "Piazzolla, serif", + "slug": "wp-font-lib-piazzolla", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYx3Ly1AHfAAy5.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYxnLy1AHfAAy5.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7KGxnLy1AHfAAy5.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxnLy1AHfAAy5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LqxnLy1AHfAAy5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7IGwXLy1AHfAAy5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7I_wXLy1AHfAAy5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYwXLy1AHfAAy5.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JxwXLy1AHfAAy5.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqw3gX9BRy5m5M.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRqx3gX9BRy5m5M.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhcSx3gX9BRy5m5M.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhaix3gX9BRy5m5M.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhUS23gX9BRy5m5M.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhX223gX9BRy5m5M.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRq23gX9BRy5m5M.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + }, + { + "src": "http://fonts.gstatic.com/s/piazzolla/v33/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhTO23gX9BRy5m5M.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Piazzolla" + } + ] + }, + { + "name": "Piedra", + "fontFamily": "Piedra, system-ui", + "slug": "wp-font-lib-piedra", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/piedra/v22/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Piedra" + } + ] + }, + { + "name": "Pinyon Script", + "fontFamily": "Pinyon Script, cursive", + "slug": "wp-font-lib-pinyon-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pinyonscript/v18/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pinyon Script" + } + ] + }, + { + "name": "Pirata One", + "fontFamily": "Pirata One, system-ui", + "slug": "wp-font-lib-pirata-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pirata One" + } + ] + }, + { + "name": "Plaster", + "fontFamily": "Plaster, system-ui", + "slug": "wp-font-lib-plaster", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Plaster" + } + ] + }, + { + "name": "Play", + "fontFamily": "Play, sans-serif", + "slug": "wp-font-lib-play", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/play/v17/6aez4K2oVqwIjtI8Hp8Tx3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Play" + }, + { + "src": "http://fonts.gstatic.com/s/play/v17/6ae84K2oVqwItm4TOpc423nTJTM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Play" + } + ] + }, + { + "name": "Playball", + "fontFamily": "Playball, system-ui", + "slug": "wp-font-lib-playball", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/playball/v17/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Playball" + } + ] + }, + { + "name": "Playfair", + "fontFamily": "Playfair, serif", + "slug": "wp-font-lib-playfair", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPlKetgdoSMw5ifm.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPkUetgdoSMw5ifm.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPkmetgdoSMw5ifm.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPnKfdgdoSMw5ifm.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPnzfdgdoSMw5ifm.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPmUfdgdoSMw5ifm.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkQC9D7PO4KhmUJ5_zTZ_4MYQXznAK-bUcZXKO3UMnW6VNpe4-SiiZ4b8h5G3GutPm9fdgdoSMw5ifm.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOW5eqycS4zfmNrE.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOTBeqycS4zfmNrE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOQJeqycS4zfmNrE.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOe5ZqycS4zfmNrE.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOddZqycS4zfmNrE.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcObBZqycS4zfmNrE.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Playfair" + }, + { + "src": "http://fonts.gstatic.com/s/playfair/v1/0nkSC9D7PO4KhmUJ59baVQ_iWhg0cgSrLQZjFpFUsLCFf_1ubkfQeG9KkBAQcOsAs-zcOZlZqycS4zfmNrE.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Playfair" + } + ] + }, + { + "name": "Playfair Display", + "fontFamily": "Playfair Display, serif", + "slug": "wp-font-lib-playfair-display", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQZNLo_U2r.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQZNLo_U2r.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQZNLo_U2r.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQZNLo_U2r.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQZNLo_U2r.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtbK-F2rA0s.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtbK-F2rA0s.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtbK-F2rA0s.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtbK-F2rA0s.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtbK-F2rA0s.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtbK-F2rA0s.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Playfair Display" + } + ] + }, + { + "name": "Playfair Display SC", + "fontFamily": "Playfair Display SC, serif", + "slug": "wp-font-lib-playfair-display-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Playfair Display SC" + }, + { + "src": "http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Playfair Display SC" + } + ] + }, + { + "name": "Plus Jakarta Sans", + "fontFamily": "Plus Jakarta Sans, sans-serif", + "slug": "wp-font-lib-plus-jakarta-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NShXUEKi4Rw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_907NShXUEKi4Rw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NShXUEKi4Rw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NShXUEKi4Rw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNShXUEKi4Rw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNShXUEKi4Rw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lCR_QMq2oR82k.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ17CR_QMq2oR82k.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_QMq2oR82k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_QMq2oR82k.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ37Dh_QMq2oR82k.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_QMq2oR82k.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + }, + { + "src": "http://fonts.gstatic.com/s/plusjakartasans/v7/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_QMq2oR82k.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Plus Jakarta Sans" + } + ] + }, + { + "name": "Podkova", + "fontFamily": "Podkova, serif", + "slug": "wp-font-lib-podkova", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Podkova" + }, + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Podkova" + }, + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Podkova" + }, + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Podkova" + }, + { + "src": "http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Podkova" + } + ] + }, + { + "name": "Poiret One", + "fontFamily": "Poiret One, system-ui", + "slug": "wp-font-lib-poiret-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poiretone/v14/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poiret One" + } + ] + }, + { + "name": "Poller One", + "fontFamily": "Poller One, system-ui", + "slug": "wp-font-lib-poller-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pollerone/v19/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poller One" + } + ] + }, + { + "name": "Poltawski Nowy", + "fontFamily": "Poltawski Nowy, serif", + "slug": "wp-font-lib-poltawski-nowy", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KqCWnDS6V5CzCoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KmiWnDS6V5CzCoQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KdiKnDS6V5CzCoQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUsRq6ww480U1xsUpFXD-iDBNlSAOLkKCLnWq8KTyKnDS6V5CzCoQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZPTiSRxinSoROp.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGZ9TiSRxinSoROp.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaRSSSRxinSoROp.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Poltawski Nowy" + }, + { + "src": "http://fonts.gstatic.com/s/poltawskinowy/v2/flUuRq6ww480U1xsUpFXD-iDBPNbMh08QUl99KgfYGaoSSSRxinSoROp.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Poltawski Nowy" + } + ] + }, + { + "name": "Poly", + "fontFamily": "Poly, serif", + "slug": "wp-font-lib-poly", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poly/v16/MQpb-W6wKNitRLCAq2Lpris.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poly" + }, + { + "src": "http://fonts.gstatic.com/s/poly/v16/MQpV-W6wKNitdLKKr0DsviuGWA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Poly" + } + ] + }, + { + "name": "Pompiere", + "fontFamily": "Pompiere, system-ui", + "slug": "wp-font-lib-pompiere", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pompiere/v15/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pompiere" + } + ] + }, + { + "name": "Pontano Sans", + "fontFamily": "Pontano Sans, sans-serif", + "slug": "wp-font-lib-pontano-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOSzMncaMp9gzWsE.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + }, + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOXLMncaMp9gzWsE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + }, + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOUDMncaMp9gzWsE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + }, + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOazLncaMp9gzWsE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + }, + { + "src": "http://fonts.gstatic.com/s/pontanosans/v16/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOZXLncaMp9gzWsE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Pontano Sans" + } + ] + }, + { + "name": "Poor Story", + "fontFamily": "Poor Story, system-ui", + "slug": "wp-font-lib-poor-story", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poorstory/v20/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poor Story" + } + ] + }, + { + "name": "Poppins", + "fontFamily": "Poppins, sans-serif", + "slug": "wp-font-lib-poppins", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Poppins" + }, + { + "src": "http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Poppins" + } + ] + }, + { + "name": "Port Lligat Sans", + "fontFamily": "Port Lligat Sans, sans-serif", + "slug": "wp-font-lib-port-lligat-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/portlligatsans/v18/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Port Lligat Sans" + } + ] + }, + { + "name": "Port Lligat Slab", + "fontFamily": "Port Lligat Slab, serif", + "slug": "wp-font-lib-port-lligat-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/portlligatslab/v21/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Port Lligat Slab" + } + ] + }, + { + "name": "Potta One", + "fontFamily": "Potta One, system-ui", + "slug": "wp-font-lib-potta-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pottaone/v16/FeVSS05Bp6cy7xI-YfxQ3Z5nm29Gww.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Potta One" + } + ] + }, + { + "name": "Pragati Narrow", + "fontFamily": "Pragati Narrow, sans-serif", + "slug": "wp-font-lib-pragati-narrow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pragati Narrow" + }, + { + "src": "http://fonts.gstatic.com/s/pragatinarrow/v13/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Pragati Narrow" + } + ] + }, + { + "name": "Praise", + "fontFamily": "Praise, cursive", + "slug": "wp-font-lib-praise", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/praise/v5/qkBUXvUZ-cnFXcFyDvO67L9XmQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Praise" + } + ] + }, + { + "name": "Prata", + "fontFamily": "Prata, serif", + "slug": "wp-font-lib-prata", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prata/v18/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Prata" + } + ] + }, + { + "name": "Preahvihear", + "fontFamily": "Preahvihear, sans-serif", + "slug": "wp-font-lib-preahvihear", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/preahvihear/v27/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Preahvihear" + } + ] + }, + { + "name": "Press Start 2P", + "fontFamily": "Press Start 2P, system-ui", + "slug": "wp-font-lib-press-start-2p", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pressstart2p/v15/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Press Start 2P" + } + ] + }, + { + "name": "Pridi", + "fontFamily": "Pridi, serif", + "slug": "wp-font-lib-pridi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDQZG5JnZLfkfWao2krbl29.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Pridi" + }, + { + "src": "http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Pridi" + } + ] + }, + { + "name": "Princess Sofia", + "fontFamily": "Princess Sofia, cursive", + "slug": "wp-font-lib-princess-sofia", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/princesssofia/v22/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Princess Sofia" + } + ] + }, + { + "name": "Prociono", + "fontFamily": "Prociono, serif", + "slug": "wp-font-lib-prociono", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prociono/v22/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Prociono" + } + ] + }, + { + "name": "Prompt", + "fontFamily": "Prompt, sans-serif", + "slug": "wp-font-lib-prompt", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Prompt" + }, + { + "src": "http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Prompt" + } + ] + }, + { + "name": "Prosto One", + "fontFamily": "Prosto One, system-ui", + "slug": "wp-font-lib-prosto-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prostoone/v17/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Prosto One" + } + ] + }, + { + "name": "Proza Libre", + "fontFamily": "Proza Libre, sans-serif", + "slug": "wp-font-lib-proza-libre", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Proza Libre" + }, + { + "src": "http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Proza Libre" + } + ] + }, + { + "name": "Public Sans", + "fontFamily": "Public Sans, sans-serif", + "slug": "wp-font-lib-public-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5ww0pX189fg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww0pX189fg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww0pX189fg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww0pX189fg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww0pX189fg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww0pX189fg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww0pX189fg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww0pX189fg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQctfVotfj7j.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgActfVotfj7j.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgActfVotfj7j.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgActfVotfj7j.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgActfVotfj7j.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwctfVotfj7j.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwctfVotfj7j.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwctfVotfj7j.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Public Sans" + }, + { + "src": "http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwctfVotfj7j.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Public Sans" + } + ] + }, + { + "name": "Puppies Play", + "fontFamily": "Puppies Play, cursive", + "slug": "wp-font-lib-puppies-play", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/puppiesplay/v6/wlp2gwHZEV99rG6M3NR9uB9vaAJSA_JN3Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Puppies Play" + } + ] + }, + { + "name": "Puritan", + "fontFamily": "Puritan, sans-serif", + "slug": "wp-font-lib-puritan", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Puritan" + }, + { + "src": "http://fonts.gstatic.com/s/puritan/v24/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Puritan" + }, + { + "src": "http://fonts.gstatic.com/s/puritan/v24/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Puritan" + }, + { + "src": "http://fonts.gstatic.com/s/puritan/v24/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Puritan" + } + ] + }, + { + "name": "Purple Purse", + "fontFamily": "Purple Purse, system-ui", + "slug": "wp-font-lib-purple-purse", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/purplepurse/v21/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Purple Purse" + } + ] + }, + { + "name": "Qahiri", + "fontFamily": "Qahiri, sans-serif", + "slug": "wp-font-lib-qahiri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/qahiri/v9/tsssAp1RZy0C_hGuU3Chrnmupw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Qahiri" + } + ] + }, + { + "name": "Quando", + "fontFamily": "Quando, serif", + "slug": "wp-font-lib-quando", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quando/v14/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quando" + } + ] + }, + { + "name": "Quantico", + "fontFamily": "Quantico, sans-serif", + "slug": "wp-font-lib-quantico", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quantico/v15/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quantico" + }, + { + "src": "http://fonts.gstatic.com/s/quantico/v15/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Quantico" + }, + { + "src": "http://fonts.gstatic.com/s/quantico/v15/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Quantico" + }, + { + "src": "http://fonts.gstatic.com/s/quantico/v15/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Quantico" + } + ] + }, + { + "name": "Quattrocento", + "fontFamily": "Quattrocento, serif", + "slug": "wp-font-lib-quattrocento", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quattrocento/v18/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quattrocento" + }, + { + "src": "http://fonts.gstatic.com/s/quattrocento/v18/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Quattrocento" + } + ] + }, + { + "name": "Quattrocento Sans", + "fontFamily": "Quattrocento Sans, sans-serif", + "slug": "wp-font-lib-quattrocento-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quattrocento Sans" + }, + { + "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Quattrocento Sans" + }, + { + "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Quattrocento Sans" + }, + { + "src": "http://fonts.gstatic.com/s/quattrocentosans/v18/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Quattrocento Sans" + } + ] + }, + { + "name": "Questrial", + "fontFamily": "Questrial, sans-serif", + "slug": "wp-font-lib-questrial", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Questrial" + } + ] + }, + { + "name": "Quicksand", + "fontFamily": "Quicksand, sans-serif", + "slug": "wp-font-lib-quicksand", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Quicksand" + }, + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quicksand" + }, + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Quicksand" + }, + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Quicksand" + }, + { + "src": "http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Quicksand" + } + ] + }, + { + "name": "Quintessential", + "fontFamily": "Quintessential, cursive", + "slug": "wp-font-lib-quintessential", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/quintessential/v20/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Quintessential" + } + ] + }, + { + "name": "Qwigley", + "fontFamily": "Qwigley, cursive", + "slug": "wp-font-lib-qwigley", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/qwigley/v16/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Qwigley" + } + ] + }, + { + "name": "Qwitcher Grypen", + "fontFamily": "Qwitcher Grypen, cursive", + "slug": "wp-font-lib-qwitcher-grypen", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxicypclp9tDilN9RrC5BSI1dZmrSGNAom-wpw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Qwitcher Grypen" + }, + { + "src": "http://fonts.gstatic.com/s/qwitchergrypen/v3/pxiZypclp9tDilN9RrC5BSI1dZmT9ExkqkSsrvNXiA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Qwitcher Grypen" + } + ] + }, + { + "name": "Racing Sans One", + "fontFamily": "Racing Sans One, system-ui", + "slug": "wp-font-lib-racing-sans-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/racingsansone/v13/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Racing Sans One" + } + ] + }, + { + "name": "Radio Canada", + "fontFamily": "Radio Canada, sans-serif", + "slug": "wp-font-lib-radio-canada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nESkQPIJOdSSfOT.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nFMkQPIJOdSSfOT.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nF-kQPIJOdSSfOT.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGSlgPIJOdSSfOT.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGrlgPIJOdSSfOT.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0rWLLuNwTOOTa9k.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0uuLLuNwTOOTa9k.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0tmLLuNwTOOTa9k.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0jWMLuNwTOOTa9k.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + }, + { + "src": "http://fonts.gstatic.com/s/radiocanada/v21/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0gyMLuNwTOOTa9k.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Radio Canada" + } + ] + }, + { + "name": "Radley", + "fontFamily": "Radley, serif", + "slug": "wp-font-lib-radley", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/radley/v20/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Radley" + }, + { + "src": "http://fonts.gstatic.com/s/radley/v20/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Radley" + } + ] + }, + { + "name": "Rajdhani", + "fontFamily": "Rajdhani, sans-serif", + "slug": "wp-font-lib-rajdhani", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + }, + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + }, + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + }, + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + }, + { + "src": "http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rajdhani" + } + ] + }, + { + "name": "Rakkas", + "fontFamily": "Rakkas, system-ui", + "slug": "wp-font-lib-rakkas", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rakkas/v17/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rakkas" + } + ] + }, + { + "name": "Raleway", + "fontFamily": "Raleway, sans-serif", + "slug": "wp-font-lib-raleway", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CPNLA3JC9c.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCPNLA3JC9c.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCPNLA3JC9c.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCPNLA3JC9c.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCPNLA3JC9c.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCPNLA3JC9c.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCPNLA3JC9c.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQVIT9c2c8.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQVIT9c2c8.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQVIT9c2c8.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Raleway" + }, + { + "src": "http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQVIT9c2c8.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Raleway" + } + ] + }, + { + "name": "Raleway Dots", + "fontFamily": "Raleway Dots, system-ui", + "slug": "wp-font-lib-raleway-dots", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ralewaydots/v14/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Raleway Dots" + } + ] + }, + { + "name": "Ramabhadra", + "fontFamily": "Ramabhadra, sans-serif", + "slug": "wp-font-lib-ramabhadra", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ramabhadra/v15/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ramabhadra" + } + ] + }, + { + "name": "Ramaraja", + "fontFamily": "Ramaraja, serif", + "slug": "wp-font-lib-ramaraja", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ramaraja/v15/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ramaraja" + } + ] + }, + { + "name": "Rambla", + "fontFamily": "Rambla, sans-serif", + "slug": "wp-font-lib-rambla", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mr0I7IONthkwQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rambla" + }, + { + "src": "http://fonts.gstatic.com/s/rambla/v13/snfps0ip98hx6mrEIbgKFN10wYKa.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rambla" + }, + { + "src": "http://fonts.gstatic.com/s/rambla/v13/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rambla" + }, + { + "src": "http://fonts.gstatic.com/s/rambla/v13/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rambla" + } + ] + }, + { + "name": "Rammetto One", + "fontFamily": "Rammetto One, system-ui", + "slug": "wp-font-lib-rammetto-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rammettoone/v15/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rammetto One" + } + ] + }, + { + "name": "Rampart One", + "fontFamily": "Rampart One, system-ui", + "slug": "wp-font-lib-rampart-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rampartone/v7/K2F1fZFGl_JSR1tAWNG9R6qgLS76ZHOM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rampart One" + } + ] + }, + { + "name": "Ranchers", + "fontFamily": "Ranchers, system-ui", + "slug": "wp-font-lib-ranchers", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ranchers/v14/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ranchers" + } + ] + }, + { + "name": "Rancho", + "fontFamily": "Rancho, cursive", + "slug": "wp-font-lib-rancho", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rancho/v17/46kulbzmXjLaqZRlbWXgd0RY1g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rancho" + } + ] + }, + { + "name": "Ranga", + "fontFamily": "Ranga, system-ui", + "slug": "wp-font-lib-ranga", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ranga/v18/C8ct4cYisGb28p6CLDwZwmGE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ranga" + }, + { + "src": "http://fonts.gstatic.com/s/ranga/v18/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ranga" + } + ] + }, + { + "name": "Rasa", + "fontFamily": "Rasa, serif", + "slug": "wp-font-lib-rasa", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN4YJW41fcvN2KT4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJW41fcvN2KT4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN50JW41fcvN2KT4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN6YIm41fcvN2KT4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn76YHIn1mWmVKl8ZtAM9NrJfN6hIm41fcvN2KT4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZth2d8_v3bT4Ycc.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZoZ2d8_v3bT4Ycc.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZrR2d8_v3bT4Ycc.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZlhxd8_v3bT4Ycc.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Rasa" + }, + { + "src": "http://fonts.gstatic.com/s/rasa/v20/xn78YHIn1mWmfqBOmQhln0Bne8uOZmFxd8_v3bT4Ycc.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rasa" + } + ] + }, + { + "name": "Rationale", + "fontFamily": "Rationale, sans-serif", + "slug": "wp-font-lib-rationale", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rationale/v24/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rationale" + } + ] + }, + { + "name": "Ravi Prakash", + "fontFamily": "Ravi Prakash, system-ui", + "slug": "wp-font-lib-ravi-prakash", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/raviprakash/v19/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ravi Prakash" + } + ] + }, + { + "name": "Readex Pro", + "fontFamily": "Readex Pro, sans-serif", + "slug": "wp-font-lib-readex-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCYUSmgmsglvjkag.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCv0Smgmsglvjkag.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC4USmgmsglvjkag.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC00Smgmsglvjkag.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCP0Omgmsglvjkag.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + }, + { + "src": "http://fonts.gstatic.com/s/readexpro/v21/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCBkOmgmsglvjkag.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Readex Pro" + } + ] + }, + { + "name": "Recursive", + "fontFamily": "Recursive, sans-serif", + "slug": "wp-font-lib-recursive", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadDck018vwxjDJCL.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk018vwxjDJCL.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCwk018vwxjDJCL.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBclE18vwxjDJCL.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBllE18vwxjDJCL.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadAClE18vwxjDJCL.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Recursive" + }, + { + "src": "http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadArlE18vwxjDJCL.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Recursive" + } + ] + }, + { + "name": "Red Hat Display", + "fontFamily": "Red Hat Display, sans-serif", + "slug": "wp-font-lib-red-hat-display", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWckg5-Xecg3w.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWckg5-Xecg3w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbl6Wckg5-Xecg3w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbrKRckg5-Xecg3w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbouRckg5-Xecg3w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbuyRckg5-Xecg3w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbsWRckg5-Xecg3w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVxAsz_VWZk3zJGg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVmgsz_VWZk3zJGg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVqAsz_VWZk3zJGg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVRAwz_VWZk3zJGg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVfQwz_VWZk3zJGg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVGgwz_VWZk3zJGg.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + }, + { + "src": "http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVMwwz_VWZk3zJGg.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Red Hat Display" + } + ] + }, + { + "name": "Red Hat Mono", + "fontFamily": "Red Hat Mono, monospace", + "slug": "wp-font-lib-red-hat-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQQPI-7HNuW4QuKI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3I-7HNuW4QuKI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQW_I-7HNuW4QuKI.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQYPP-7HNuW4QuKI.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQbrP-7HNuW4QuKI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLTfLHvUwVqKIJuw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLE_LHvUwVqKIJuw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLIfLHvUwVqKIJuw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLzfXHvUwVqKIJuw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + }, + { + "src": "http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWL9PXHvUwVqKIJuw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Red Hat Mono" + } + ] + }, + { + "name": "Red Hat Text", + "fontFamily": "Red Hat Text, sans-serif", + "slug": "wp-font-lib-red-hat-text", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML-ZwVrbacYVFtIY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrbacYVFtIY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrbacYVFtIY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML2Z3VrbacYVFtIY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML193VrbacYVFtIY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAz4PXQdadApIYv_g.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzvvXQdadApIYv_g.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzjPXQdadApIYv_g.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzYPLQdadApIYv_g.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + }, + { + "src": "http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzWfLQdadApIYv_g.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Red Hat Text" + } + ] + }, + { + "name": "Red Rose", + "fontFamily": "Red Rose, system-ui", + "slug": "wp-font-lib-red-rose", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8y8_sDcjSsYUVUjg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Red Rose" + }, + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfsDcjSsYUVUjg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Red Rose" + }, + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yn_sDcjSsYUVUjg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Red Rose" + }, + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yc_wDcjSsYUVUjg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Red Rose" + }, + { + "src": "http://fonts.gstatic.com/s/redrose/v18/QdVISTYiLBjouPgEUajvsfWwDtc3MH8ySvwDcjSsYUVUjg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Red Rose" + } + ] + }, + { + "name": "Redacted", + "fontFamily": "Redacted, system-ui", + "slug": "wp-font-lib-redacted", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redacted/v6/Z9XVDmdRShme2O_7aITe4u2El6GC.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Redacted" + } + ] + }, + { + "name": "Redacted Script", + "fontFamily": "Redacted Script, system-ui", + "slug": "wp-font-lib-redacted-script", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvEbXGRglhokR7dcC3d1-R6zmxqHUzVmbI397ldkg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Redacted Script" + }, + { + "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvBbXGRglhokR7dcC3d1-R6zmxSsWTxkZkr_g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Redacted Script" + }, + { + "src": "http://fonts.gstatic.com/s/redactedscript/v7/ypvEbXGRglhokR7dcC3d1-R6zmxqDUvVmbI397ldkg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Redacted Script" + } + ] + }, + { + "name": "Redressed", + "fontFamily": "Redressed, cursive", + "slug": "wp-font-lib-redressed", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/redressed/v25/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Redressed" + } + ] + }, + { + "name": "Reem Kufi", + "fontFamily": "Reem Kufi, sans-serif", + "slug": "wp-font-lib-reem-kufi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reem Kufi" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Reem Kufi" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Reem Kufi" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Reem Kufi" + } + ] + }, + { + "name": "Reem Kufi Fun", + "fontFamily": "Reem Kufi Fun, sans-serif", + "slug": "wp-font-lib-reem-kufi-fun", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYj3nCgrvqZzZXq.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Fun" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYR3nCgrvqZzZXq.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Fun" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChob92XCgrvqZzZXq.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Fun" + }, + { + "src": "http://fonts.gstatic.com/s/reemkufifun/v7/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChobE2XCgrvqZzZXq.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Fun" + } + ] + }, + { + "name": "Reem Kufi Ink", + "fontFamily": "Reem Kufi Ink, sans-serif", + "slug": "wp-font-lib-reem-kufi-ink", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reemkufiink/v9/oPWJ_kJmmu8hCvB9iFumxZSnRj5dQnSX1ko.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reem Kufi Ink" + } + ] + }, + { + "name": "Reenie Beanie", + "fontFamily": "Reenie Beanie, cursive", + "slug": "wp-font-lib-reenie-beanie", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reeniebeanie/v16/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reenie Beanie" + } + ] + }, + { + "name": "Reggae One", + "fontFamily": "Reggae One, system-ui", + "slug": "wp-font-lib-reggae-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/reggaeone/v15/~CgwKClJlZ2dhZSBPbmUgACoECAEYAQ==.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Reggae One" + } + ] + }, + { + "name": "Revalia", + "fontFamily": "Revalia, system-ui", + "slug": "wp-font-lib-revalia", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/revalia/v20/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Revalia" + } + ] + }, + { + "name": "Rhodium Libre", + "fontFamily": "Rhodium Libre, serif", + "slug": "wp-font-lib-rhodium-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rhodiumlibre/v17/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rhodium Libre" + } + ] + }, + { + "name": "Ribeye", + "fontFamily": "Ribeye, system-ui", + "slug": "wp-font-lib-ribeye", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ribeye/v22/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ribeye" + } + ] + }, + { + "name": "Ribeye Marrow", + "fontFamily": "Ribeye Marrow, system-ui", + "slug": "wp-font-lib-ribeye-marrow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ribeyemarrow/v22/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ribeye Marrow" + } + ] + }, + { + "name": "Righteous", + "fontFamily": "Righteous, system-ui", + "slug": "wp-font-lib-righteous", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/righteous/v14/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Righteous" + } + ] + }, + { + "name": "Risque", + "fontFamily": "Risque, system-ui", + "slug": "wp-font-lib-risque", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/risque/v20/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Risque" + } + ] + }, + { + "name": "Road Rage", + "fontFamily": "Road Rage, system-ui", + "slug": "wp-font-lib-road-rage", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/roadrage/v5/6NUU8F2fKAOBKjjr4ekvtMYAwdRZfw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Road Rage" + } + ] + }, + { + "name": "Roboto", + "fontFamily": "Roboto, sans-serif", + "slug": "wp-font-lib-roboto", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Roboto" + }, + { + "src": "http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Roboto" + } + ] + }, + { + "name": "Roboto Condensed", + "fontFamily": "Roboto Condensed, sans-serif", + "slug": "wp-font-lib-roboto-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Roboto Condensed" + } + ] + }, + { + "name": "Roboto Flex", + "fontFamily": "Roboto Flex, sans-serif", + "slug": "wp-font-lib-roboto-flex", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotoflex/v9/NaN4epOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGfttPZktqc2VdZ80KvCLZaPcSBZtOx2MifRuWR28sPJtUMbsFEK6cRrleUx9Xgbm3WLHa_F4Ep4Fm0PN19Ik5Dntczx0wZGzhPlL1YNMYKbv9_1IQXOw7AiUJVXpRJ6cXW4O8TNGoXjC79QRyaLshNDUf3e0O-gn5rrZCu20YNYG0EACUTNK-QKavMlxGIY8dxef0jQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Flex" + } + ] + }, + { + "name": "Roboto Mono", + "fontFamily": "Roboto Mono, monospace", + "slug": "wp-font-lib-roboto-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQ--5Ip2sSQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQ--5Ip2sSQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQ--5Ip2sSQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQ--5Ip2sSQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQ--5Ip2sSQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQ--5Ip2sSQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQ--5Ip2sSQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9AJi8SZwt.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9AJi8SZwt.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9AJi8SZwt.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9AJi8SZwt.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9AJi8SZwt.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9AJi8SZwt.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + }, + { + "src": "http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9AJi8SZwt.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Roboto Mono" + } + ] + }, + { + "name": "Roboto Serif", + "fontFamily": "Roboto Serif, serif", + "slug": "wp-font-lib-roboto-serif", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliosp6d2Af5fR4k.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqotp6d2Af5fR4k.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElnQtp6d2Af5fR4k.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6d2Af5fR4k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6d2Af5fR4k.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElvQqp6d2Af5fR4k.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6d2Af5fR4k.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqoqp6d2Af5fR4k.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEloMqp6d2Af5fR4k.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-V8BdxaV4nUFw.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-R8BdxaV4nUFw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuEeR8BdxaV4nUFw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8BdxaV4nUFw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JufeR8BdxaV4nUFw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JukeN8BdxaV4nUFw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8BdxaV4nUFw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-N8BdxaV4nUFw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + }, + { + "src": "http://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Ju5uN8BdxaV4nUFw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Roboto Serif" + } + ] + }, + { + "name": "Roboto Slab", + "fontFamily": "Roboto Slab, serif", + "slug": "wp-font-lib-roboto-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaG5iddG-1A.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaG5iddG-1A.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaG5iddG-1A.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaG5iddG-1A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaG5iddG-1A.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaG5iddG-1A.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaG5iddG-1A.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaG5iddG-1A.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + }, + { + "src": "http://fonts.gstatic.com/s/robotoslab/v25/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaG5iddG-1A.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Roboto Slab" + } + ] + }, + { + "name": "Rochester", + "fontFamily": "Rochester, cursive", + "slug": "wp-font-lib-rochester", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rochester/v18/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rochester" + } + ] + }, + { + "name": "Rock 3D", + "fontFamily": "Rock 3D, system-ui", + "slug": "wp-font-lib-rock-3d", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rock3d/v10/yYLp0hrL0PCo651513SnwRnQyNI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rock 3D" + } + ] + }, + { + "name": "Rock Salt", + "fontFamily": "Rock Salt, cursive", + "slug": "wp-font-lib-rock-salt", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rocksalt/v18/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rock Salt" + } + ] + }, + { + "name": "RocknRoll One", + "fontFamily": "RocknRoll One, sans-serif", + "slug": "wp-font-lib-rocknroll-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rocknrollone/v10/kmK7ZqspGAfCeUiW6FFlmEC9guVhs7tfUxc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "RocknRoll One" + } + ] + }, + { + "name": "Rokkitt", + "fontFamily": "Rokkitt, serif", + "slug": "wp-font-lib-rokkitt", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDLE76HvN6n.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DLE76HvN6n.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DLE76HvN6n.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DLE76HvN6n.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DLE76HvN6n.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDLE76HvN6n.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDLE76HvN6n.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDLE76HvN6n.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDLE76HvN6n.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiJGbqluc6nu9E.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiIGbqluc6nu9E.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NCaIGbqluc6nu9E.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NHiIGbqluc6nu9E.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NEqIGbqluc6nu9E.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NKaPGbqluc6nu9E.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NJ-PGbqluc6nu9E.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NPiPGbqluc6nu9E.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + }, + { + "src": "http://fonts.gstatic.com/s/rokkitt/v34/qFdV35qfgYFjGy5hkEOYeNY-EoKzjE86NNGPGbqluc6nu9E.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Rokkitt" + } + ] + }, + { + "name": "Romanesco", + "fontFamily": "Romanesco, cursive", + "slug": "wp-font-lib-romanesco", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Romanesco" + } + ] + }, + { + "name": "Ropa Sans", + "fontFamily": "Ropa Sans, sans-serif", + "slug": "wp-font-lib-ropa-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ropa Sans" + }, + { + "src": "http://fonts.gstatic.com/s/ropasans/v15/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ropa Sans" + } + ] + }, + { + "name": "Rosario", + "fontFamily": "Rosario, sans-serif", + "slug": "wp-font-lib-rosario", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Rosario" + }, + { + "src": "http://fonts.gstatic.com/s/rosario/v31/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rosario" + } + ] + }, + { + "name": "Rosarivo", + "fontFamily": "Rosarivo, serif", + "slug": "wp-font-lib-rosarivo", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rosarivo/v20/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rosarivo" + }, + { + "src": "http://fonts.gstatic.com/s/rosarivo/v20/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rosarivo" + } + ] + }, + { + "name": "Rouge Script", + "fontFamily": "Rouge Script, cursive", + "slug": "wp-font-lib-rouge-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rougescript/v14/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rouge Script" + } + ] + }, + { + "name": "Rowdies", + "fontFamily": "Rowdies, system-ui", + "slug": "wp-font-lib-rowdies", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219hth5O7yKQNute8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rowdies" + }, + { + "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRJTieMYPNBAK21zrdJwObZNQo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rowdies" + }, + { + "src": "http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219gtm5O7yKQNute8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rowdies" + } + ] + }, + { + "name": "Rozha One", + "fontFamily": "Rozha One, serif", + "slug": "wp-font-lib-rozha-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rozhaone/v13/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rozha One" + } + ] + }, + { + "name": "Rubik", + "fontFamily": "Rubik, sans-serif", + "slug": "wp-font-lib-rubik", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UE80V4bVkA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UE80V4bVkA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UE80V4bVkA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1UE80V4bVkA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UE80V4bVkA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1UE80V4bVkA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1UE80V4bVkA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0UwdYPFkJ1O.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0UwdYPFkJ1O.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0UwdYPFkJ1O.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEUwdYPFkJ1O.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEUwdYPFkJ1O.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEUwdYPFkJ1O.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Rubik" + }, + { + "src": "http://fonts.gstatic.com/s/rubik/v26/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEUwdYPFkJ1O.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Rubik" + } + ] + }, + { + "name": "Rubik 80s Fade", + "fontFamily": "Rubik 80s Fade, system-ui", + "slug": "wp-font-lib-rubik-80s-fade", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubik80sfade/v2/U9MF6dW37nLSmnwZXyoV-uPXUhHwkbL8IHcK.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik 80s Fade" + } + ] + }, + { + "name": "Rubik Beastly", + "fontFamily": "Rubik Beastly, system-ui", + "slug": "wp-font-lib-rubik-beastly", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikbeastly/v10/0QImMXRd5oOmSC2ZQ7o9653X07z8_ApHqqk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Beastly" + } + ] + }, + { + "name": "Rubik Bubbles", + "fontFamily": "Rubik Bubbles, system-ui", + "slug": "wp-font-lib-rubik-bubbles", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikbubbles/v3/JIA1UVdwbHFJtwA7Us1BPFbRNTENfDxyRXI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Bubbles" + } + ] + }, + { + "name": "Rubik Burned", + "fontFamily": "Rubik Burned, system-ui", + "slug": "wp-font-lib-rubik-burned", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqniHQuaCY5ZSg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Burned" + } + ] + }, + { + "name": "Rubik Dirt", + "fontFamily": "Rubik Dirt, system-ui", + "slug": "wp-font-lib-rubik-dirt", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikdirt/v2/DtVmJxC7WLEj1uIXEWAdulwm6gDXvwE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Dirt" + } + ] + }, + { + "name": "Rubik Distressed", + "fontFamily": "Rubik Distressed, system-ui", + "slug": "wp-font-lib-rubik-distressed", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldcWAhatVBaGM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Distressed" + } + ] + }, + { + "name": "Rubik Gemstones", + "fontFamily": "Rubik Gemstones, system-ui", + "slug": "wp-font-lib-rubik-gemstones", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikgemstones/v1/zrf90HrL0-_8Xb4DFM2rUkWbOVrOiCnGqi1GMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Gemstones" + } + ] + }, + { + "name": "Rubik Glitch", + "fontFamily": "Rubik Glitch, system-ui", + "slug": "wp-font-lib-rubik-glitch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZvmC7HONiSFQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Glitch" + } + ] + }, + { + "name": "Rubik Iso", + "fontFamily": "Rubik Iso, system-ui", + "slug": "wp-font-lib-rubik-iso", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikiso/v2/x3dickHUfr-S4VAI4sABfPACvy_1BA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Iso" + } + ] + }, + { + "name": "Rubik Marker Hatch", + "fontFamily": "Rubik Marker Hatch, system-ui", + "slug": "wp-font-lib-rubik-marker-hatch", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHQDL4iw0H6zw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Marker Hatch" + } + ] + }, + { + "name": "Rubik Maze", + "fontFamily": "Rubik Maze, system-ui", + "slug": "wp-font-lib-rubik-maze", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmaze/v2/xMQRuF9ZVa2ftiJEavXSAX7inS-bxV4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Maze" + } + ] + }, + { + "name": "Rubik Microbe", + "fontFamily": "Rubik Microbe, system-ui", + "slug": "wp-font-lib-rubik-microbe", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZcs8aaKgiauE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Microbe" + } + ] + }, + { + "name": "Rubik Mono One", + "fontFamily": "Rubik Mono One, sans-serif", + "slug": "wp-font-lib-rubik-mono-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmonoone/v15/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Mono One" + } + ] + }, + { + "name": "Rubik Moonrocks", + "fontFamily": "Rubik Moonrocks, system-ui", + "slug": "wp-font-lib-rubik-moonrocks", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikmoonrocks/v2/845ANMAmAI2VUZMLu_W0M7HqlDHnXcD7JGy1Sw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Moonrocks" + } + ] + }, + { + "name": "Rubik Pixels", + "fontFamily": "Rubik Pixels, system-ui", + "slug": "wp-font-lib-rubik-pixels", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikpixels/v2/SlGXmQOaupkIeSx4CEpB7AdSaBYRagrQrA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Pixels" + } + ] + }, + { + "name": "Rubik Puddles", + "fontFamily": "Rubik Puddles, system-ui", + "slug": "wp-font-lib-rubik-puddles", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcJfC0wVMT-aE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Puddles" + } + ] + }, + { + "name": "Rubik Spray Paint", + "fontFamily": "Rubik Spray Paint, system-ui", + "slug": "wp-font-lib-rubik-spray-paint", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikspraypaint/v1/WnzhHBAoeBPUDTB4EWR82y6EXWPH-Ro-QoaBZQxP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Spray Paint" + } + ] + }, + { + "name": "Rubik Storm", + "fontFamily": "Rubik Storm, system-ui", + "slug": "wp-font-lib-rubik-storm", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikstorm/v1/eLGYP-_uPgO5Ag7ju9JaouL9T2Xh9NQk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Storm" + } + ] + }, + { + "name": "Rubik Vinyl", + "fontFamily": "Rubik Vinyl, system-ui", + "slug": "wp-font-lib-rubik-vinyl", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikvinyl/v1/iJWABXKIfDnIV4mQ5BfjvUXexox2ztOU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Vinyl" + } + ] + }, + { + "name": "Rubik Wet Paint", + "fontFamily": "Rubik Wet Paint, system-ui", + "slug": "wp-font-lib-rubik-wet-paint", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-F-zz313DuvQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rubik Wet Paint" + } + ] + }, + { + "name": "Ruda", + "fontFamily": "Ruda, sans-serif", + "slug": "wp-font-lib-ruda", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_-2KiSGg-H.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_-2KiSGg-H.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_-2KiSGg-H.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_-2KiSGg-H.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_-2KiSGg-H.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Ruda" + }, + { + "src": "http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_-2KiSGg-H.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Ruda" + } + ] + }, + { + "name": "Rufina", + "fontFamily": "Rufina, serif", + "slug": "wp-font-lib-rufina", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rufina/v13/Yq6V-LyURyLy-aKyoxRktOdClg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rufina" + }, + { + "src": "http://fonts.gstatic.com/s/rufina/v13/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Rufina" + } + ] + }, + { + "name": "Ruge Boogie", + "fontFamily": "Ruge Boogie, cursive", + "slug": "wp-font-lib-ruge-boogie", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rugeboogie/v25/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruge Boogie" + } + ] + }, + { + "name": "Ruluko", + "fontFamily": "Ruluko, sans-serif", + "slug": "wp-font-lib-ruluko", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruluko" + } + ] + }, + { + "name": "Rum Raisin", + "fontFamily": "Rum Raisin, sans-serif", + "slug": "wp-font-lib-rum-raisin", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rumraisin/v20/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rum Raisin" + } + ] + }, + { + "name": "Ruslan Display", + "fontFamily": "Ruslan Display, system-ui", + "slug": "wp-font-lib-ruslan-display", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ruslandisplay/v22/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruslan Display" + } + ] + }, + { + "name": "Russo One", + "fontFamily": "Russo One, sans-serif", + "slug": "wp-font-lib-russo-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Russo One" + } + ] + }, + { + "name": "Ruthie", + "fontFamily": "Ruthie, cursive", + "slug": "wp-font-lib-ruthie", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ruthie/v24/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ruthie" + } + ] + }, + { + "name": "Rye", + "fontFamily": "Rye, system-ui", + "slug": "wp-font-lib-rye", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/rye/v13/r05XGLJT86YDFpTsXOqx4w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Rye" + } + ] + }, + { + "name": "STIX Two Text", + "fontFamily": "STIX Two Text, serif", + "slug": "wp-font-lib-stix-two-text", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2SOYWxFMN1WD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YihS2SOYWxFMN1WD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yii-3iOYWxFMN1WD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YiiH3iOYWxFMN1WD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omsvbURVuMkWDmSo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omvnbURVuMkWDmSo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omhXcURVuMkWDmSo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "STIX Two Text" + }, + { + "src": "http://fonts.gstatic.com/s/stixtwotext/v11/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omizcURVuMkWDmSo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "STIX Two Text" + } + ] + }, + { + "name": "Sacramento", + "fontFamily": "Sacramento, cursive", + "slug": "wp-font-lib-sacramento", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sacramento/v13/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sacramento" + } + ] + }, + { + "name": "Sahitya", + "fontFamily": "Sahitya, serif", + "slug": "wp-font-lib-sahitya", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sahitya/v17/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sahitya" + }, + { + "src": "http://fonts.gstatic.com/s/sahitya/v17/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sahitya" + } + ] + }, + { + "name": "Sail", + "fontFamily": "Sail, system-ui", + "slug": "wp-font-lib-sail", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJFBTDADYAbvw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sail" + } + ] + }, + { + "name": "Saira", + "fontFamily": "Saira, sans-serif", + "slug": "wp-font-lib-saira", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rDosg7lwYmUVY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rCosg7lwYmUVY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7wTCosg7lwYmUVY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCosg7lwYmUVY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA72jCosg7lwYmUVY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA74TFosg7lwYmUVY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773Fosg7lwYmUVY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rFosg7lwYmUVY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7_PFosg7lwYmUVY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSooxkyQjQVYmxA.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByosxkyQjQVYmxA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBFIsxkyQjQVYmxA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSosxkyQjQVYmxA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBeIsxkyQjQVYmxA.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBlIwxkyQjQVYmxA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBrYwxkyQjQVYmxA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByowxkyQjQVYmxA.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Saira" + }, + { + "src": "http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKB44wxkyQjQVYmxA.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Saira" + } + ] + }, + { + "name": "Saira Condensed", + "fontFamily": "Saira Condensed, sans-serif", + "slug": "wp-font-lib-saira-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Saira Condensed" + } + ] + }, + { + "name": "Saira Extra Condensed", + "fontFamily": "Saira Extra Condensed, sans-serif", + "slug": "wp-font-lib-saira-extra-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Saira Extra Condensed" + } + ] + }, + { + "name": "Saira Semi Condensed", + "fontFamily": "Saira Semi Condensed, sans-serif", + "slug": "wp-font-lib-saira-semi-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Saira Semi Condensed" + } + ] + }, + { + "name": "Saira Stencil One", + "fontFamily": "Saira Stencil One, system-ui", + "slug": "wp-font-lib-saira-stencil-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sairastencilone/v14/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Saira Stencil One" + } + ] + }, + { + "name": "Salsa", + "fontFamily": "Salsa, system-ui", + "slug": "wp-font-lib-salsa", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/salsa/v17/gNMKW3FiRpKj-imY8ncKEZez.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Salsa" + } + ] + }, + { + "name": "Sanchez", + "fontFamily": "Sanchez, serif", + "slug": "wp-font-lib-sanchez", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sanchez/v13/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sanchez" + }, + { + "src": "http://fonts.gstatic.com/s/sanchez/v13/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sanchez" + } + ] + }, + { + "name": "Sancreek", + "fontFamily": "Sancreek, system-ui", + "slug": "wp-font-lib-sancreek", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sancreek/v23/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sancreek" + } + ] + }, + { + "name": "Sansita", + "fontFamily": "Sansita, sans-serif", + "slug": "wp-font-lib-sansita", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldONTRRphEb_-V7HBm7TXFf3qw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sansita" + }, + { + "src": "http://fonts.gstatic.com/s/sansita/v11/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sansita" + } + ] + }, + { + "name": "Sansita Swashed", + "fontFamily": "Sansita Swashed, system-ui", + "slug": "wp-font-lib-sansita-swashed", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW-ppbToVehmEa4Q.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpbToVehmEa4Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW4ZpbToVehmEa4Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW2pubToVehmEa4Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW1NubToVehmEa4Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWzRubToVehmEa4Q.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + }, + { + "src": "http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWx1ubToVehmEa4Q.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sansita Swashed" + } + ] + }, + { + "name": "Sarabun", + "fontFamily": "Sarabun, sans-serif", + "slug": "wp-font-lib-sarabun", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sarabun" + }, + { + "src": "http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sarabun" + } + ] + }, + { + "name": "Sarala", + "fontFamily": "Sarala, sans-serif", + "slug": "wp-font-lib-sarala", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sarala/v10/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sarala" + }, + { + "src": "http://fonts.gstatic.com/s/sarala/v10/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sarala" + } + ] + }, + { + "name": "Sarina", + "fontFamily": "Sarina, system-ui", + "slug": "wp-font-lib-sarina", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sarina/v21/-F6wfjF3ITQwasLhLkDUriBQxw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sarina" + } + ] + }, + { + "name": "Sarpanch", + "fontFamily": "Sarpanch, sans-serif", + "slug": "wp-font-lib-sarpanch", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + }, + { + "src": "http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sarpanch" + } + ] + }, + { + "name": "Sassy Frass", + "fontFamily": "Sassy Frass, cursive", + "slug": "wp-font-lib-sassy-frass", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sassyfrass/v5/LhWhMVrGOe0FLb97BjhsE99dGNWQg_am.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sassy Frass" + } + ] + }, + { + "name": "Satisfy", + "fontFamily": "Satisfy, cursive", + "slug": "wp-font-lib-satisfy", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/satisfy/v17/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Satisfy" + } + ] + }, + { + "name": "Sawarabi Gothic", + "fontFamily": "Sawarabi Gothic, sans-serif", + "slug": "wp-font-lib-sawarabi-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sawarabigothic/v12/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sawarabi Gothic" + } + ] + }, + { + "name": "Sawarabi Mincho", + "fontFamily": "Sawarabi Mincho, serif", + "slug": "wp-font-lib-sawarabi-mincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sawarabi Mincho" + } + ] + }, + { + "name": "Scada", + "fontFamily": "Scada, sans-serif", + "slug": "wp-font-lib-scada", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/scada/v15/RLpxK5Pv5qumeWJoxzUobkvv.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Scada" + }, + { + "src": "http://fonts.gstatic.com/s/scada/v15/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Scada" + }, + { + "src": "http://fonts.gstatic.com/s/scada/v15/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Scada" + }, + { + "src": "http://fonts.gstatic.com/s/scada/v15/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Scada" + } + ] + }, + { + "name": "Scheherazade New", + "fontFamily": "Scheherazade New, serif", + "slug": "wp-font-lib-scheherazade-new", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/scheherazadenew/v15/4UaZrFhTvxVnHDvUkUiHg8jprP4DCwNsOl4p5Is.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Scheherazade New" + }, + { + "src": "http://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM_dFHlYC-IKnoSE.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Scheherazade New" + }, + { + "src": "http://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM9tCHlYC-IKnoSE.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Scheherazade New" + }, + { + "src": "http://fonts.gstatic.com/s/scheherazadenew/v15/4UaerFhTvxVnHDvUkUiHg8jprP4DM79DHlYC-IKnoSE.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Scheherazade New" + } + ] + }, + { + "name": "Schibsted Grotesk", + "fontFamily": "Schibsted Grotesk, sans-serif", + "slug": "wp-font-lib-schibsted-grotesk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNIsEAT8JuXFGVOQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNEMEAT8JuXFGVOQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMN_MYAT8JuXFGVOQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYAT8JuXFGVOQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNosYAT8JuXFGVOQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNi8YAT8JuXFGVOQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLoDMhqflSFOTXs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLaDMhqflSFOTXs.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oI2C8hqflSFOTXs.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oIPC8hqflSFOTXs.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJoC8hqflSFOTXs.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oJBC8hqflSFOTXs.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Schibsted Grotesk" + } + ] + }, + { + "name": "Schoolbell", + "fontFamily": "Schoolbell, cursive", + "slug": "wp-font-lib-schoolbell", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Schoolbell" + } + ] + }, + { + "name": "Scope One", + "fontFamily": "Scope One, serif", + "slug": "wp-font-lib-scope-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Scope One" + } + ] + }, + { + "name": "Seaweed Script", + "fontFamily": "Seaweed Script, system-ui", + "slug": "wp-font-lib-seaweed-script", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/seaweedscript/v13/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Seaweed Script" + } + ] + }, + { + "name": "Secular One", + "fontFamily": "Secular One, sans-serif", + "slug": "wp-font-lib-secular-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/secularone/v11/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Secular One" + } + ] + }, + { + "name": "Sedgwick Ave", + "fontFamily": "Sedgwick Ave, cursive", + "slug": "wp-font-lib-sedgwick-ave", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sedgwickave/v12/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sedgwick Ave" + } + ] + }, + { + "name": "Sedgwick Ave Display", + "fontFamily": "Sedgwick Ave Display, cursive", + "slug": "wp-font-lib-sedgwick-ave-display", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sedgwickavedisplay/v19/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sedgwick Ave Display" + } + ] + }, + { + "name": "Sen", + "fontFamily": "Sen, sans-serif", + "slug": "wp-font-lib-sen", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sen/v7/6xKjdSxYI9_Hm_-MImrpLQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sen" + }, + { + "src": "http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__J9CoKkH1JHUQSQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sen" + }, + { + "src": "http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__O9OoKkH1JHUQSQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sen" + } + ] + }, + { + "name": "Send Flowers", + "fontFamily": "Send Flowers, cursive", + "slug": "wp-font-lib-send-flowers", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sendflowers/v2/If2PXTjtZS-0Xqy13uCQSULvxwjjouU1iw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Send Flowers" + } + ] + }, + { + "name": "Sevillana", + "fontFamily": "Sevillana, system-ui", + "slug": "wp-font-lib-sevillana", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sevillana/v21/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sevillana" + } + ] + }, + { + "name": "Seymour One", + "fontFamily": "Seymour One, sans-serif", + "slug": "wp-font-lib-seymour-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/seymourone/v20/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Seymour One" + } + ] + }, + { + "name": "Shadows Into Light", + "fontFamily": "Shadows Into Light, cursive", + "slug": "wp-font-lib-shadows-into-light", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shadowsintolight/v15/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shadows Into Light" + } + ] + }, + { + "name": "Shadows Into Light Two", + "fontFamily": "Shadows Into Light Two, cursive", + "slug": "wp-font-lib-shadows-into-light-two", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shadowsintolighttwo/v14/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shadows Into Light Two" + } + ] + }, + { + "name": "Shalimar", + "fontFamily": "Shalimar, cursive", + "slug": "wp-font-lib-shalimar", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shalimar/v5/uU9MCBoE6I6iNWFUvTPx8PCOg0uX.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shalimar" + } + ] + }, + { + "name": "Shantell Sans", + "fontFamily": "Shantell Sans, system-ui", + "slug": "wp-font-lib-shantell-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYQiS2i2yPwxjyRN.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYR8S2i2yPwxjyRN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYROS2i2yPwxjyRN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSiTGi2yPwxjyRN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYSbTGi2yPwxjyRN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUaS0pCoLIo-lcdY7kjvNoQqWVWB0qWpl29ajppTuUTu_kJKmHesPOL-maYi4xZeHCNQ09eBlmv2QcUzJ39-rAISYT8TGi2yPwxjyRN.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CN71wvgTijRNYgQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CID1wvgTijRNYgQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CLL1wvgTijRNYgQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CF7ywvgTijRNYgQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CGfywvgTijRNYgQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + }, + { + "src": "http://fonts.gstatic.com/s/shantellsans/v7/FeUcS0pCoLIo-lcdY7kjvNoQg2xkycTqsuA6bi9pTt8YiT-NXidjb_ee-maigL6R8nKVh8BbE1mv4wwmM0WUkSqmTpG0CADywvgTijRNYgQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Shantell Sans" + } + ] + }, + { + "name": "Shanti", + "fontFamily": "Shanti, sans-serif", + "slug": "wp-font-lib-shanti", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shanti/v23/t5thIREMM4uSDgzgU0ezpKfwzA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shanti" + } + ] + }, + { + "name": "Share", + "fontFamily": "Share, system-ui", + "slug": "wp-font-lib-share", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/share/v16/i7dEIFliZjKNF5VNHLq2cV5d.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Share" + }, + { + "src": "http://fonts.gstatic.com/s/share/v16/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Share" + }, + { + "src": "http://fonts.gstatic.com/s/share/v16/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Share" + }, + { + "src": "http://fonts.gstatic.com/s/share/v16/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Share" + } + ] + }, + { + "name": "Share Tech", + "fontFamily": "Share Tech, sans-serif", + "slug": "wp-font-lib-share-tech", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sharetech/v17/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Share Tech" + } + ] + }, + { + "name": "Share Tech Mono", + "fontFamily": "Share Tech Mono, monospace", + "slug": "wp-font-lib-share-tech-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Share Tech Mono" + } + ] + }, + { + "name": "Shippori Antique", + "fontFamily": "Shippori Antique, sans-serif", + "slug": "wp-font-lib-shippori-antique", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shipporiantique/v8/-F6qfid3KC8pdMyzR0qRyFUht11v8ldPg-IUDNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shippori Antique" + } + ] + }, + { + "name": "Shippori Antique B1", + "fontFamily": "Shippori Antique B1, sans-serif", + "slug": "wp-font-lib-shippori-antique-b1", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shipporiantiqueb1/v8/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRFCj9-5Y8Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shippori Antique B1" + } + ] + }, + { + "name": "Shippori Mincho", + "fontFamily": "Shippori Mincho, serif", + "slug": "wp-font-lib-shippori-mincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGGAZweH5EbgHY6YExcZfDoj0BA2_-C7LoS7g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4L9am5JEO5--2zg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4A9Gm5JEO5--2zg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4Z9Cm5JEO5--2zg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4e9Om5JEO5--2zg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho" + } + ] + }, + { + "name": "Shippori Mincho B1", + "fontFamily": "Shippori Mincho B1, serif", + "slug": "wp-font-lib-shippori-mincho-b1", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChQKElNoaXBwb3JpIE1pbmNobyBCMSAAKgQIARgB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + }, + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRj0AyAAKgQIARgB.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + }, + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRjYBCAAKgQIARgB.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + }, + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRi8BSAAKgQIARgB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + }, + { + "src": "http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRigBiAAKgQIARgB.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Shippori Mincho B1" + } + ] + }, + { + "name": "Shizuru", + "fontFamily": "Shizuru, system-ui", + "slug": "wp-font-lib-shizuru", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shizuru/v10/O4ZSFGfvnxFiCA3i30IJlgUTj2A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shizuru" + } + ] + }, + { + "name": "Shojumaru", + "fontFamily": "Shojumaru, system-ui", + "slug": "wp-font-lib-shojumaru", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shojumaru" + } + ] + }, + { + "name": "Short Stack", + "fontFamily": "Short Stack, cursive", + "slug": "wp-font-lib-short-stack", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Short Stack" + } + ] + }, + { + "name": "Shrikhand", + "fontFamily": "Shrikhand, system-ui", + "slug": "wp-font-lib-shrikhand", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/shrikhand/v12/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Shrikhand" + } + ] + }, + { + "name": "Siemreap", + "fontFamily": "Siemreap, system-ui", + "slug": "wp-font-lib-siemreap", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/siemreap/v24/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Siemreap" + } + ] + }, + { + "name": "Sigmar", + "fontFamily": "Sigmar, system-ui", + "slug": "wp-font-lib-sigmar", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sigmar/v3/hv-XlzJgIE8a85pUbWY3MTFgVg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sigmar" + } + ] + }, + { + "name": "Sigmar One", + "fontFamily": "Sigmar One, system-ui", + "slug": "wp-font-lib-sigmar-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sigmarone/v16/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sigmar One" + } + ] + }, + { + "name": "Signika", + "fontFamily": "Signika, sans-serif", + "slug": "wp-font-lib-signika", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tIJHJbGhs_cfKe1.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Signika" + }, + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJXHJbGhs_cfKe1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Signika" + }, + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJlHJbGhs_cfKe1.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Signika" + }, + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKJG5bGhs_cfKe1.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Signika" + }, + { + "src": "http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKwG5bGhs_cfKe1.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Signika" + } + ] + }, + { + "name": "Signika Negative", + "fontFamily": "Signika Negative, sans-serif", + "slug": "wp-font-lib-signika-negative", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAr5S73st9hiuEq8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + }, + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS73st9hiuEq8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + }, + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqVS73st9hiuEq8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + }, + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAp5TL3st9hiuEq8.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + }, + { + "src": "http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RApATL3st9hiuEq8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Signika Negative" + } + ] + }, + { + "name": "Silkscreen", + "fontFamily": "Silkscreen, system-ui", + "slug": "wp-font-lib-silkscreen", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/silkscreen/v1/m8JXjfVPf62XiF7kO-i9ULRvamODxdI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Silkscreen" + }, + { + "src": "http://fonts.gstatic.com/s/silkscreen/v1/m8JUjfVPf62XiF7kO-i9aAhATmuo2dudFvc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Silkscreen" + } + ] + }, + { + "name": "Simonetta", + "fontFamily": "Simonetta, system-ui", + "slug": "wp-font-lib-simonetta", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Simonetta" + }, + { + "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Simonetta" + }, + { + "src": "http://fonts.gstatic.com/s/simonetta/v24/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Simonetta" + }, + { + "src": "http://fonts.gstatic.com/s/simonetta/v24/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Simonetta" + } + ] + }, + { + "name": "Single Day", + "fontFamily": "Single Day, system-ui", + "slug": "wp-font-lib-single-day", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/singleday/v15/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Single Day" + } + ] + }, + { + "name": "Sintony", + "fontFamily": "Sintony, sans-serif", + "slug": "wp-font-lib-sintony", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sintony/v13/XoHm2YDqR7-98cVUITQnu98ojjs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sintony" + }, + { + "src": "http://fonts.gstatic.com/s/sintony/v13/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sintony" + } + ] + }, + { + "name": "Sirin Stencil", + "fontFamily": "Sirin Stencil, system-ui", + "slug": "wp-font-lib-sirin-stencil", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sirinstencil/v21/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sirin Stencil" + } + ] + }, + { + "name": "Six Caps", + "fontFamily": "Six Caps, sans-serif", + "slug": "wp-font-lib-six-caps", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sixcaps/v16/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Six Caps" + } + ] + }, + { + "name": "Skranji", + "fontFamily": "Skranji, system-ui", + "slug": "wp-font-lib-skranji", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Skranji" + }, + { + "src": "http://fonts.gstatic.com/s/skranji/v13/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Skranji" + } + ] + }, + { + "name": "Slabo 13px", + "fontFamily": "Slabo 13px, serif", + "slug": "wp-font-lib-slabo-13px", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/slabo13px/v13/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Slabo 13px" + } + ] + }, + { + "name": "Slabo 27px", + "fontFamily": "Slabo 27px, serif", + "slug": "wp-font-lib-slabo-27px", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/slabo27px/v12/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Slabo 27px" + } + ] + }, + { + "name": "Slackey", + "fontFamily": "Slackey, system-ui", + "slug": "wp-font-lib-slackey", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/slackey/v24/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Slackey" + } + ] + }, + { + "name": "Slackside One", + "fontFamily": "Slackside One, cursive", + "slug": "wp-font-lib-slackside-one", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/slacksideone/v8/EJRQQgMrXdcGsiBuvnRxodTwVy7VocNB6Iw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Slackside One" + } + ] + }, + { + "name": "Smokum", + "fontFamily": "Smokum, system-ui", + "slug": "wp-font-lib-smokum", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/smokum/v24/TK3iWkUbAhopmrdGHjUHte5fKg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Smokum" + } + ] + }, + { + "name": "Smooch", + "fontFamily": "Smooch, cursive", + "slug": "wp-font-lib-smooch", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/smooch/v5/o-0LIps4xW8U1xUBjqp_6hVdYg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Smooch" + } + ] + }, + { + "name": "Smooch Sans", + "fontFamily": "Smooch Sans, sans-serif", + "slug": "wp-font-lib-smooch-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUFodqIeNlzayg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUBodqIeNlzayg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oin0BodqIeNlzayg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUBodqIeNlzayg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oi80BodqIeNlzayg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiH0dodqIeNlzayg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiJkdodqIeNlzayg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUdodqIeNlzayg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + }, + { + "src": "http://fonts.gstatic.com/s/smoochsans/v10/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiaEdodqIeNlzayg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Smooch Sans" + } + ] + }, + { + "name": "Smythe", + "fontFamily": "Smythe, system-ui", + "slug": "wp-font-lib-smythe", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1BOLh_uGInjA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Smythe" + } + ] + }, + { + "name": "Sniglet", + "fontFamily": "Sniglet, system-ui", + "slug": "wp-font-lib-sniglet", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sniglet" + }, + { + "src": "http://fonts.gstatic.com/s/sniglet/v17/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sniglet" + } + ] + }, + { + "name": "Snippet", + "fontFamily": "Snippet, sans-serif", + "slug": "wp-font-lib-snippet", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Snippet" + } + ] + }, + { + "name": "Snowburst One", + "fontFamily": "Snowburst One, system-ui", + "slug": "wp-font-lib-snowburst-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Snowburst One" + } + ] + }, + { + "name": "Sofadi One", + "fontFamily": "Sofadi One, system-ui", + "slug": "wp-font-lib-sofadi-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofadi One" + } + ] + }, + { + "name": "Sofia", + "fontFamily": "Sofia, cursive", + "slug": "wp-font-lib-sofia", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_vu-sowsrqjk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia" + } + ] + }, + { + "name": "Sofia Sans", + "fontFamily": "Sofia Sans, sans-serif", + "slug": "wp-font-lib-sofia-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sa3trvKCXl8k.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6sK3trvKCXl8k.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69AksK3trvKCXl8k.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sK3trvKCXl8k.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69BIsK3trvKCXl8k.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Ckt63trvKCXl8k.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Cdt63trvKCXl8k.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6t63trvKCXl8k.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69DTt63trvKCXl8k.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WvpPagW08kdLY.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WupPagW08kdLY.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8xuupPagW08kdLY.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WupPagW08kdLY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy83eupPagW08kdLY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy85uppPagW08kdLY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy86KppPagW08kdLY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WppPagW08kdLY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasans/v16/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8-yppPagW08kdLY.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sofia Sans" + } + ] + }, + { + "name": "Sofia Sans Condensed", + "fontFamily": "Sofia Sans Condensed, sans-serif", + "slug": "wp-font-lib-sofia-sans-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Csl8QO3OfwQQ.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-Gsl8QO3OfwQQ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUq2eGsl8QO3OfwQQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Gsl8QO3OfwQQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqteGsl8QO3OfwQQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqWeasl8QO3OfwQQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqYOasl8QO3OfwQQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-asl8QO3OfwQQ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqLuasl8QO3OfwQQ.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1c4K_uLgQZ_3.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE1M4K_uLgQZ_3.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ia1M4K_uLgQZ_3.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1M4K_uLgQZ_3.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6J21M4K_uLgQZ_3.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ka084K_uLgQZ_3.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Kj084K_uLgQZ_3.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE084K_uLgQZ_3.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Lt084K_uLgQZ_3.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Condensed" + } + ] + }, + { + "name": "Sofia Sans Extra Condensed", + "fontFamily": "Sofia Sans Extra Condensed, sans-serif", + "slug": "wp-font-lib-sofia-sans-extra-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmmEfzmM356GxA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGmiEfzmM356GxA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLxGiEfzmM356GxA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmiEfzmM356GxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLqGiEfzmM356GxA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLRG-EfzmM356GxA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLfW-EfzmM356GxA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGm-EfzmM356GxA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLM2-EfzmM356GxA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPTOI_ZuWxFXe.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsPDOI_ZuWxFXe.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUisyPDOI_ZuWxFXe.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPDOI_ZuWxFXe.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitePDOI_ZuWxFXe.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuyOzOI_ZuWxFXe.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuLOzOI_ZuWxFXe.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsOzOI_ZuWxFXe.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivFOzOI_ZuWxFXe.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Extra Condensed" + } + ] + }, + { + "name": "Sofia Sans Semi Condensed", + "fontFamily": "Sofia Sans Semi Condensed, sans-serif", + "slug": "wp-font-lib-sofia-sans-semi-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEO9TGahllIhN.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbEe9TGahllIhN.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvopFEe9TGahllIhN.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEe9TGahllIhN.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoopEe9TGahllIhN.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvorFFu9TGahllIhN.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvor8Fu9TGahllIhN.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbFu9TGahllIhN.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqyFu9TGahllIhN.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcRE6xHkZhNeas.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocQE6xHkZhNeas.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUlkQE6xHkZhNeas.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcQE6xHkZhNeas.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUjUQE6xHkZhNeas.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUtkXE6xHkZhNeas.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUuAXE6xHkZhNeas.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocXE6xHkZhNeas.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + }, + { + "src": "http://fonts.gstatic.com/s/sofiasanssemicondensed/v4/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUq4XE6xHkZhNeas.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Sofia Sans Semi Condensed" + } + ] + }, + { + "name": "Solitreo", + "fontFamily": "Solitreo, cursive", + "slug": "wp-font-lib-solitreo", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/solitreo/v2/r05YGLlS5a9KYsyNO8upyDYtStiJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Solitreo" + } + ] + }, + { + "name": "Solway", + "fontFamily": "Solway, serif", + "slug": "wp-font-lib-solway", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuLlgZms0QW3mqyg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Solway" + }, + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Solway" + }, + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCudlkZms0QW3mqyg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Solway" + }, + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuPl8Zms0QW3mqyg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Solway" + }, + { + "src": "http://fonts.gstatic.com/s/solway/v18/AMOTz46Cs2uTAOCuIlwZms0QW3mqyg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Solway" + } + ] + }, + { + "name": "Song Myung", + "fontFamily": "Song Myung, serif", + "slug": "wp-font-lib-song-myung", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/songmyung/v20/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Song Myung" + } + ] + }, + { + "name": "Sono", + "fontFamily": "Sono, sans-serif", + "slug": "wp-font-lib-sono", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkWdEnR4qYeB4Q.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxV6EWdEnR4qYeB4Q.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVtkWdEnR4qYeB4Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVhEWdEnR4qYeB4Q.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVaEKdEnR4qYeB4Q.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVUUKdEnR4qYeB4Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sono" + }, + { + "src": "http://fonts.gstatic.com/s/sono/v4/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkKdEnR4qYeB4Q.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sono" + } + ] + }, + { + "name": "Sonsie One", + "fontFamily": "Sonsie One, system-ui", + "slug": "wp-font-lib-sonsie-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sonsie One" + } + ] + }, + { + "name": "Sora", + "fontFamily": "Sora, sans-serif", + "slug": "wp-font-lib-sora", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSn3-KIwNhBti0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSnn-KIwNhBti0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmScMnn-KIwNhBti0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSnn-KIwNhBti0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdgnn-KIwNhBti0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSeMmX-KIwNhBti0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSe1mX-KIwNhBti0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sora" + }, + { + "src": "http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSmX-KIwNhBti0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Sora" + } + ] + }, + { + "name": "Sorts Mill Goudy", + "fontFamily": "Sorts Mill Goudy, serif", + "slug": "wp-font-lib-sorts-mill-goudy", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sorts Mill Goudy" + }, + { + "src": "http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Sorts Mill Goudy" + } + ] + }, + { + "name": "Source Code Pro", + "fontFamily": "Source Code Pro, monospace", + "slug": "wp-font-lib-source-code-pro", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyQhM5hTXUcdJg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhM5hTXUcdJg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM5hTXUcdJg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXhM5hTXUcdJg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyXhM5hTXUcdJg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DGWXhM5hTXUcdJg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7I1rSVcZZJiGpw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTMo1rSVcZZJiGpw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1rSVcZZJiGpw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTXo1rSVcZZJiGpw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTsoprSVcZZJiGpw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTi4prSVcZZJiGpw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7IprSVcZZJiGpw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTxYprSVcZZJiGpw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Code Pro" + } + ] + }, + { + "name": "Source Sans 3", + "fontFamily": "Source Sans 3, sans-serif", + "slug": "wp-font-lib-source-sans-3", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw461EN_io6npfB.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EN_io6npfB.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN_io6npfB.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlO9C4Ym4fB3Ts.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqOdO9C4Ym4fB3Ts.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqLlO9C4Ym4fB3Ts.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqItO9C4Ym4fB3Ts.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9C4Ym4fB3Ts.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9C4Ym4fB3Ts.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlJ9C4Ym4fB3Ts.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesans3/v9/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9C4Ym4fB3Ts.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Sans 3" + } + ] + }, + { + "name": "Source Sans Pro", + "fontFamily": "Source Sans Pro, sans-serif", + "slug": "wp-font-lib-source-sans-pro", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Sans Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Sans Pro" + } + ] + }, + { + "name": "Source Serif 4", + "fontFamily": "Source Serif 4, serif", + "slug": "wp-font-lib-source-serif-4", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdqrhxXD-wGvjU.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiklqrhxXD-wGvjU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhxXD-wGvjU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiiVqrhxXD-wGvjU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjisltrhxXD-wGvjU.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjivBtrhxXD-wGvjU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdtrhxXD-wGvjU.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjir5trhxXD-wGvjU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxl9dC84DrjXEXw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pGF9dC84DrjXEXw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dC84DrjXEXw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pdF9dC84DrjXEXw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pmFhdC84DrjXEXw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdC84DrjXEXw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxlhdC84DrjXEXw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98p71hdC84DrjXEXw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Serif 4" + } + ] + }, + { + "name": "Source Serif Pro", + "fontFamily": "Source Serif Pro, serif", + "slug": "wp-font-lib-source-serif-pro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasbsfhSugxYUvZrI.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGbSqqwacqdrKvbQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasd8chSugxYUvZrI.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGCSmqwacqdrKvbQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIWzD-0qpwxpaWvjeD0X88SAOeauXE-pQGOyYw2fw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGfS-qwacqdrKvbQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGGS6qwacqdrKvbQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasfcZhSugxYUvZrI.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Source Serif Pro" + }, + { + "src": "http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGISyqwacqdrKvbQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Source Serif Pro" + } + ] + }, + { + "name": "Space Grotesk", + "fontFamily": "Space Grotesk, sans-serif", + "slug": "wp-font-lib-space-grotesk", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsjNsFjTDJK.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsjNsFjTDJK.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsjNsFjTDJK.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksjNsFjTDJK.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + }, + { + "src": "http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksjNsFjTDJK.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Space Grotesk" + } + ] + }, + { + "name": "Space Mono", + "fontFamily": "Space Mono, monospace", + "slug": "wp-font-lib-space-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Space Mono" + }, + { + "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Space Mono" + }, + { + "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Space Mono" + }, + { + "src": "http://fonts.gstatic.com/s/spacemono/v12/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Space Mono" + } + ] + }, + { + "name": "Special Elite", + "fontFamily": "Special Elite, system-ui", + "slug": "wp-font-lib-special-elite", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Special Elite" + } + ] + }, + { + "name": "Spectral", + "fontFamily": "Spectral, serif", + "slug": "wp-font-lib-spectral", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Spectral" + }, + { + "src": "http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Spectral" + } + ] + }, + { + "name": "Spectral SC", + "fontFamily": "Spectral SC, serif", + "slug": "wp-font-lib-spectral-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Spectral SC" + }, + { + "src": "http://fonts.gstatic.com/s/spectralsc/v12/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Spectral SC" + } + ] + }, + { + "name": "Spicy Rice", + "fontFamily": "Spicy Rice, system-ui", + "slug": "wp-font-lib-spicy-rice", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spicyrice/v21/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spicy Rice" + } + ] + }, + { + "name": "Spinnaker", + "fontFamily": "Spinnaker, sans-serif", + "slug": "wp-font-lib-spinnaker", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spinnaker/v17/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spinnaker" + } + ] + }, + { + "name": "Spirax", + "fontFamily": "Spirax, system-ui", + "slug": "wp-font-lib-spirax", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3cXktt-Csn-Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spirax" + } + ] + }, + { + "name": "Splash", + "fontFamily": "Splash, cursive", + "slug": "wp-font-lib-splash", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/splash/v2/KtksAL2RZoDkbU6hpPPGNdS6wg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Splash" + } + ] + }, + { + "name": "Spline Sans", + "fontFamily": "Spline Sans, sans-serif", + "slug": "wp-font-lib-spline-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpZlnYEtvlUfE2kw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + }, + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnYEtvlUfE2kw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + }, + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpClnYEtvlUfE2kw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + }, + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp5l7YEtvlUfE2kw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + }, + { + "src": "http://fonts.gstatic.com/s/splinesans/v9/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp317YEtvlUfE2kw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Spline Sans" + } + ] + }, + { + "name": "Spline Sans Mono", + "fontFamily": "Spline Sans Mono, monospace", + "slug": "wp-font-lib-spline-sans-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGA8MrtVy4d4dGb1.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBiMrtVy4d4dGb1.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBQMrtVy4d4dGb1.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGC8NbtVy4d4dGb1.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGCFNbtVy4d4dGb1.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcQ0WwYNacXb12MM.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcVMWwYNacXb12MM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcWEWwYNacXb12MM.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcY0RwYNacXb12MM.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + }, + { + "src": "http://fonts.gstatic.com/s/splinesansmono/v8/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcbQRwYNacXb12MM.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Spline Sans Mono" + } + ] + }, + { + "name": "Squada One", + "fontFamily": "Squada One, system-ui", + "slug": "wp-font-lib-squada-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/squadaone/v14/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Squada One" + } + ] + }, + { + "name": "Square Peg", + "fontFamily": "Square Peg, cursive", + "slug": "wp-font-lib-square-peg", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/squarepeg/v2/y83eW48Nzw6ZlUHc-phrBDHrHHfrFPE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Square Peg" + } + ] + }, + { + "name": "Sree Krushnadevaraya", + "fontFamily": "Sree Krushnadevaraya, serif", + "slug": "wp-font-lib-sree-krushnadevaraya", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sreekrushnadevaraya/v21/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sree Krushnadevaraya" + } + ] + }, + { + "name": "Sriracha", + "fontFamily": "Sriracha, cursive", + "slug": "wp-font-lib-sriracha", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sriracha/v11/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sriracha" + } + ] + }, + { + "name": "Srisakdi", + "fontFamily": "Srisakdi, system-ui", + "slug": "wp-font-lib-srisakdi", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/srisakdi/v16/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Srisakdi" + }, + { + "src": "http://fonts.gstatic.com/s/srisakdi/v16/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Srisakdi" + } + ] + }, + { + "name": "Staatliches", + "fontFamily": "Staatliches, system-ui", + "slug": "wp-font-lib-staatliches", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/staatliches/v11/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Staatliches" + } + ] + }, + { + "name": "Stalemate", + "fontFamily": "Stalemate, cursive", + "slug": "wp-font-lib-stalemate", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stalemate/v20/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stalemate" + } + ] + }, + { + "name": "Stalinist One", + "fontFamily": "Stalinist One, system-ui", + "slug": "wp-font-lib-stalinist-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stalinistone/v54/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stalinist One" + } + ] + }, + { + "name": "Stardos Stencil", + "fontFamily": "Stardos Stencil, system-ui", + "slug": "wp-font-lib-stardos-stencil", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stardos Stencil" + }, + { + "src": "http://fonts.gstatic.com/s/stardosstencil/v15/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Stardos Stencil" + } + ] + }, + { + "name": "Stick", + "fontFamily": "Stick, sans-serif", + "slug": "wp-font-lib-stick", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stick/v15/Qw3TZQpMCyTtJSvfvPVDMPoF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stick" + } + ] + }, + { + "name": "Stick No Bills", + "fontFamily": "Stick No Bills, sans-serif", + "slug": "wp-font-lib-stick-no-bills", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8Q7KriwKhcTKA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcV4cQ7KriwKhcTKA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8Q7KriwKhcTKA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVjcQ7KriwKhcTKA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVYcM7KriwKhcTKA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVWMM7KriwKhcTKA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + }, + { + "src": "http://fonts.gstatic.com/s/sticknobills/v9/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8M7KriwKhcTKA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Stick No Bills" + } + ] + }, + { + "name": "Stint Ultra Condensed", + "fontFamily": "Stint Ultra Condensed, system-ui", + "slug": "wp-font-lib-stint-ultra-condensed", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stintultracondensed/v21/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stint Ultra Condensed" + } + ] + }, + { + "name": "Stint Ultra Expanded", + "fontFamily": "Stint Ultra Expanded, system-ui", + "slug": "wp-font-lib-stint-ultra-expanded", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stintultraexpanded/v20/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stint Ultra Expanded" + } + ] + }, + { + "name": "Stoke", + "fontFamily": "Stoke, serif", + "slug": "wp-font-lib-stoke", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stoke/v22/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Stoke" + }, + { + "src": "http://fonts.gstatic.com/s/stoke/v22/z7NadRb7aTMfKONpfihK1YTV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stoke" + } + ] + }, + { + "name": "Strait", + "fontFamily": "Strait, sans-serif", + "slug": "wp-font-lib-strait", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/strait/v15/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Strait" + } + ] + }, + { + "name": "Style Script", + "fontFamily": "Style Script, cursive", + "slug": "wp-font-lib-style-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stylescript/v8/vm8xdRX3SV7Z0aPa88xzW5npeFT76NZnMw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Style Script" + } + ] + }, + { + "name": "Stylish", + "fontFamily": "Stylish, sans-serif", + "slug": "wp-font-lib-stylish", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/stylish/v20/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Stylish" + } + ] + }, + { + "name": "Sue Ellen Francisco", + "fontFamily": "Sue Ellen Francisco, cursive", + "slug": "wp-font-lib-sue-ellen-francisco", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sueellenfrancisco/v16/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sue Ellen Francisco" + } + ] + }, + { + "name": "Suez One", + "fontFamily": "Suez One, serif", + "slug": "wp-font-lib-suez-one", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/suezone/v11/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Suez One" + } + ] + }, + { + "name": "Sulphur Point", + "fontFamily": "Sulphur Point, sans-serif", + "slug": "wp-font-lib-sulphur-point", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afVU6n6kFUHPIFaU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sulphur Point" + }, + { + "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sulphur Point" + }, + { + "src": "http://fonts.gstatic.com/s/sulphurpoint/v15/RLpkK5vv8KaycDcazWFPBj2afUU9n6kFUHPIFaU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sulphur Point" + } + ] + }, + { + "name": "Sumana", + "fontFamily": "Sumana, serif", + "slug": "wp-font-lib-sumana", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sumana/v10/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sumana" + }, + { + "src": "http://fonts.gstatic.com/s/sumana/v10/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sumana" + } + ] + }, + { + "name": "Sunflower", + "fontFamily": "Sunflower, sans-serif", + "slug": "wp-font-lib-sunflower", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Sunflower" + }, + { + "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Sunflower" + }, + { + "src": "http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sunflower" + } + ] + }, + { + "name": "Sunshiney", + "fontFamily": "Sunshiney, cursive", + "slug": "wp-font-lib-sunshiney", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sunshiney" + } + ] + }, + { + "name": "Supermercado One", + "fontFamily": "Supermercado One, system-ui", + "slug": "wp-font-lib-supermercado-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/supermercadoone/v22/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Supermercado One" + } + ] + }, + { + "name": "Sura", + "fontFamily": "Sura, serif", + "slug": "wp-font-lib-sura", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/sura/v16/SZc23FL5PbyzFf5UWzXtjUM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Sura" + }, + { + "src": "http://fonts.gstatic.com/s/sura/v16/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Sura" + } + ] + }, + { + "name": "Suranna", + "fontFamily": "Suranna, serif", + "slug": "wp-font-lib-suranna", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/suranna/v13/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Suranna" + } + ] + }, + { + "name": "Suravaram", + "fontFamily": "Suravaram, serif", + "slug": "wp-font-lib-suravaram", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/suravaram/v21/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Suravaram" + } + ] + }, + { + "name": "Suwannaphum", + "fontFamily": "Suwannaphum, serif", + "slug": "wp-font-lib-suwannaphum", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnAgHV7GtDvc8jbe8hXXL3B9cSWXx2VZmk.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + }, + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0J1-S8cRGcf3Ai.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + }, + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + }, + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0Z0OS8cRGcf3Ai.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + }, + { + "src": "http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0h0uS8cRGcf3Ai.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Suwannaphum" + } + ] + }, + { + "name": "Swanky and Moo Moo", + "fontFamily": "Swanky and Moo Moo, cursive", + "slug": "wp-font-lib-swanky-and-moo-moo", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/swankyandmoomoo/v22/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Swanky and Moo Moo" + } + ] + }, + { + "name": "Syncopate", + "fontFamily": "Syncopate, sans-serif", + "slug": "wp-font-lib-syncopate", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/syncopate/v19/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Syncopate" + }, + { + "src": "http://fonts.gstatic.com/s/syncopate/v19/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Syncopate" + } + ] + }, + { + "name": "Syne", + "fontFamily": "Syne, sans-serif", + "slug": "wp-font-lib-syne", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6kR47NCV5Z.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Syne" + }, + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6kR47NCV5Z.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Syne" + }, + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Syne" + }, + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Syne" + }, + { + "src": "http://fonts.gstatic.com/s/syne/v16/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6kR47NCV5Z.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Syne" + } + ] + }, + { + "name": "Syne Mono", + "fontFamily": "Syne Mono, monospace", + "slug": "wp-font-lib-syne-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/synemono/v15/K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Syne Mono" + } + ] + }, + { + "name": "Syne Tactile", + "fontFamily": "Syne Tactile, system-ui", + "slug": "wp-font-lib-syne-tactile", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/synetactile/v15/11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Syne Tactile" + } + ] + }, + { + "name": "Tai Heritage Pro", + "fontFamily": "Tai Heritage Pro, serif", + "slug": "wp-font-lib-tai-heritage-pro", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/taiheritagepro/v6/sZlfdQid-zgaNiNIYcUzJMU3IYyNoHxSENxuLuE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tai Heritage Pro" + }, + { + "src": "http://fonts.gstatic.com/s/taiheritagepro/v6/sZlYdQid-zgaNiNIYcUzJMU3IYyNmMB9NNRFMuhjCXY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tai Heritage Pro" + } + ] + }, + { + "name": "Tajawal", + "fontFamily": "Tajawal, sans-serif", + "slug": "wp-font-lib-tajawal", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Tajawal" + }, + { + "src": "http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Tajawal" + } + ] + }, + { + "name": "Tangerine", + "fontFamily": "Tangerine, cursive", + "slug": "wp-font-lib-tangerine", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tangerine" + }, + { + "src": "http://fonts.gstatic.com/s/tangerine/v17/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tangerine" + } + ] + }, + { + "name": "Tapestry", + "fontFamily": "Tapestry, cursive", + "slug": "wp-font-lib-tapestry", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tapestry/v2/SlGTmQecrosEYXhaGBIkqnB6aSQU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tapestry" + } + ] + }, + { + "name": "Taprom", + "fontFamily": "Taprom, system-ui", + "slug": "wp-font-lib-taprom", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/taprom/v27/UcCn3F82JHycULbFQyk3-0kvHg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Taprom" + } + ] + }, + { + "name": "Tauri", + "fontFamily": "Tauri, sans-serif", + "slug": "wp-font-lib-tauri", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tauri/v16/TwMA-IISS0AM3IpVWHU_TBqO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tauri" + } + ] + }, + { + "name": "Taviraj", + "fontFamily": "Taviraj, serif", + "slug": "wp-font-lib-taviraj", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Taviraj" + }, + { + "src": "http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Taviraj" + } + ] + }, + { + "name": "Teko", + "fontFamily": "Teko, sans-serif", + "slug": "wp-font-lib-teko", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Teko" + }, + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjNdG7kmE0gTaR3pCtBtVs.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Teko" + }, + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Teko" + }, + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Teko" + }, + { + "src": "http://fonts.gstatic.com/s/teko/v16/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Teko" + } + ] + }, + { + "name": "Telex", + "fontFamily": "Telex, sans-serif", + "slug": "wp-font-lib-telex", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/telex/v17/ieVw2Y1fKWmIO9fTB1piKFIf.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Telex" + } + ] + }, + { + "name": "Tenali Ramakrishna", + "fontFamily": "Tenali Ramakrishna, sans-serif", + "slug": "wp-font-lib-tenali-ramakrishna", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tenaliramakrishna/v12/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tenali Ramakrishna" + } + ] + }, + { + "name": "Tenor Sans", + "fontFamily": "Tenor Sans, sans-serif", + "slug": "wp-font-lib-tenor-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tenorsans/v17/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tenor Sans" + } + ] + }, + { + "name": "Text Me One", + "fontFamily": "Text Me One, sans-serif", + "slug": "wp-font-lib-text-me-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/textmeone/v21/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Text Me One" + } + ] + }, + { + "name": "Texturina", + "fontFamily": "Texturina, serif", + "slug": "wp-font-lib-texturina", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYG_Ug25riW1OD.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYGvUg25riW1OD.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2fGGvUg25riW1OD.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGvUg25riW1OD.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eqGvUg25riW1OD.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2dGHfUg25riW1OD.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2d_HfUg25riW1OD.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYHfUg25riW1OD.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cxHfUg25riW1OD.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1i0Z7AXkODN94.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1j0Z7AXkODN94.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWUNj0Z7AXkODN94.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1j0Z7AXkODN94.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWS9j0Z7AXkODN94.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWcNk0Z7AXkODN94.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWfpk0Z7AXkODN94.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1k0Z7AXkODN94.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Texturina" + }, + { + "src": "http://fonts.gstatic.com/s/texturina/v22/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWbRk0Z7AXkODN94.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Texturina" + } + ] + }, + { + "name": "Thasadith", + "fontFamily": "Thasadith, sans-serif", + "slug": "wp-font-lib-thasadith", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Thasadith" + }, + { + "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Thasadith" + }, + { + "src": "http://fonts.gstatic.com/s/thasadith/v9/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Thasadith" + }, + { + "src": "http://fonts.gstatic.com/s/thasadith/v9/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Thasadith" + } + ] + }, + { + "name": "The Girl Next Door", + "fontFamily": "The Girl Next Door, cursive", + "slug": "wp-font-lib-the-girl-next-door", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/thegirlnextdoor/v18/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "The Girl Next Door" + } + ] + }, + { + "name": "The Nautigal", + "fontFamily": "The Nautigal, cursive", + "slug": "wp-font-lib-the-nautigal", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/thenautigal/v3/VdGZAZ8ZH51Lvng9fQV2bfKr5wVk09Se5Q.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "The Nautigal" + }, + { + "src": "http://fonts.gstatic.com/s/thenautigal/v3/VdGGAZ8ZH51Lvng9fQV2bfKTWypA2_-C7LoS7g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "The Nautigal" + } + ] + }, + { + "name": "Tienne", + "fontFamily": "Tienne, serif", + "slug": "wp-font-lib-tienne", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tienne" + }, + { + "src": "http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tienne" + }, + { + "src": "http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Tienne" + } + ] + }, + { + "name": "Tillana", + "fontFamily": "Tillana, cursive", + "slug": "wp-font-lib-tillana", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tillana" + }, + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Tillana" + }, + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Tillana" + }, + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tillana" + }, + { + "src": "http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Tillana" + } + ] + }, + { + "name": "Tilt Neon", + "fontFamily": "Tilt Neon, system-ui", + "slug": "wp-font-lib-tilt-neon", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tiltneon/v8/E21L_d7gguXdwD9LEFY2WCeElCNtd-eBqpHp1TzrkJSmwpj5ndxquXK9WualJ9DS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tilt Neon" + } + ] + }, + { + "name": "Tilt Prism", + "fontFamily": "Tilt Prism, system-ui", + "slug": "wp-font-lib-tilt-prism", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tiltprism/v9/5h11iZgyPHoZ3YikNzWGfWey2dCAZXT-bH9V4VGn-FJ7tLI25oc_rIbwoTSrn86NKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tilt Prism" + } + ] + }, + { + "name": "Tilt Warp", + "fontFamily": "Tilt Warp, system-ui", + "slug": "wp-font-lib-tilt-warp", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tiltwarp/v10/AlZc_zVDs5XpmO7yn3w7flUoytXJp3z29uEwmEMLEJljLXvT8UJSZTBxAVfMGOPb.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tilt Warp" + } + ] + }, + { + "name": "Timmana", + "fontFamily": "Timmana, sans-serif", + "slug": "wp-font-lib-timmana", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/timmana/v12/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Timmana" + } + ] + }, + { + "name": "Tinos", + "fontFamily": "Tinos, serif", + "slug": "wp-font-lib-tinos", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwgX8dGVh8TI-.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tinos" + }, + { + "src": "http://fonts.gstatic.com/s/tinos/v24/buE2poGnedXvwjX-fmFD9CI-4NU.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tinos" + }, + { + "src": "http://fonts.gstatic.com/s/tinos/v24/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tinos" + }, + { + "src": "http://fonts.gstatic.com/s/tinos/v24/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Tinos" + } + ] + }, + { + "name": "Tiro Bangla", + "fontFamily": "Tiro Bangla, serif", + "slug": "wp-font-lib-tiro-bangla", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirobangla/v6/IFSgHe1Tm95E3O8b5i2V8MG9-UPeuz4i.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Bangla" + }, + { + "src": "http://fonts.gstatic.com/s/tirobangla/v6/IFSiHe1Tm95E3O8b5i2V8PG_80f8vi4imBM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Bangla" + } + ] + }, + { + "name": "Tiro Devanagari Hindi", + "fontFamily": "Tiro Devanagari Hindi, serif", + "slug": "wp-font-lib-tiro-devanagari-hindi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9fSOkOfG0Y3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Devanagari Hindi" + }, + { + "src": "http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55x8ezN7P8T4e0_CfIJrwdodg9HoYw0i-M9vSuMKXmgI3F_o.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Devanagari Hindi" + } + ] + }, + { + "name": "Tiro Devanagari Marathi", + "fontFamily": "Tiro Devanagari Marathi, serif", + "slug": "wp-font-lib-tiro-devanagari-marathi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkotDrDJYM2lAZ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Devanagari Marathi" + }, + { + "src": "http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1zPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkouDpBpIu30AZbUY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Devanagari Marathi" + } + ] + }, + { + "name": "Tiro Devanagari Sanskrit", + "fontFamily": "Tiro Devanagari Sanskrit, serif", + "slug": "wp-font-lib-tiro-devanagari-sanskrit", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59pEoEqgtOh0w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Devanagari Sanskrit" + }, + { + "src": "http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoGzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59ZEIsuoNax06MM.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Devanagari Sanskrit" + } + ] + }, + { + "name": "Tiro Gurmukhi", + "fontFamily": "Tiro Gurmukhi, serif", + "slug": "wp-font-lib-tiro-gurmukhi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3dmckXSYq-Uqjc048JUF7Jvly7HAQsyA2Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Gurmukhi" + }, + { + "src": "http://fonts.gstatic.com/s/tirogurmukhi/v6/x3d4ckXSYq-Uqjc048JUF7JvpyzNBSk3E2YljQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Gurmukhi" + } + ] + }, + { + "name": "Tiro Kannada", + "fontFamily": "Tiro Kannada, serif", + "slug": "wp-font-lib-tiro-kannada", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirokannada/v6/CSR44ztKmvqaDxEDJFY7CIYKSPl6tOU9Eg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Kannada" + }, + { + "src": "http://fonts.gstatic.com/s/tirokannada/v6/CSRm4ztKmvqaDxEDJFY7CIY6SvN-luAtEnKp.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Kannada" + } + ] + }, + { + "name": "Tiro Tamil", + "fontFamily": "Tiro Tamil, serif", + "slug": "wp-font-lib-tiro-tamil", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirotamil/v10/m8JXjfVIf7OT22n3M-S_ULRvamODxdI.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Tamil" + }, + { + "src": "http://fonts.gstatic.com/s/tirotamil/v10/m8JVjfVIf7OT22n3M-S_YLZlbkGG1dKEDw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Tamil" + } + ] + }, + { + "name": "Tiro Telugu", + "fontFamily": "Tiro Telugu, serif", + "slug": "wp-font-lib-tiro-telugu", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTQ7PxlZWk2EPiSymjXdKSNQqn0X0BO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tiro Telugu" + }, + { + "src": "http://fonts.gstatic.com/s/tirotelugu/v7/aFTS7PxlZWk2EPiSymjXdJSPSK3WWlBOoas.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tiro Telugu" + } + ] + }, + { + "name": "Titan One", + "fontFamily": "Titan One, system-ui", + "slug": "wp-font-lib-titan-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/titanone/v13/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Titan One" + } + ] + }, + { + "name": "Titillium Web", + "fontFamily": "Titillium Web, sans-serif", + "slug": "wp-font-lib-titillium-web", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Titillium Web" + }, + { + "src": "http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Titillium Web" + } + ] + }, + { + "name": "Tomorrow", + "fontFamily": "Tomorrow, sans-serif", + "slug": "wp-font-lib-tomorrow", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgR2xe2XiKMiokE4.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLirETNbFtZCeGqgRXXQwHoLOqtgE5h0A.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0dWkXIBsShiVd4.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ63JDMCDjEd4yVY.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR15WUXIBsShiVd4.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8nKDMCDjEd4yVY.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgRXXe2XiKMiokE4.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0hWEXIBsShiVd4.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ5HLDMCDjEd4yVY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0NX0XIBsShiVd4.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ73MDMCDjEd4yVY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1pXkXIBsShiVd4.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ9nNDMCDjEd4yVY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR11XUXIBsShiVd4.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8XODMCDjEd4yVY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1RXEXIBsShiVd4.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Tomorrow" + }, + { + "src": "http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ-HPDMCDjEd4yVY.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Tomorrow" + } + ] + }, + { + "name": "Tourney", + "fontFamily": "Tourney, system-ui", + "slug": "wp-font-lib-tourney", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQByZTp1I1LcGA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQFyZTp1I1LcGA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GZwFyZTp1I1LcGA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFyZTp1I1LcGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GCwFyZTp1I1LcGA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G5wZyZTp1I1LcGA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G3gZyZTp1I1LcGA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQZyZTp1I1LcGA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GkAZyZTp1I1LcGA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJzBxAVfMGOPb.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaJjBxAVfMGOPb.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8ULEJjBxAVfMGOPb.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJjBxAVfMGOPb.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKoJjBxAVfMGOPb.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJEITBxAVfMGOPb.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJ9ITBxAVfMGOPb.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaITBxAVfMGOPb.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Tourney" + }, + { + "src": "http://fonts.gstatic.com/s/tourney/v11/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIzITBxAVfMGOPb.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Tourney" + } + ] + }, + { + "name": "Trade Winds", + "fontFamily": "Trade Winds, system-ui", + "slug": "wp-font-lib-trade-winds", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tradewinds/v17/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trade Winds" + } + ] + }, + { + "name": "Train One", + "fontFamily": "Train One, system-ui", + "slug": "wp-font-lib-train-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trainone/v13/gyB-hwkiNtc6KnxUVjWHOqbZRY7JVQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Train One" + } + ] + }, + { + "name": "Trirong", + "fontFamily": "Trirong, serif", + "slug": "wp-font-lib-trirong", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Trirong" + }, + { + "src": "http://fonts.gstatic.com/s/trirong/v12/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Trirong" + } + ] + }, + { + "name": "Trispace", + "fontFamily": "Trispace, sans-serif", + "slug": "wp-font-lib-trispace", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9qoQl0zHugpt0.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9roQl0zHugpt0.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbCFroQl0zHugpt0.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9roQl0zHugpt0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbE1roQl0zHugpt0.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbKFsoQl0zHugpt0.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbJhsoQl0zHugpt0.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Trispace" + }, + { + "src": "http://fonts.gstatic.com/s/trispace/v22/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9soQl0zHugpt0.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Trispace" + } + ] + }, + { + "name": "Trocchi", + "fontFamily": "Trocchi, serif", + "slug": "wp-font-lib-trocchi", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trocchi/v15/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trocchi" + } + ] + }, + { + "name": "Trochut", + "fontFamily": "Trochut, system-ui", + "slug": "wp-font-lib-trochut", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trochut/v20/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trochut" + }, + { + "src": "http://fonts.gstatic.com/s/trochut/v20/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Trochut" + }, + { + "src": "http://fonts.gstatic.com/s/trochut/v20/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Trochut" + } + ] + }, + { + "name": "Truculenta", + "fontFamily": "Truculenta, sans-serif", + "slug": "wp-font-lib-truculenta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAjswcFHnJMMhg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAiswcFHnJMMhg.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMg4iswcFHnJMMhg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAiswcFHnJMMhg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMmIiswcFHnJMMhg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMo4lswcFHnJMMhg.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMrclswcFHnJMMhg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAlswcFHnJMMhg.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Truculenta" + }, + { + "src": "http://fonts.gstatic.com/s/truculenta/v22/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMvklswcFHnJMMhg.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Truculenta" + } + ] + }, + { + "name": "Trykker", + "fontFamily": "Trykker, serif", + "slug": "wp-font-lib-trykker", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPzhNnoOd2j22U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Trykker" + } + ] + }, + { + "name": "Tsukimi Rounded", + "fontFamily": "Tsukimi Rounded, sans-serif", + "slug": "wp-font-lib-tsukimi-rounded", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoZ3LJNksWZO0LvnZwkF3HtoB7VkVsqN7MT3T9X8g.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Tsukimi Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoc3LJNksWZO0LvnZwkF3HtoB7tPXMOP5gP1A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tsukimi Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoZ3LJNksWZO0LvnZwkF3HtoB7VyVoqN7MT3T9X8g.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Tsukimi Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoZ3LJNksWZO0LvnZwkF3HtoB7V5V0qN7MT3T9X8g.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Tsukimi Rounded" + }, + { + "src": "http://fonts.gstatic.com/s/tsukimirounded/v8/sJoZ3LJNksWZO0LvnZwkF3HtoB7VgVwqN7MT3T9X8g.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Tsukimi Rounded" + } + ] + }, + { + "name": "Tulpen One", + "fontFamily": "Tulpen One, system-ui", + "slug": "wp-font-lib-tulpen-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/tulpenone/v21/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Tulpen One" + } + ] + }, + { + "name": "Turret Road", + "fontFamily": "Turret Road, system-ui", + "slug": "wp-font-lib-turret-road", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Turret Road" + }, + { + "src": "http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Turret Road" + } + ] + }, + { + "name": "Twinkle Star", + "fontFamily": "Twinkle Star, cursive", + "slug": "wp-font-lib-twinkle-star", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/twinklestar/v3/pe0pMI6IL4dPoFl9LGEmY6WaA_Rue1UwVg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Twinkle Star" + } + ] + }, + { + "name": "Ubuntu", + "fontFamily": "Ubuntu, sans-serif", + "slug": "wp-font-lib-ubuntu", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ubuntu" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Ubuntu" + } + ] + }, + { + "name": "Ubuntu Condensed", + "fontFamily": "Ubuntu Condensed, sans-serif", + "slug": "wp-font-lib-ubuntu-condensed", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ubuntu Condensed" + } + ] + }, + { + "name": "Ubuntu Mono", + "fontFamily": "Ubuntu Mono, monospace", + "slug": "wp-font-lib-ubuntu-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ubuntu Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ubuntu Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ubuntu Mono" + }, + { + "src": "http://fonts.gstatic.com/s/ubuntumono/v15/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Ubuntu Mono" + } + ] + }, + { + "name": "Uchen", + "fontFamily": "Uchen, serif", + "slug": "wp-font-lib-uchen", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/uchen/v7/nKKZ-GokGZ1baIaSEQGodLxA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Uchen" + } + ] + }, + { + "name": "Ultra", + "fontFamily": "Ultra, serif", + "slug": "wp-font-lib-ultra", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ultra/v19/zOLy4prXmrtY-tT6yLOD6NxF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ultra" + } + ] + }, + { + "name": "Unbounded", + "fontFamily": "Unbounded, system-ui", + "slug": "wp-font-lib-unbounded", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65jx043HgP6LR0Y.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG60bx043HgP6LR0Y.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx043HgP6LR0Y.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx043HgP6LR0Y.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG68b2043HgP6LR0Y.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6__2043HgP6LR0Y.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65j2043HgP6LR0Y.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Unbounded" + }, + { + "src": "http://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG67H2043HgP6LR0Y.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Unbounded" + } + ] + }, + { + "name": "Uncial Antiqua", + "fontFamily": "Uncial Antiqua, system-ui", + "slug": "wp-font-lib-uncial-antiqua", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/uncialantiqua/v20/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Uncial Antiqua" + } + ] + }, + { + "name": "Underdog", + "fontFamily": "Underdog, system-ui", + "slug": "wp-font-lib-underdog", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/underdog/v23/CHygV-jCElj7diMroVSiU14GN2Il.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Underdog" + } + ] + }, + { + "name": "Unica One", + "fontFamily": "Unica One, system-ui", + "slug": "wp-font-lib-unica-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unicaone/v15/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unica One" + } + ] + }, + { + "name": "UnifrakturCook", + "fontFamily": "UnifrakturCook, system-ui", + "slug": "wp-font-lib-unifrakturcook", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unifrakturcook/v19/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "UnifrakturCook" + } + ] + }, + { + "name": "UnifrakturMaguntia", + "fontFamily": "UnifrakturMaguntia, system-ui", + "slug": "wp-font-lib-unifrakturmaguntia", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unifrakturmaguntia/v16/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "UnifrakturMaguntia" + } + ] + }, + { + "name": "Unkempt", + "fontFamily": "Unkempt, system-ui", + "slug": "wp-font-lib-unkempt", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unkempt/v19/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unkempt" + }, + { + "src": "http://fonts.gstatic.com/s/unkempt/v19/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Unkempt" + } + ] + }, + { + "name": "Unlock", + "fontFamily": "Unlock, system-ui", + "slug": "wp-font-lib-unlock", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unlock/v24/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unlock" + } + ] + }, + { + "name": "Unna", + "fontFamily": "Unna, serif", + "slug": "wp-font-lib-unna", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/unna/v21/AYCEpXzofN0NCpgBlGHCWFM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Unna" + }, + { + "src": "http://fonts.gstatic.com/s/unna/v21/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Unna" + }, + { + "src": "http://fonts.gstatic.com/s/unna/v21/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Unna" + }, + { + "src": "http://fonts.gstatic.com/s/unna/v21/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Unna" + } + ] + }, + { + "name": "Updock", + "fontFamily": "Updock, cursive", + "slug": "wp-font-lib-updock", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/updock/v2/nuF4D_3dVZ70UI9SjLK3602XBw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Updock" + } + ] + }, + { + "name": "Urbanist", + "fontFamily": "Urbanist, sans-serif", + "slug": "wp-font-lib-urbanist", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx8fFpOrS8SlKw.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSx4fFpOrS8SlKw.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDlR4fFpOrS8SlKw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fFpOrS8SlKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fFpOrS8SlKw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFpOrS8SlKw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfFpOrS8SlKw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSxkfFpOrS8SlKw.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfFpOrS8SlKw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VJmvacG1K4S1.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113VZmvacG1K4S1.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA12pVZmvacG1K4S1.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VZmvacG1K4S1.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA13FVZmvacG1K4S1.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10pUpmvacG1K4S1.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmvacG1K4S1.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113UpmvacG1K4S1.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Urbanist" + }, + { + "src": "http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmvacG1K4S1.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Urbanist" + } + ] + }, + { + "name": "VT323", + "fontFamily": "VT323, monospace", + "slug": "wp-font-lib-vt323", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2hsYHpT2dkNE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "VT323" + } + ] + }, + { + "name": "Vampiro One", + "fontFamily": "Vampiro One, system-ui", + "slug": "wp-font-lib-vampiro-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vampiro One" + } + ] + }, + { + "name": "Varela", + "fontFamily": "Varela, sans-serif", + "slug": "wp-font-lib-varela", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Varela" + } + ] + }, + { + "name": "Varela Round", + "fontFamily": "Varela Round, sans-serif", + "slug": "wp-font-lib-varela-round", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/varelaround/v20/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Varela Round" + } + ] + }, + { + "name": "Varta", + "fontFamily": "Varta, sans-serif", + "slug": "wp-font-lib-varta", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x96j4EirE-9PGLfQ.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Varta" + }, + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD4EirE-9PGLfQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Varta" + }, + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9hj4EirE-9PGLfQ.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Varta" + }, + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9ajkEirE-9PGLfQ.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Varta" + }, + { + "src": "http://fonts.gstatic.com/s/varta/v21/Qw3AZQpJHj_6LzHUngWbrFkDH1x9UzkEirE-9PGLfQ.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Varta" + } + ] + }, + { + "name": "Vast Shadow", + "fontFamily": "Vast Shadow, system-ui", + "slug": "wp-font-lib-vast-shadow", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vastshadow/v15/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vast Shadow" + } + ] + }, + { + "name": "Vazirmatn", + "fontFamily": "Vazirmatn, sans-serif", + "slug": "wp-font-lib-vazirmatn", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgyOReZ72DF_QY.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklegzOReZ72DF_QY.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklTYzOReZ72DF_QY.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgzOReZ72DF_QY.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklVozOReZ72DF_QY.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklbY0OReZ72DF_QY.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklY80OReZ72DF_QY.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRkleg0OReZ72DF_QY.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + }, + { + "src": "http://fonts.gstatic.com/s/vazirmatn/v13/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklcE0OReZ72DF_QY.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Vazirmatn" + } + ] + }, + { + "name": "Vesper Libre", + "fontFamily": "Vesper Libre, serif", + "slug": "wp-font-lib-vesper-libre", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vesper Libre" + }, + { + "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Vesper Libre" + }, + { + "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Vesper Libre" + }, + { + "src": "http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Vesper Libre" + } + ] + }, + { + "name": "Viaoda Libre", + "fontFamily": "Viaoda Libre, system-ui", + "slug": "wp-font-lib-viaoda-libre", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/viaodalibre/v15/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Viaoda Libre" + } + ] + }, + { + "name": "Vibes", + "fontFamily": "Vibes, system-ui", + "slug": "wp-font-lib-vibes", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vibes/v14/QdVYSTsmIB6tmbd3HpbsuBlh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vibes" + } + ] + }, + { + "name": "Vibur", + "fontFamily": "Vibur, cursive", + "slug": "wp-font-lib-vibur", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vibur" + } + ] + }, + { + "name": "Vidaloka", + "fontFamily": "Vidaloka, serif", + "slug": "wp-font-lib-vidaloka", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEass8yn4hnCci.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vidaloka" + } + ] + }, + { + "name": "Viga", + "fontFamily": "Viga, sans-serif", + "slug": "wp-font-lib-viga", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiX_QIjD4e2OX8.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Viga" + } + ] + }, + { + "name": "Vina Sans", + "fontFamily": "Vina Sans, system-ui", + "slug": "wp-font-lib-vina-sans", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vinasans/v2/m8JQjfZKf6-d2273MP7zcJ5BZmqa3A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vina Sans" + } + ] + }, + { + "name": "Voces", + "fontFamily": "Voces, system-ui", + "slug": "wp-font-lib-voces", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/voces/v20/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Voces" + } + ] + }, + { + "name": "Volkhov", + "fontFamily": "Volkhov, serif", + "slug": "wp-font-lib-volkhov", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Volkhov" + }, + { + "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Volkhov" + }, + { + "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Volkhov" + }, + { + "src": "http://fonts.gstatic.com/s/volkhov/v17/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Volkhov" + } + ] + }, + { + "name": "Vollkorn", + "fontFamily": "Vollkorn, serif", + "slug": "wp-font-lib-vollkorn", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuGWOdEbD63w.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuGWOdEbD63w.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauGWOdEbD63w.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auGWOdEbD63w.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauGWOdEbD63w.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauGWOdEbD63w.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmZM7Xq34g9.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmZM7Xq34g9.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmZM7Xq34g9.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmZM7Xq34g9.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmZM7Xq34g9.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + }, + { + "src": "http://fonts.gstatic.com/s/vollkorn/v22/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmZM7Xq34g9.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Vollkorn" + } + ] + }, + { + "name": "Vollkorn SC", + "fontFamily": "Vollkorn SC, serif", + "slug": "wp-font-lib-vollkorn-sc", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vollkorn SC" + }, + { + "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Vollkorn SC" + }, + { + "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Vollkorn SC" + }, + { + "src": "http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Vollkorn SC" + } + ] + }, + { + "name": "Voltaire", + "fontFamily": "Voltaire, sans-serif", + "slug": "wp-font-lib-voltaire", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/voltaire/v18/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Voltaire" + } + ] + }, + { + "name": "Vujahday Script", + "fontFamily": "Vujahday Script, cursive", + "slug": "wp-font-lib-vujahday-script", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/vujahdayscript/v4/RWmQoKGA8fEkrIPtSZ3_J7er2dUiDEtvAlaMKw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Vujahday Script" + } + ] + }, + { + "name": "Waiting for the Sunrise", + "fontFamily": "Waiting for the Sunrise, cursive", + "slug": "wp-font-lib-waiting-for-the-sunrise", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/waitingforthesunrise/v16/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Waiting for the Sunrise" + } + ] + }, + { + "name": "Wallpoet", + "fontFamily": "Wallpoet, system-ui", + "slug": "wp-font-lib-wallpoet", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wallpoet/v16/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wallpoet" + } + ] + }, + { + "name": "Walter Turncoat", + "fontFamily": "Walter Turncoat, cursive", + "slug": "wp-font-lib-walter-turncoat", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/walterturncoat/v19/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Walter Turncoat" + } + ] + }, + { + "name": "Warnes", + "fontFamily": "Warnes, system-ui", + "slug": "wp-font-lib-warnes", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/warnes/v25/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Warnes" + } + ] + }, + { + "name": "Water Brush", + "fontFamily": "Water Brush, cursive", + "slug": "wp-font-lib-water-brush", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/waterbrush/v2/AYCPpXPqc8cJWLhp4hywKHJq7PKP5Z_G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Water Brush" + } + ] + }, + { + "name": "Waterfall", + "fontFamily": "Waterfall, cursive", + "slug": "wp-font-lib-waterfall", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/waterfall/v3/MCoRzAfo293fACdFKcwY2rH8D_EZwA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Waterfall" + } + ] + }, + { + "name": "Wellfleet", + "fontFamily": "Wellfleet, system-ui", + "slug": "wp-font-lib-wellfleet", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wellfleet/v20/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wellfleet" + } + ] + }, + { + "name": "Wendy One", + "fontFamily": "Wendy One, sans-serif", + "slug": "wp-font-lib-wendy-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wendyone/v15/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wendy One" + } + ] + }, + { + "name": "Whisper", + "fontFamily": "Whisper, cursive", + "slug": "wp-font-lib-whisper", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/whisper/v2/q5uHsoqtKftx74K9milCBxxdmYU.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Whisper" + } + ] + }, + { + "name": "WindSong", + "fontFamily": "WindSong, cursive", + "slug": "wp-font-lib-windsong", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/windsong/v8/KR1WBsyu-P-GFEW57r95HdG6vjH3.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "WindSong" + }, + { + "src": "http://fonts.gstatic.com/s/windsong/v8/KR1RBsyu-P-GFEW57oeNNPWylS3-jVXm.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "WindSong" + } + ] + }, + { + "name": "Wire One", + "fontFamily": "Wire One, sans-serif", + "slug": "wp-font-lib-wire-one", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wireone/v24/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wire One" + } + ] + }, + { + "name": "Wix Madefor Display", + "fontFamily": "Wix Madefor Display, sans-serif", + "slug": "wp-font-lib-wix-madefor-display", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFhYltkv_3HQKgh.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFTYltkv_3HQKgh.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYG_ZVtkv_3HQKgh.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYGGZVtkv_3HQKgh.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefordisplay/v9/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYHhZVtkv_3HQKgh.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Display" + } + ] + }, + { + "name": "Wix Madefor Text", + "fontFamily": "Wix Madefor Text, sans-serif", + "slug": "wp-font-lib-wix-madefor-text", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cK_NOeFgpRt9rN5.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3dw_GiJBP86N53IY.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cKNNOeFgpRt9rN5.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3dz3GiJBP86N53IY.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cJhM-eFgpRt9rN5.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d9HBiJBP86N53IY.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cJYM-eFgpRt9rN5.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d-jBiJBP86N53IY.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_oXI_oSymQ8Qj-Apx3HGN_Hu1RTCk5FtSDETgf0cI_M-eFgpRt9rN5.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Wix Madefor Text" + }, + { + "src": "http://fonts.gstatic.com/s/wixmadefortext/v12/-W_WXI_oSymQ8Qj-Apx3HGN_Hu1RZiAL6QzqeqKx1td3d4_BiJBP86N53IY.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Wix Madefor Text" + } + ] + }, + { + "name": "Work Sans", + "fontFamily": "Work Sans, sans-serif", + "slug": "wp-font-lib-work-sans", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNigDp6_cOyA.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNigDp6_cOyA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNigDp6_cOyA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNigDp6_cOyA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNigDp6_cOyA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNigDp6_cOyA.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJo43ZKyDSQQ.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJo43ZKyDSQQ.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJo43ZKyDSQQ.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJo43ZKyDSQQ.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJo43ZKyDSQQ.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJo43ZKyDSQQ.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJo43ZKyDSQQ.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJo43ZKyDSQQ.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Work Sans" + }, + { + "src": "http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJo43ZKyDSQQ.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Work Sans" + } + ] + }, + { + "name": "Xanh Mono", + "fontFamily": "Xanh Mono, monospace", + "slug": "wp-font-lib-xanh-mono", + "category": "monospace", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/xanhmono/v17/R70YjykVmvKCep-vWhSYmACQXzLhTg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Xanh Mono" + }, + { + "src": "http://fonts.gstatic.com/s/xanhmono/v17/R70ejykVmvKCep-vWhSomgqUfTfxTo24.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Xanh Mono" + } + ] + }, + { + "name": "Yaldevi", + "fontFamily": "Yaldevi, sans-serif", + "slug": "wp-font-lib-yaldevi", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpfxJzvobxLCBJkS.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpcvJzvobxLCBJkS.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJzvobxLCBJkS.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdDJzvobxLCBJkS.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpevIDvobxLCBJkS.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + }, + { + "src": "http://fonts.gstatic.com/s/yaldevi/v12/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpeWIDvobxLCBJkS.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Yaldevi" + } + ] + }, + { + "name": "Yanone Kaffeesatz", + "fontFamily": "Yanone Kaffeesatz, sans-serif", + "slug": "wp-font-lib-yanone-kaffeesatz", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpcGuLCnXkVA.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpcGuLCnXkVA.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpcGuLCnXkVA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpcGuLCnXkVA.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpcGuLCnXkVA.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + }, + { + "src": "http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpcGuLCnXkVA.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Yanone Kaffeesatz" + } + ] + }, + { + "name": "Yantramanav", + "fontFamily": "Yantramanav, sans-serif", + "slug": "wp-font-lib-yantramanav", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + }, + { + "src": "http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Yantramanav" + } + ] + }, + { + "name": "Yatra One", + "fontFamily": "Yatra One, system-ui", + "slug": "wp-font-lib-yatra-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yatraone/v14/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yatra One" + } + ] + }, + { + "name": "Yellowtail", + "fontFamily": "Yellowtail, cursive", + "slug": "wp-font-lib-yellowtail", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yellowtail/v18/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yellowtail" + } + ] + }, + { + "name": "Yeon Sung", + "fontFamily": "Yeon Sung, system-ui", + "slug": "wp-font-lib-yeon-sung", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yeonsung/v20/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yeon Sung" + } + ] + }, + { + "name": "Yeseva One", + "fontFamily": "Yeseva One, system-ui", + "slug": "wp-font-lib-yeseva-one", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yesevaone/v20/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yeseva One" + } + ] + }, + { + "name": "Yesteryear", + "fontFamily": "Yesteryear, cursive", + "slug": "wp-font-lib-yesteryear", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yesteryear/v14/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yesteryear" + } + ] + }, + { + "name": "Yomogi", + "fontFamily": "Yomogi, cursive", + "slug": "wp-font-lib-yomogi", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yomogi/v8/VuJwdNrS2ZL7rpoPWIz5NIh-YA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yomogi" + } + ] + }, + { + "name": "Yrsa", + "fontFamily": "Yrsa, serif", + "slug": "wp-font-lib-yrsa", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCjASNNV9rRPfrKu.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCieSNNV9rRPfrKu.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCisSNNV9rRPfrKu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaChAT9NV9rRPfrKu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlprgwnQFlxs_wD3CFSMYmFaaCh5T9NV9rRPfrKu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC2UW_LBte6KuGEo.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCzsW_LBte6KuGEo.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WCwkW_LBte6KuGEo.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC-UR_LBte6KuGEo.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Yrsa" + }, + { + "src": "http://fonts.gstatic.com/s/yrsa/v20/wlptgwnQFlxs1QnF94zlCfv0bz1WC9wR_LBte6KuGEo.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Yrsa" + } + ] + }, + { + "name": "Ysabeau", + "fontFamily": "Ysabeau, sans-serif", + "slug": "wp-font-lib-ysabeau", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCTYwI8Gcw6Oi.ttf", + "fontWeight": "100", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWCDYwI8Gcw6Oi.ttf", + "fontWeight": "200", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7PICDYwI8Gcw6Oi.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OWCDYwI8Gcw6Oi.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7OkCDYwI8Gcw6Oi.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NIDzYwI8Gcw6Oi.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7NxDzYwI8Gcw6Oi.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7MWDzYwI8Gcw6Oi.ttf", + "fontWeight": "800", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKiZqEiBAXLcnuMvjZNI_5FGeJet7M_DzYwI8Gcw6Oi.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95yKcW-xrOiIUw.ttf", + "fontWeight": "100", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS15zKcW-xrOiIUw.ttf", + "fontWeight": "200", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS4BzKcW-xrOiIUw.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS95zKcW-xrOiIUw.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS-xzKcW-xrOiIUw.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSwB0KcW-xrOiIUw.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeSzl0KcW-xrOiIUw.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS150KcW-xrOiIUw.ttf", + "fontWeight": "800", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + }, + { + "src": "http://fonts.gstatic.com/s/ysabeau/v1/kmKsZqEiBAXLcnuMlD9_3CYscnjwsKZeS3d0KcW-xrOiIUw.ttf", + "fontWeight": "900", + "fontStyle": "italic", + "fontFamily": "Ysabeau" + } + ] + }, + { + "name": "Yuji Boku", + "fontFamily": "Yuji Boku, serif", + "slug": "wp-font-lib-yuji-boku", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yujiboku/v5/P5sAzZybeNzXsA9xj1Fkjb2r2dgvJA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yuji Boku" + } + ] + }, + { + "name": "Yuji Hentaigana Akari", + "fontFamily": "Yuji Hentaigana Akari, cursive", + "slug": "wp-font-lib-yuji-hentaigana-akari", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yujihentaiganaakari/v11/cY9bfiyVT0VB6QuhWKOrpr6z58lnb_zYFnLIRTzODYALaA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yuji Hentaigana Akari" + } + ] + }, + { + "name": "Yuji Hentaigana Akebono", + "fontFamily": "Yuji Hentaigana Akebono, cursive", + "slug": "wp-font-lib-yuji-hentaigana-akebono", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yujihentaiganaakebono/v12/EJRGQhkhRNwM-RtitGUwh930GU_f5KAlkuL0wQy9NKXRzrrF.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yuji Hentaigana Akebono" + } + ] + }, + { + "name": "Yuji Mai", + "fontFamily": "Yuji Mai, serif", + "slug": "wp-font-lib-yuji-mai", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yujimai/v5/ZgNQjPxdJ7DEHrS0gC38hmHmNpCO.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yuji Mai" + } + ] + }, + { + "name": "Yuji Syuku", + "fontFamily": "Yuji Syuku, serif", + "slug": "wp-font-lib-yuji-syuku", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yujisyuku/v5/BngNUXdTV3vO6Lw5ApOPqPfgwqiA-Rk.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yuji Syuku" + } + ] + }, + { + "name": "Yusei Magic", + "fontFamily": "Yusei Magic, sans-serif", + "slug": "wp-font-lib-yusei-magic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/yuseimagic/v12/yYLt0hbAyuCmoo5wlhPkpjHR-tdfcIT_.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Yusei Magic" + } + ] + }, + { + "name": "ZCOOL KuaiLe", + "fontFamily": "ZCOOL KuaiLe, sans-serif", + "slug": "wp-font-lib-zcool-kuaile", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zcoolkuaile/v19/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "ZCOOL KuaiLe" + } + ] + }, + { + "name": "ZCOOL QingKe HuangYou", + "fontFamily": "ZCOOL QingKe HuangYou, sans-serif", + "slug": "wp-font-lib-zcool-qingke-huangyou", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zcoolqingkehuangyou/v15/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "ZCOOL QingKe HuangYou" + } + ] + }, + { + "name": "ZCOOL XiaoWei", + "fontFamily": "ZCOOL XiaoWei, sans-serif", + "slug": "wp-font-lib-zcool-xiaowei", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zcoolxiaowei/v14/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "ZCOOL XiaoWei" + } + ] + }, + { + "name": "Zen Antique", + "fontFamily": "Zen Antique, serif", + "slug": "wp-font-lib-zen-antique", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenantique/v12/AYCPpXPnd91Ma_Zf-Ri2JXJq7PKP5Z_G.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Antique" + } + ] + }, + { + "name": "Zen Antique Soft", + "fontFamily": "Zen Antique Soft, serif", + "slug": "wp-font-lib-zen-antique-soft", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenantiquesoft/v12/DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwBmkui5HNg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Antique Soft" + } + ] + }, + { + "name": "Zen Dots", + "fontFamily": "Zen Dots, system-ui", + "slug": "wp-font-lib-zen-dots", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zendots/v10/XRXX3ICfm00IGoesQeaETM_FcCIG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Dots" + } + ] + }, + { + "name": "Zen Kaku Gothic Antique", + "fontFamily": "Zen Kaku Gothic Antique, sans-serif", + "slug": "wp-font-lib-zen-kaku-gothic-antique", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cM9TarWJtyZyGU.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-g3RKjc4d7.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22dU9DarWJtyZyGU.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cc8jarWJtyZyGU.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22ck8DarWJtyZyGU.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic Antique" + } + ] + }, + { + "name": "Zen Kaku Gothic New", + "fontFamily": "Zen Kaku Gothic New, sans-serif", + "slug": "wp-font-lib-zen-kaku-gothic-new", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqpdKaWTSTGlMyd8.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMYW2drQpDw0GjzrVNFf_valaDBcznOkjtiTWz5UGA.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqs9LaWTSTGlMyd8.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqodNaWTSTGlMyd8.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + }, + { + "src": "http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqr9PaWTSTGlMyd8.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Zen Kaku Gothic New" + } + ] + }, + { + "name": "Zen Kurenaido", + "fontFamily": "Zen Kurenaido, sans-serif", + "slug": "wp-font-lib-zen-kurenaido", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenkurenaido/v13/3XFsEr0515BK2u6UUptu_gWJZfz22PRLd0U.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Kurenaido" + } + ] + }, + { + "name": "Zen Loop", + "fontFamily": "Zen Loop, system-ui", + "slug": "wp-font-lib-zen-loop", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenloop/v7/h0GrssK16UsnJwHsEK9zqwzX5vOG.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Loop" + }, + { + "src": "http://fonts.gstatic.com/s/zenloop/v7/h0GtssK16UsnJwHsEJ9xoQj14-OGJ0w.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Zen Loop" + } + ] + }, + { + "name": "Zen Maru Gothic", + "fontFamily": "Zen Maru Gothic, sans-serif", + "slug": "wp-font-lib-zen-maru-gothic", + "category": "sans-serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cQWpCPJqa_ajlvw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0SIpIxzW5b-RxT-6A8jWAtCp-k7UJmNLGG9A.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cGWtCPJqa_ajlvw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-cUW1CPJqa_ajlvw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + }, + { + "src": "http://fonts.gstatic.com/s/zenmarugothic/v13/o-0XIpIxzW5b-RxT-6A8jWAtCp-caW9CPJqa_ajlvw.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Zen Maru Gothic" + } + ] + }, + { + "name": "Zen Old Mincho", + "fontFamily": "Zen Old Mincho, serif", + "slug": "wp-font-lib-zen-old-mincho", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss0ApVaYytLwxTqcxfMyBveyYb3g31S2s8p.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4Dqlla8dMgPgBu.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4vrVla8dMgPgBu.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5LrFla8dMgPgBu.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + }, + { + "src": "http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5zrlla8dMgPgBu.ttf", + "fontWeight": "900", + "fontStyle": "normal", + "fontFamily": "Zen Old Mincho" + } + ] + }, + { + "name": "Zen Tokyo Zoo", + "fontFamily": "Zen Tokyo Zoo, system-ui", + "slug": "wp-font-lib-zen-tokyo-zoo", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zentokyozoo/v7/NGSyv5ffC0J_BK6aFNtr6sRv8a1uRWe9amg.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zen Tokyo Zoo" + } + ] + }, + { + "name": "Zeyada", + "fontFamily": "Zeyada, cursive", + "slug": "wp-font-lib-zeyada", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zeyada/v15/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zeyada" + } + ] + }, + { + "name": "Zhi Mang Xing", + "fontFamily": "Zhi Mang Xing, cursive", + "slug": "wp-font-lib-zhi-mang-xing", + "category": "handwriting", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zhimangxing/v17/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zhi Mang Xing" + } + ] + }, + { + "name": "Zilla Slab", + "fontFamily": "Zilla Slab, serif", + "slug": "wp-font-lib-zilla-slab", + "category": "serif", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf", + "fontWeight": "300", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf", + "fontWeight": "300", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf", + "fontWeight": "400", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf", + "fontWeight": "500", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf", + "fontWeight": "500", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf", + "fontWeight": "600", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf", + "fontWeight": "600", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zilla Slab" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf", + "fontWeight": "700", + "fontStyle": "italic", + "fontFamily": "Zilla Slab" + } + ] + }, + { + "name": "Zilla Slab Highlight", + "fontFamily": "Zilla Slab Highlight, system-ui", + "slug": "wp-font-lib-zilla-slab-highlight", + "category": "display", + "fontFace": [ + { + "src": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf", + "fontWeight": "400", + "fontStyle": "normal", + "fontFamily": "Zilla Slab Highlight" + }, + { + "src": "http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf", + "fontWeight": "700", + "fontStyle": "normal", + "fontFamily": "Zilla Slab Highlight" + } + ] + } + ], + "categories": [ + "sans-serif", + "serif", + "display", + "handwriting", + "monospace" + ] +} \ No newline at end of file diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js index 3938c1b8a86d7..83499649d7fb2 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js @@ -84,7 +84,7 @@ function LocalFonts() { acc[ item.fontFamily ] = { name: item.fontFamily, fontFamily: item.fontFamily, - slug: item.fontFamily.replace( /\s+/g, '-' ).toLowerCase(), + slug: 'wp-font-lib-' + item.fontFamily.replace( /\s+/g, '-' ).toLowerCase(), fontFace: [], } } From 084e0143df4467720ddcfb276a90acf96d960f02 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 1 Jun 2023 16:15:04 -0300 Subject: [PATCH 059/116] Move fonts directory file permission check to permission callback of the updatable endpoints --- .../fonts-library/class-wp-fonts-library.php | 21 +++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index c1db5be176efa..dcdf2d713a70c 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -111,6 +111,21 @@ function update_fonts_library_permissions_check ( $request ) { ) ); } + + // Create fonts directory if it doesn't exist + wp_mkdir_p( $this->wp_fonts_dir ); + + // The update endpoints requires write access to the temp and the fonts directories + $temp_dir = get_temp_dir(); + if ( ! is_writable( $temp_dir ) || ! wp_is_writable( $this->wp_fonts_dir ) ) { + return new WP_Error( + 'rest_cannot_write_fonts_folder', + __( 'Error: WordPress does not have permission to write the fonts folder on your server.' ), + array( + 'status' => 500, + ) + ); + } return true; } @@ -412,12 +427,6 @@ function remove_font_family ( $font_families, $font_to_uninstall ) { * @return WP_REST_Response|WP_Error The updated fonts library post content. */ function install_fonts ( $request ) { - // Create fonts directory if it doesn't exist - $fonts_directory = wp_mkdir_p( $this->wp_fonts_dir ); - if ( ! $fonts_directory ) { - return new WP_Error( 'fonts_directory_error', __( 'Could not create fonts directory.' ), array( 'status' => 500 ) ); - } - // Get existing font families $post = $this->query_fonts_library(); if ( is_wp_error( $post ) ) { From 64b5ec7acee48ad873ac828e6b1947cf3d2c40e3 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 1 Jun 2023 16:32:50 -0300 Subject: [PATCH 060/116] Avoid duplicated files when selecting local fonts to upload --- .../font-library-modal/local-fonts.js | 20 +++++++------------ 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js index 83499649d7fb2..9c73a772206e2 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js @@ -31,31 +31,25 @@ function LocalFonts() { const onFilesUpload = ( files ) => { let uniqueFilenames = new Set(); - const allowedFiles = [...files].filter((file) => { - console.log('file', file); + const allowedFiles = [ ...selectedFiles, ...files ].filter((file) => { if(uniqueFilenames.has(file.name)){ - return false; // if name has already been seen, ignore this item + return false; // Discard duplicates } + // Eliminates files that are not allowed const fileExtension = file.name.split('.').pop().toLowerCase(); if ( ALLOWED_FILE_EXTENSIONS.includes( fileExtension ) ) { - uniqueFilenames.add(file.name); // add name to the set - return true; // keep the item in the array + uniqueFilenames.add(file.name); + return true; // Keep file if the extension is allowed } - return false; // if not allowed type, ignore this item + return false; // Discard file extension not allowed }); - setSelectedFiles( [...selectedFiles, ...allowedFiles] ); + setSelectedFiles( allowedFiles ); }; const onFontFaceLoad = ( face ) => { setFontFacesLoaded( ( prevFontFaces ) => [...prevFontFaces, face] ); } - useEffect( () => { - if ( fontFacesLoaded.length ) { - console.log( 'fontFacesLoaded', fontFacesLoaded ); - } - }, [ fontFacesLoaded ] ); - const onFontFaceRemove = ( face ) => { setSelectedFiles( selectedFiles.filter( ( file ) => ( file.name !== face.file.name )) ); } From 22b0079fa3b44f412c8e4d2bba2aaefc4fda5664 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 2 Jun 2023 10:40:57 -0300 Subject: [PATCH 061/116] Replacing modal opening from dropdown to 2 buttons with icons --- .../components/global-styles/font-families.js | 57 +++++-------------- 1 file changed, 15 insertions(+), 42 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-families.js b/packages/edit-site/src/components/global-styles/font-families.js index b301ae9bd248e..560c7bc0bed11 100644 --- a/packages/edit-site/src/components/global-styles/font-families.js +++ b/packages/edit-site/src/components/global-styles/font-families.js @@ -7,14 +7,10 @@ import { __experimentalVStack as VStack, __experimentalHStack as HStack, __experimentalItem as Item, - __experimentalText as Text, FlexItem, Button, - MenuGroup, - MenuItem, - Dropdown, } from '@wordpress/components'; -import { moreVertical } from '@wordpress/icons'; +import { plus, typography } from '@wordpress/icons'; import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor'; import { useState } from '@wordpress/element'; @@ -26,27 +22,6 @@ import Subtitle from './subtitle'; import { unlock } from '../../private-apis'; const { useGlobalSetting } = unlock( blockEditorPrivateApis ); -function FontFamiliesMenu( { onToggle, toggleFontLibrary } ) { - const displayFontLibrary = ( tabName ) => { - onToggle(); // Close the dropdown - toggleFontLibrary( tabName ); // Open the modal - }; - - return ( - - displayFontLibrary( 'installed-fonts' ) }> - { __( 'Manage Font Library' ) } - - displayFontLibrary( 'google-fonts' ) }> - { __( 'Install Google Fonts' ) } - - displayFontLibrary( 'local-fonts' ) }> - { __( 'Install Local Fonts' ) } - - - ); -} - function FontFamilies() { const [ fontFamilies ] = useGlobalSetting( 'typography.fontFamilies' ); @@ -72,22 +47,20 @@ function FontFamilies() { { __( 'Fonts' ) } - ( - - ) } - renderToggle={ ( { isOpen, onToggle } ) => ( - - // {} } - // checked={ isAdded } - // onClick={ ( event ) => - // handleClick( event, font ) - // } - // /> - } - /> - ); -} - -export default GoogleFontCard; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index 0d408adca5a34..c88f498df8b19 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -21,9 +21,9 @@ import { download } from '@wordpress/icons'; import TabLayout from './tab-layout'; import FontsGrid from './fonts-grid'; import { FontLibraryContext } from './context'; -import GoogleFontCard from './google-font-card'; import GoolgeFontDetails from './google-font-details'; import PreviewControls from './preview-controls'; +import FontCard from './font-card'; const filterFonts = ( fonts, filters ) => { const { category, search } = filters; @@ -239,12 +239,10 @@ function GoogleFonts() { { ! fontSelected && ( { fonts.map( ( font ) => ( - handleSelectFont( font ) } /> ) ) } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index 03b3c46167beb..b736cf6b1acb1 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -14,10 +14,10 @@ import { import TabLayout from './tab-layout'; import { FontLibraryContext } from './context'; import FontsGrid from './fonts-grid'; -import LibraryFontCard from './library-font-card'; import LibraryFontDetails from './library-font-details'; import SaveButton from '../../save-button'; import PreviewControls from './preview-controls'; +import FontCard from './font-card'; function InstalledFonts() { const { installedFonts } = useContext( FontLibraryContext ); @@ -50,7 +50,7 @@ function InstalledFonts() { { installedFonts.map( ( font ) => ( - { diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js deleted file mode 100644 index d114071de3e88..0000000000000 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js +++ /dev/null @@ -1,48 +0,0 @@ -/** - * WordPress dependencies - */ -import { __ } from '@wordpress/i18n'; -import { CheckboxControl } from '@wordpress/components'; -import { useContext } from '@wordpress/element'; - -/** - * Internal dependencies - */ -import FontCard from './font-card'; -import { FontLibraryContext } from './context'; - -function LibraryFontCard( { font, onClick } ) { - const { toggleActivateFont, isFontActivated, getFontFacesActivated } = - useContext( FontLibraryContext ); - - const isActive = isFontActivated( font.slug ); - const facesActivated = getFontFacesActivated( font.slug ); - const isPartiallyActivated = !!facesActivated.length && facesActivated.length < font?.fontFace?.length; - - const handleToggleFontActivation = () => { - toggleActivateFont( font ); - }; - - const handleClick = () => { - onClick( font.name ); - }; - - const actionHandler = ( - e.stopPropagation() } - onChange={ handleToggleFontActivation } - indeterminate={ isPartiallyActivated } - /> - ); - - return ( - - ); -} - -export default LibraryFontCard; From bbd490085f929c106096aab231234cbe15e358fd Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 2 Jun 2023 16:53:53 -0300 Subject: [PATCH 065/116] Splitting the installed fonts in theme and user fonts sections --- .../font-library-modal/context.js | 9 ++++-- .../font-library-modal/font-card.js | 6 ++-- .../font-library-modal/fonts-grid.js | 19 ++++++++++-- .../font-library-modal/installed-fonts.js | 29 ++++++++++++++--- .../font-library-modal/library-font-card.js | 31 +++++++++++++++++++ .../font-library-modal/style.scss | 16 +++++++--- 6 files changed, 92 insertions(+), 18 deletions(-) create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index a45a69fe9e651..879eba53b3d4c 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -109,9 +109,12 @@ function FontLibraryProvider( { children } ) { const getAvailableFontsOutline = ( fontFamilies ) => { const outline = fontFamilies.reduce( ( acc, font ) => { - const availableFontFaces = ( font?.fontFace || [] ).map( - ( face ) => `${ face.fontStyle + face.fontWeight }` - ); + + const availableFontFaces = Array.isArray( font?.fontFace ) + ? font?.fontFace.map( + ( face ) => `${ face.fontStyle + face.fontWeight }` ) + : [ "normal400" ]; // If the font doesn't have fontFace, we assume it is a system font and we add the defaults: normal 400 + acc[ font.slug ] = availableFontFaces; return acc; }, {} ); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js index 4ef56f5158275..6639934d547ee 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/font-card.js @@ -16,7 +16,7 @@ import { */ import FontDemo from './font-demo'; -function FontCard( { font, onClick, actionHandler } ) { +function FontCard( { font, onClick, actionHandler, variantsText } ) { const fakeFontFace = { fontStyle: 'normal', fontWeight: '400', @@ -53,8 +53,8 @@ function FontCard( { font, onClick, actionHandler } ) { { font.name } - { variantsCount }{ ' ' } - { _n( + { variantsText + || variantsCount + ' ' + _n( 'variant', 'variants', variantsCount diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/fonts-grid.js b/packages/edit-site/src/components/global-styles/font-library-modal/fonts-grid.js index f4368a96777d3..b5490f587df21 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/fonts-grid.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/fonts-grid.js @@ -2,11 +2,24 @@ * WordPress dependencies */ import { __ } from '@wordpress/i18n'; +import { + __experimentalVStack as VStack, + __experimentalSpacer as Spacer, + __experimentalText as Text, -function FontsGrid( { children } ) { +} from '@wordpress/components'; + +function FontsGrid( { title, children } ) { return ( -
- { children } +
+ + {title && ( + { title } + )} +
+ { children } +
+
); } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index b736cf6b1acb1..447bf942cd12a 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -17,10 +17,10 @@ import FontsGrid from './fonts-grid'; import LibraryFontDetails from './library-font-details'; import SaveButton from '../../save-button'; import PreviewControls from './preview-controls'; -import FontCard from './font-card'; +import LibraryFontCard from './library-font-card'; function InstalledFonts() { - const { installedFonts } = useContext( FontLibraryContext ); + const { themeFonts, libraryFonts } = useContext( FontLibraryContext ); const [ fontSelected, setFontSelected ] = useState( null ); const handleUnselectFont = () => { @@ -48,9 +48,28 @@ function InstalledFonts() { <> - - { installedFonts.map( ( font ) => ( - + { themeFonts.map( ( font ) => ( + { + handleSelectFont( font ); + } } + /> + ) ) } + + + + + + { libraryFonts.map( ( font ) => ( + { diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js new file mode 100644 index 0000000000000..43e759b7e49b4 --- /dev/null +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-card.js @@ -0,0 +1,31 @@ + +/** + * WordPress dependencies + */ +import { __ } from '@wordpress/i18n'; +import { useContext } from '@wordpress/element'; + +/** + * Internal dependencies + */ +import FontCard from "./font-card"; +import { FontLibraryContext } from './context'; + + +function LibraryFontCard ({ font, ...props }) { + const { getFontFacesActivated } = useContext( FontLibraryContext ); + + const variantsInstalled = font.fontFace?.length || 1; + const variantsActive = getFontFacesActivated( font.slug ).length; + const variantsText = __( `${variantsActive}/${variantsInstalled} variants active` ); + + return ( + + ); +} + +export default LibraryFontCard; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss index 4067c14d96891..7fa947b7f1ebd 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/style.scss +++ b/packages/edit-site/src/components/global-styles/font-library-modal/style.scss @@ -22,10 +22,18 @@ } -.font-library-modal__font-card-grid { - display: grid; - grid-template-columns: repeat(4, minmax(100px, auto)); - gap: 4px * 4; +.font-library-modal__fonts-grid { + .font-library-modal__fonts-grid__subtitle { + text-transform: uppercase; + font-weight: 500; + font-size: 11px; + } + + .font-library-modal__fonts-grid__main { + display: grid; + grid-template-columns: repeat(4, minmax(100px, 1fr)); + gap: 4px * 4; + } } .font-library-modal__font-card { From e577b4cddc387b5b7d1d2380d60b0706e0214dd4 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 2 Jun 2023 17:16:16 -0300 Subject: [PATCH 066/116] hiding preview options --- .../font-library-modal/google-fonts.js | 4 +- .../font-library-modal/installed-fonts.js | 68 +++++++++++-------- .../library-font-details.js | 2 +- 3 files changed, 41 insertions(+), 33 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index c88f498df8b19..8c5d0c9dc9257 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -219,7 +219,7 @@ function GoogleFonts() { ) ) } - + {/* */} @@ -250,7 +250,7 @@ function GoogleFonts() { { fontSelected && ( <> - + {/* */} { ! fontSelected && ( <> - - + {/* */} + + { themeFonts.length > 0 && ( + <> + + + { themeFonts.map( ( font ) => ( + { + handleSelectFont( font ); + } } + /> + ) ) } + + + )} - - { themeFonts.map( ( font ) => ( - { - handleSelectFont( font ); - } } - /> - ) ) } - + { libraryFonts.length > 0 && ( + <> + + + { libraryFonts.map( ( font ) => ( + { + handleSelectFont( font ); + } } + /> + ) ) } + + + )} - - - - { libraryFonts.map( ( font ) => ( - { - handleSelectFont( font ); - } } - /> - ) ) } - ) } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js index 64bb1d8c63845..0d5ab8a1838c1 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/library-font-details.js @@ -81,7 +81,7 @@ function LibraryFontDetails( { font, handleUnselectFont, canBeRemoved } ) { ) } - + {/* */} From 74e4fc1c1994f066999f45deb89eef998d0c0085 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Tue, 6 Jun 2023 16:20:25 -0300 Subject: [PATCH 067/116] Moving user fonts at the top of library modal and removing sub heading --- .../font-library-modal/installed-fonts.js | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index 350ba3d4ab063..593a1d2b7e981 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -47,14 +47,12 @@ function InstalledFonts() { { ! fontSelected && ( <> {/* */} - - { themeFonts.length > 0 && ( + + { libraryFonts.length > 0 && ( <> - - { themeFonts.map( ( font ) => ( + + { libraryFonts.map( ( font ) => ( )} - - { libraryFonts.length > 0 && ( + + { themeFonts.length > 0 && ( <> - { libraryFonts.map( ( font ) => ( + { themeFonts.map( ( font ) => ( Date: Tue, 6 Jun 2023 16:25:51 -0300 Subject: [PATCH 068/116] Adding tooltip to panel buttons --- .../components/global-styles/font-families.js | 31 ++++++++++--------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-families.js b/packages/edit-site/src/components/global-styles/font-families.js index f89f73ea89ced..e719f33e64541 100644 --- a/packages/edit-site/src/components/global-styles/font-families.js +++ b/packages/edit-site/src/components/global-styles/font-families.js @@ -6,9 +6,8 @@ import { __experimentalItemGroup as ItemGroup, __experimentalVStack as VStack, __experimentalHStack as HStack, - __experimentalItem as Item, - FlexItem, Button, + Tooltip, } from '@wordpress/components'; import { plus, typography } from '@wordpress/icons'; import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor'; @@ -49,18 +48,22 @@ function FontFamilies() { { __( 'Fonts' ) } - ); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index dc50046189efd..e5333f3731eda 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -100,7 +100,11 @@ function InstalledFonts() { function Footer() { return ( - + ); } diff --git a/packages/edit-site/src/components/save-button/index.js b/packages/edit-site/src/components/save-button/index.js index 0d78e32307797..ede300f26a925 100644 --- a/packages/edit-site/src/components/save-button/index.js +++ b/packages/edit-site/src/components/save-button/index.js @@ -14,6 +14,9 @@ import { store as editSiteStore } from '../../store'; import { isPreviewingTheme } from '../../utils/is-previewing-theme'; export default function SaveButton( { + textForDisabledState = __( 'Saved' ), + textForIsDirtyState = __( 'Activate & Save' ), + textForDefaultState = __( 'Save' ), className = 'edit-site-save-button__button', variant = 'primary', showTooltip = true, @@ -39,16 +42,16 @@ export default function SaveButton( { const getLabel = () => { if ( disabled ) { - return __( 'Saved' ); + return textForDisabledState; } if ( isPreviewingTheme() && isDirty ) { - return __( 'Activate & Save' ); + return textForIsDirtyState; } else if ( isPreviewingTheme() ) { return __( 'Activate' ); } - return __( 'Save' ); + return textForDefaultState; }; const label = getLabel(); From 41785fd5f659b45e9d19fd1050acb71003e8d182 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 7 Jun 2023 00:57:47 +0300 Subject: [PATCH 072/116] Update tab texts --- .../global-styles/font-library-modal/google-fonts.js | 4 ++-- .../global-styles/font-library-modal/installed-fonts.js | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index 69d3dbb9b596f..82fe0b4d25712 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -94,8 +94,8 @@ function GoogleFonts() { ); const tabDescription = fontSelected - ? __( `Select ${ fontSelected.name } variants you want to install` ) - : __( 'Select a font to install' ); + ? __( 'Choose font variants. Keep in mind that too many variants could make your site slower.' ) + : __( 'Add from Google Fonts. Fonts are copied to, and served, from your own server.' ); const handleCategoryFilter = ( category ) => { setFilters( { ...filters, category } ); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index e5333f3731eda..67880ffdcb096 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -31,10 +31,8 @@ function InstalledFonts() { }; const tabDescription = !! libraryFontSelected - ? __( `${ libraryFontSelected.name } variants.` ) - : __( - 'Fonts installed in your WordPress, activate them to use in your site.' - ); + ? __( "Choose font variants. Keep in mind that too many variants could make your site slower." ) + : null; return ( Date: Wed, 7 Jun 2023 01:02:29 +0300 Subject: [PATCH 073/116] Updating tab layout title --- .../global-styles/font-library-modal/tab-layout.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/tab-layout.js b/packages/edit-site/src/components/global-styles/font-library-modal/tab-layout.js index 4bebef421e0cf..a4c337b46f65b 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/tab-layout.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/tab-layout.js @@ -24,10 +24,15 @@ function TabLayout( { title, description, handleBack, children, footer } ) { variant="tertiary" onClick={ handleBack } icon={ chevronLeft } + isSmall /> ) } { title && ( - { title } + { title } ) } { description && { description } } From caf2af0f354147250f7afc6aef5c0f8dbfed3e41 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 7 Jun 2023 10:22:27 +0300 Subject: [PATCH 074/116] Changing upload local fonts button --- .../global-styles/font-library-modal/local-fonts.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js index 9c73a772206e2..ef027419787bd 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js @@ -8,10 +8,9 @@ import { Button, DropZone, FormFileUpload, __experimentalSpacer as Spacer, - Spinner, } from '@wordpress/components'; -import { file, upload } from '@wordpress/icons'; -import { useState, useEffect, useContext } from '@wordpress/element'; +import { file } from '@wordpress/icons'; +import { useState, useContext } from '@wordpress/element'; /** * Internal dependencies @@ -109,7 +108,6 @@ function LocalFonts() { variant="primary" isBusy={ isInstalling } disabled={ !selectedFiles.length || isInstalling } - icon={ isInstalling ? : upload } onClick={ handleInstall } > { __( 'Upload Fonts' ) } From 549c9fd6bbf39680158a5af2f310d8a66779753e Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 7 Jun 2023 10:47:05 +0300 Subject: [PATCH 075/116] Select the installed font insted of the font stored in custom global styles when a font from the sidebar is selected. We need to this because otherwise the font from custom fonts is used and when a font variant is unselected it is deleted when it is unselected and the user saves the modal.Doing this we can still have record of all the installed variants that can be activated or de-activated. --- .../src/components/global-styles/font-families.js | 2 +- .../components/global-styles/font-family-item.js | 4 ++-- .../global-styles/font-library-modal/context.js | 15 ++++++++++++++- .../font-library-modal/installed-fonts.js | 6 +++--- 4 files changed, 20 insertions(+), 7 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-families.js b/packages/edit-site/src/components/global-styles/font-families.js index d99bddc943545..315d8fc8f46b9 100644 --- a/packages/edit-site/src/components/global-styles/font-families.js +++ b/packages/edit-site/src/components/global-styles/font-families.js @@ -24,7 +24,7 @@ import { unlock } from '../../private-apis'; const { useGlobalSetting } = unlock( blockEditorPrivateApis ); function FontFamilies() { - const { modalTabOepn, toggleModal } = useContext( FontLibraryContext ); + const { modalTabOepn, toggleModal } = useContext( FontLibraryContext ); const [ fontFamilies ] = useGlobalSetting( 'typography.fontFamilies' ); const fonts = Array.isArray( fontFamilies?.custom ) diff --git a/packages/edit-site/src/components/global-styles/font-family-item.js b/packages/edit-site/src/components/global-styles/font-family-item.js index e8d674d075518..288f4684003c9 100644 --- a/packages/edit-site/src/components/global-styles/font-family-item.js +++ b/packages/edit-site/src/components/global-styles/font-family-item.js @@ -15,12 +15,12 @@ import { useContext } from '@wordpress/element'; import { FontLibraryContext } from './font-library-modal/context'; function FontFamilyItem ({ font }) { - const { setLibraryFontSelected, toggleModal, libraryFonts } = useContext( FontLibraryContext ); + const { handleSetLibraryFontSelected, toggleModal } = useContext( FontLibraryContext ); const variantsCount = font?.fontFace?.length || 1; const handleClick = () => { - setLibraryFontSelected( font ); + handleSetLibraryFontSelected( font ); toggleModal( "installed-fonts" ); }; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index b38b49ece5cc2..50750e61493d3 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -47,6 +47,19 @@ function FontLibraryProvider( { children } ) { const [ libraryFonts, setLibraryFonts ] = useState( [] ); const [ libraryFontSelected, setLibraryFontSelected ] = useState( null ); + const handleSetLibraryFontSelected = ( font ) => { + // If font is null, reset the selected font + if ( ! font ){ + setLibraryFontSelected( null ); + return; + } + + // Tries to find the font in the installed fonts + const installedFontSelected = installedFonts.find( ( f ) => f.slug === font.slug ); + // If the font is not found (it is only defined in custom styles), use the font from custom styles + setLibraryFontSelected ( installedFontSelected || font ); + }; + const toggleModal = ( tabName ) => { setModalTabOepn( tabName || null ); }; @@ -275,7 +288,7 @@ function FontLibraryProvider( { children } ) { updateDemoConfig, setDefaultDemoConfig, libraryFontSelected, - setLibraryFontSelected, + handleSetLibraryFontSelected, themeFonts, customFonts, libraryFonts, diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index 67880ffdcb096..abe4570beffd4 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -20,14 +20,14 @@ import PreviewControls from './preview-controls'; import LibraryFontCard from './library-font-card'; function InstalledFonts() { - const { themeFonts, libraryFonts, libraryFontSelected, setLibraryFontSelected } = useContext( FontLibraryContext ); + const { themeFonts, libraryFonts, libraryFontSelected, handleSetLibraryFontSelected } = useContext( FontLibraryContext ); const handleUnselectFont = () => { - setLibraryFontSelected( null ); + handleSetLibraryFontSelected( null ); }; const handleSelectFont = ( font ) => { - setLibraryFontSelected( font ); + handleSetLibraryFontSelected( font ); }; const tabDescription = !! libraryFontSelected From 8ac93e683fe2ca5b31ef12efbdf189eb6d9c2cfb Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 7 Jun 2023 11:05:45 +0300 Subject: [PATCH 076/116] moving where alphabetical orderingis done --- .../global-styles/font-library-modal/context.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 50750e61493d3..d320e20bdd0e5 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -39,8 +39,12 @@ function FontLibraryProvider( { children } ) { 'typography.fontFamilies' ); - const themeFonts = fontFamilies.theme || null; - const customFonts = fontFamilies.custom || null; + const themeFonts = fontFamilies.theme + ? fontFamilies.theme.sort( ( a, b ) => ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) + : null; + const customFonts = fontFamilies.custom + ? fontFamilies.custom.sort( ( a, b ) => ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) + : null; // Library Fonts const [ modalTabOepn, setModalTabOepn ] = useState( false ); @@ -70,13 +74,9 @@ function FontLibraryProvider( { children } ) { themeFonts.map( ( f ) => ( { ...f, source: 'theme', - ...( ! f.name ? { name: f.fontFamily } : {} ), } ) ) || []; const fromLibrary = libraryFonts || []; - - return [ ...fromTheme, ...fromLibrary ].sort( ( a, b ) => - ( a.name || a.slug ).localeCompare( b.name || b.slug ) - ); + return [ ...fromTheme, ...fromLibrary ]; }, [ themeFonts, libraryFonts ] ); // Google Fonts From 63b492682542359c8b71e39cce23787f934fb08a Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 7 Jun 2023 12:16:05 +0300 Subject: [PATCH 077/116] Using custom and theme fonts from context to make profit of alphabetical sorting made there --- .../src/components/global-styles/font-families.js | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-families.js b/packages/edit-site/src/components/global-styles/font-families.js index 315d8fc8f46b9..b1cc6254059f2 100644 --- a/packages/edit-site/src/components/global-styles/font-families.js +++ b/packages/edit-site/src/components/global-styles/font-families.js @@ -10,7 +10,6 @@ import { Tooltip, } from '@wordpress/components'; import { plus, typography } from '@wordpress/icons'; -import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor'; import { useContext } from '@wordpress/element'; /** @@ -20,16 +19,13 @@ import FontLibraryProvider, { FontLibraryContext } from './font-library-modal/co import FontLibraryModal from './font-library-modal'; import FontFamilyItem from './font-family-item'; import Subtitle from './subtitle'; -import { unlock } from '../../private-apis'; -const { useGlobalSetting } = unlock( blockEditorPrivateApis ); function FontFamilies() { - const { modalTabOepn, toggleModal } = useContext( FontLibraryContext ); - const [ fontFamilies ] = useGlobalSetting( 'typography.fontFamilies' ); + const { modalTabOepn, toggleModal, themeFonts, customFonts } = useContext( FontLibraryContext ); - const fonts = Array.isArray( fontFamilies?.custom ) - ? fontFamilies?.custom - : fontFamilies?.theme || []; + const fonts = Array.isArray( customFonts ) + ? customFonts + : themeFonts || []; return ( <> From eccebeeb37ad15c13fdaf502d973545cf521fd93 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 7 Jun 2023 13:01:57 +0300 Subject: [PATCH 078/116] Set fallback values for font familiies definitions --- .../global-styles/font-family-item.js | 2 +- .../global-styles/font-library-modal/context.js | 17 +++++++---------- .../font-library-modal/google-fonts.js | 6 +++++- .../global-styles/font-library-modal/utils.js | 6 ++++++ 4 files changed, 19 insertions(+), 12 deletions(-) create mode 100644 packages/edit-site/src/components/global-styles/font-library-modal/utils.js diff --git a/packages/edit-site/src/components/global-styles/font-family-item.js b/packages/edit-site/src/components/global-styles/font-family-item.js index 288f4684003c9..8a4d6681759f0 100644 --- a/packages/edit-site/src/components/global-styles/font-family-item.js +++ b/packages/edit-site/src/components/global-styles/font-family-item.js @@ -30,7 +30,7 @@ function FontFamilyItem ({ font }) { - { font.name || font.fontFamily } + { font.name } ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) + ? fontFamilies.theme + .map( setFallbackValues ) + .sort( ( a, b ) => ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) : null; const customFonts = fontFamilies.custom - ? fontFamilies.custom.sort( ( a, b ) => ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) + ? fontFamilies.custom + .map( setFallbackValues ) + .sort( ( a, b ) => ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) : null; // Library Fonts diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index 82fe0b4d25712..d6360eb207f22 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -166,6 +166,10 @@ function GoogleFonts() { setNewFonts( fontsToAdd ); }; + const capitalize = ( str ) => { + return str.charAt( 0 ).toUpperCase() + str.slice( 1 ); + }; + const Footer = () => { return ( @@ -212,7 +216,7 @@ function GoogleFonts() { { googleFontsCategories && googleFontsCategories.map( ( category ) => ( ) ) } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/utils.js b/packages/edit-site/src/components/global-styles/font-library-modal/utils.js new file mode 100644 index 0000000000000..6d8d156a121b6 --- /dev/null +++ b/packages/edit-site/src/components/global-styles/font-library-modal/utils.js @@ -0,0 +1,6 @@ +export function setFallbackValues ( font ) { + if ( ! font.name ) { + font.name = font.fontFamily || font.slug; + } + return font; +}; \ No newline at end of file From fb7282cb39e49def1e4a1b44733e14712e9613fe Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 7 Jun 2023 13:22:29 +0300 Subject: [PATCH 079/116] encode font asset url if it is not url encoded --- .../global-styles/font-library-modal/context.js | 15 ++++++++++++--- .../global-styles/font-library-modal/utils.js | 11 +++++++++-- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 1e66b54d26bb3..50d14ed8421a8 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -22,7 +22,7 @@ import { import { unlock } from '../../../private-apis'; import { DEFAULT_DEMO_CONFIG } from './constants'; const { useGlobalSetting } = unlock( blockEditorPrivateApis ); -import { setFallbackValues } from './utils'; +import { setFallbackValues, isUrlEncoded } from './utils'; export const FontLibraryContext = createContext( {} ); @@ -267,15 +267,24 @@ function FontLibraryProvider( { children } ) { if ( loadedFontUrls.has( src ) ) { return; } + + if ( ! isUrlEncoded ) { + src = encodeURI( src ); + } const newFont = new FontFace( fontFace.fontFamily, `url( ${ src } )`, { style: fontFace.fontStyle, weight: fontFace.fontWeight, } ); - const loadedFace = await newFont.load(); + try { + const loadedFace = await newFont.load(); + document.fonts.add( loadedFace ); + } catch ( e ) { // If the url is not valid we mark the font as loaded + console.error( e ); + } + loadedFontUrls.add( src ); - document.fonts.add( loadedFace ); }; return ( diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/utils.js b/packages/edit-site/src/components/global-styles/font-library-modal/utils.js index 6d8d156a121b6..5b955802d5644 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/utils.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/utils.js @@ -1,6 +1,13 @@ -export function setFallbackValues ( font ) { +export function setFallbackValues( font ) { if ( ! font.name ) { font.name = font.fontFamily || font.slug; } return font; -}; \ No newline at end of file +} + +export function isUrlEncoded( url ) { + if ( typeof uri !== 'string' ) { + return false; + } + return url !== decodeURIComponent( url ); +} From 1c9e9086b22bc772e3124573c69995a7e4f73792 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 7 Jun 2023 15:28:14 +0300 Subject: [PATCH 080/116] Adding infinite scroll to fonts grid component --- .../font-library-modal/fonts-grid.js | 48 +++++++++++++++---- .../font-library-modal/google-fonts.js | 2 +- 2 files changed, 40 insertions(+), 10 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/fonts-grid.js b/packages/edit-site/src/components/global-styles/font-library-modal/fonts-grid.js index b5490f587df21..ce08d20c39d7b 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/fonts-grid.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/fonts-grid.js @@ -4,20 +4,50 @@ import { __ } from '@wordpress/i18n'; import { __experimentalVStack as VStack, - __experimentalSpacer as Spacer, __experimentalText as Text, - } from '@wordpress/components'; +import { useState, useEffect } from '@wordpress/element'; + +function FontsGrid( { title, children, pageSize = 32 } ) { + const [ lastItem, setLastItem ] = useState( null ); + const [ page, setPage ] = useState( 1 ); + const itemsLimit = page * pageSize; + const items = children.slice( 0, itemsLimit ); + + useEffect( () => { + if ( lastItem ) { + const observer = new IntersectionObserver( ( [ entry ] ) => { + if ( entry.isIntersecting ) { + setPage( ( prevPage ) => prevPage + 1 ); + } + } ); + + observer.observe( lastItem ); + + return () => observer.disconnect(); + } + }, [ lastItem ] ); -function FontsGrid( { title, children } ) { return ( -
- - {title && ( - { title } - )} +
+ + { title && ( + + { title } + + ) }
- { children } + { items.map( ( child, i ) => { + if ( i === itemsLimit - 1 ) { + return ( +
+ { child } +
+ ); + } else { + return child; + } + } ) }
diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js index d6360eb207f22..6f275de24e91d 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/google-fonts.js @@ -40,7 +40,7 @@ const filterFonts = ( fonts, filters ) => { ); } - return filteredFonts.slice( 0, 96 ); + return filteredFonts; }; function GoogleFonts() { From 6b2a0a4e7f6ce906ddc0a79e3f11ee6ad0b18555 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 9 Jun 2023 13:01:49 +0300 Subject: [PATCH 081/116] Adding font families json sanitization using WP_Theme_JSON capabilities --- .../fonts-library/class-wp-fonts-library.php | 38 ++++++++++++++++++- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index dcdf2d713a70c..2df24d4463495 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -1,8 +1,14 @@ wp_fonts_dir = path_join( WP_CONTENT_DIR, 'fonts' ); $this->relative_fonts_path = site_url('/wp-content/fonts/', 'relative'); @@ -457,6 +463,9 @@ function install_fonts ( $request ) { // Updates the fonts library with the new fonts succesfully downloaded $new_library_fonts = $this->merge_fonts( $font_families, $new_fonts ); + // Sanitizes the fonts library using WP_Theme_JSON + $sanitized_font_families = $this->sanitize_font_families( $new_library_fonts ); + // Updates the fonts library post content and returns it return $this->update_fonts_library( $new_library_fonts ); } @@ -464,6 +473,31 @@ function install_fonts ( $request ) { return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.' ), array( 'status' => 500 ) ); } + /** + * Sanitizes the font families data using WP_Theme_JSON. + * + * @param array $font_families An array of font families. + * @return array A sanitized array of font families. + */ + function sanitize_font_families ( $font_families ) { + // Creates the structure of theme.json array with the new fonts + $fonts_json = array( + 'version' => '2', + 'settings' => array( + 'typography' => array( + 'fontFamilies' => $font_families + ) + ) + ); + // Creates a new WP_Theme_JSON object with the new fonts to mmake profit of the sanitization and validation + $theme_json = new WP_Theme_JSON( $fonts_json ); + $theme_data = $theme_json->get_data(); + $sanitized_font_families = !empty( $theme_data['settings']['typography']['fontFamilies'] ) + ? $theme_data['settings']['typography']['fontFamilies'] + : array(); + return $sanitized_font_families; + } + /** * Download or move new font assets to the fonts folder * From 12b4ac154701479221945d6c197940071011fd0b Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 14 Jun 2023 12:34:41 +0300 Subject: [PATCH 082/116] remove lib-font npm dependency and include it in the source code with small modifications to make it work in the browser --- package.json | 1 - packages/edit-site/lib/inflate.js | 3300 ++++++++++++++ packages/edit-site/lib/lib-font.browser.js | 3829 +++++++++++++++++ packages/edit-site/lib/unbrotli.js | 2006 +++++++++ .../font-library-modal/constants.js | 4 +- .../font-library-modal/local-font-variant.js | 2 +- tools/webpack/packages.js | 6 - 7 files changed, 9138 insertions(+), 10 deletions(-) create mode 100644 packages/edit-site/lib/inflate.js create mode 100644 packages/edit-site/lib/lib-font.browser.js create mode 100644 packages/edit-site/lib/unbrotli.js diff --git a/package.json b/package.json index 0c77594cb99ef..42746000729e8 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,6 @@ "@wordpress/warning": "file:packages/warning", "@wordpress/widgets": "file:packages/widgets", "@wordpress/wordcount": "file:packages/wordcount", - "lib-font": "2.4.0", "wicg-inert": "3.1.2" }, "devDependencies": { diff --git a/packages/edit-site/lib/inflate.js b/packages/edit-site/lib/inflate.js new file mode 100644 index 0000000000000..c03038745cdc8 --- /dev/null +++ b/packages/edit-site/lib/inflate.js @@ -0,0 +1,3300 @@ +/* pako 1.0.10 nodeca/pako */(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.pako = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i= 252 ? 6 : q >= 248 ? 5 : q >= 240 ? 4 : q >= 224 ? 3 : q >= 192 ? 2 : 1); + } + _utf8len[254] = _utf8len[254] = 1; // Invalid sequence start + + + // convert string to array (typed, when possible) + exports.string2buf = function (str) { + var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0; + + // count binary size + for (m_pos = 0; m_pos < str_len; m_pos++) { + c = str.charCodeAt(m_pos); + if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) { + c2 = str.charCodeAt(m_pos + 1); + if ((c2 & 0xfc00) === 0xdc00) { + c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); + m_pos++; + } + } + buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4; + } + + // allocate buffer + buf = new utils.Buf8(buf_len); + + // convert + for (i = 0, m_pos = 0; i < buf_len; m_pos++) { + c = str.charCodeAt(m_pos); + if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) { + c2 = str.charCodeAt(m_pos + 1); + if ((c2 & 0xfc00) === 0xdc00) { + c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); + m_pos++; + } + } + if (c < 0x80) { + /* one byte */ + buf[i++] = c; + } else if (c < 0x800) { + /* two bytes */ + buf[i++] = 0xC0 | (c >>> 6); + buf[i++] = 0x80 | (c & 0x3f); + } else if (c < 0x10000) { + /* three bytes */ + buf[i++] = 0xE0 | (c >>> 12); + buf[i++] = 0x80 | (c >>> 6 & 0x3f); + buf[i++] = 0x80 | (c & 0x3f); + } else { + /* four bytes */ + buf[i++] = 0xf0 | (c >>> 18); + buf[i++] = 0x80 | (c >>> 12 & 0x3f); + buf[i++] = 0x80 | (c >>> 6 & 0x3f); + buf[i++] = 0x80 | (c & 0x3f); + } + } + + return buf; + }; + + // Helper (used in 2 places) + function buf2binstring(buf, len) { + // On Chrome, the arguments in a function call that are allowed is `65534`. + // If the length of the buffer is smaller than that, we can use this optimization, + // otherwise we will take a slower path. + if (len < 65534) { + if ((buf.subarray && STR_APPLY_UIA_OK) || (!buf.subarray && STR_APPLY_OK)) { + return String.fromCharCode.apply(null, utils.shrinkBuf(buf, len)); + } + } + + var result = ''; + for (var i = 0; i < len; i++) { + result += String.fromCharCode(buf[i]); + } + return result; + } + + + // Convert byte array to binary string + exports.buf2binstring = function (buf) { + return buf2binstring(buf, buf.length); + }; + + + // Convert binary string (typed, when possible) + exports.binstring2buf = function (str) { + var buf = new utils.Buf8(str.length); + for (var i = 0, len = buf.length; i < len; i++) { + buf[i] = str.charCodeAt(i); + } + return buf; + }; + + + // convert array to string + exports.buf2string = function (buf, max) { + var i, out, c, c_len; + var len = max || buf.length; + + // Reserve max possible length (2 words per char) + // NB: by unknown reasons, Array is significantly faster for + // String.fromCharCode.apply than Uint16Array. + var utf16buf = new Array(len * 2); + + for (out = 0, i = 0; i < len;) { + c = buf[i++]; + // quick process ascii + if (c < 0x80) { utf16buf[out++] = c; continue; } + + c_len = _utf8len[c]; + // skip 5 & 6 byte codes + if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len - 1; continue; } + + // apply mask on first byte + c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07; + // join the rest + while (c_len > 1 && i < len) { + c = (c << 6) | (buf[i++] & 0x3f); + c_len--; + } + + // terminated by end of string? + if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; } + + if (c < 0x10000) { + utf16buf[out++] = c; + } else { + c -= 0x10000; + utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff); + utf16buf[out++] = 0xdc00 | (c & 0x3ff); + } + } + + return buf2binstring(utf16buf, out); + }; + + + // Calculate max possible position in utf8 buffer, + // that will not break sequence. If that's not possible + // - (very small limits) return max size as is. + // + // buf[] - utf8 bytes array + // max - length limit (mandatory); + exports.utf8border = function (buf, max) { + var pos; + + max = max || buf.length; + if (max > buf.length) { max = buf.length; } + + // go back from last position, until start of sequence found + pos = max - 1; + while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; } + + // Very small and broken sequence, + // return max, because we should return something anyway. + if (pos < 0) { return max; } + + // If we came to start of buffer - that means buffer is too small, + // return max too. + if (pos === 0) { return max; } + + return (pos + _utf8len[buf[pos]] > max) ? pos : max; + }; + + },{"./common":1}],3:[function(require,module,exports){ + 'use strict'; + + // Note: adler32 takes 12% for level 0 and 2% for level 6. + // It isn't worth it to make additional optimizations as in original. + // Small size is preferable. + + // (C) 1995-2013 Jean-loup Gailly and Mark Adler + // (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin + // + // This software is provided 'as-is', without any express or implied + // warranty. In no event will the authors be held liable for any damages + // arising from the use of this software. + // + // Permission is granted to anyone to use this software for any purpose, + // including commercial applications, and to alter it and redistribute it + // freely, subject to the following restrictions: + // + // 1. The origin of this software must not be misrepresented; you must not + // claim that you wrote the original software. If you use this software + // in a product, an acknowledgment in the product documentation would be + // appreciated but is not required. + // 2. Altered source versions must be plainly marked as such, and must not be + // misrepresented as being the original software. + // 3. This notice may not be removed or altered from any source distribution. + + function adler32(adler, buf, len, pos) { + var s1 = (adler & 0xffff) |0, + s2 = ((adler >>> 16) & 0xffff) |0, + n = 0; + + while (len !== 0) { + // Set limit ~ twice less than 5552, to keep + // s2 in 31-bits, because we force signed ints. + // in other case %= will fail. + n = len > 2000 ? 2000 : len; + len -= n; + + do { + s1 = (s1 + buf[pos++]) |0; + s2 = (s2 + s1) |0; + } while (--n); + + s1 %= 65521; + s2 %= 65521; + } + + return (s1 | (s2 << 16)) |0; + } + + + module.exports = adler32; + + },{}],4:[function(require,module,exports){ + 'use strict'; + + // (C) 1995-2013 Jean-loup Gailly and Mark Adler + // (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin + // + // This software is provided 'as-is', without any express or implied + // warranty. In no event will the authors be held liable for any damages + // arising from the use of this software. + // + // Permission is granted to anyone to use this software for any purpose, + // including commercial applications, and to alter it and redistribute it + // freely, subject to the following restrictions: + // + // 1. The origin of this software must not be misrepresented; you must not + // claim that you wrote the original software. If you use this software + // in a product, an acknowledgment in the product documentation would be + // appreciated but is not required. + // 2. Altered source versions must be plainly marked as such, and must not be + // misrepresented as being the original software. + // 3. This notice may not be removed or altered from any source distribution. + + module.exports = { + + /* Allowed flush values; see deflate() and inflate() below for details */ + Z_NO_FLUSH: 0, + Z_PARTIAL_FLUSH: 1, + Z_SYNC_FLUSH: 2, + Z_FULL_FLUSH: 3, + Z_FINISH: 4, + Z_BLOCK: 5, + Z_TREES: 6, + + /* Return codes for the compression/decompression functions. Negative values + * are errors, positive values are used for special but normal events. + */ + Z_OK: 0, + Z_STREAM_END: 1, + Z_NEED_DICT: 2, + Z_ERRNO: -1, + Z_STREAM_ERROR: -2, + Z_DATA_ERROR: -3, + //Z_MEM_ERROR: -4, + Z_BUF_ERROR: -5, + //Z_VERSION_ERROR: -6, + + /* compression levels */ + Z_NO_COMPRESSION: 0, + Z_BEST_SPEED: 1, + Z_BEST_COMPRESSION: 9, + Z_DEFAULT_COMPRESSION: -1, + + + Z_FILTERED: 1, + Z_HUFFMAN_ONLY: 2, + Z_RLE: 3, + Z_FIXED: 4, + Z_DEFAULT_STRATEGY: 0, + + /* Possible values of the data_type field (though see inflate()) */ + Z_BINARY: 0, + Z_TEXT: 1, + //Z_ASCII: 1, // = Z_TEXT (deprecated) + Z_UNKNOWN: 2, + + /* The deflate compression method */ + Z_DEFLATED: 8 + //Z_NULL: null // Use -1 or null inline, depending on var type + }; + + },{}],5:[function(require,module,exports){ + 'use strict'; + + // Note: we can't get significant speed boost here. + // So write code to minimize size - no pregenerated tables + // and array tools dependencies. + + // (C) 1995-2013 Jean-loup Gailly and Mark Adler + // (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin + // + // This software is provided 'as-is', without any express or implied + // warranty. In no event will the authors be held liable for any damages + // arising from the use of this software. + // + // Permission is granted to anyone to use this software for any purpose, + // including commercial applications, and to alter it and redistribute it + // freely, subject to the following restrictions: + // + // 1. The origin of this software must not be misrepresented; you must not + // claim that you wrote the original software. If you use this software + // in a product, an acknowledgment in the product documentation would be + // appreciated but is not required. + // 2. Altered source versions must be plainly marked as such, and must not be + // misrepresented as being the original software. + // 3. This notice may not be removed or altered from any source distribution. + + // Use ordinary array, since untyped makes no boost here + function makeTable() { + var c, table = []; + + for (var n = 0; n < 256; n++) { + c = n; + for (var k = 0; k < 8; k++) { + c = ((c & 1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1)); + } + table[n] = c; + } + + return table; + } + + // Create table on load. Just 255 signed longs. Not a problem. + var crcTable = makeTable(); + + + function crc32(crc, buf, len, pos) { + var t = crcTable, + end = pos + len; + + crc ^= -1; + + for (var i = pos; i < end; i++) { + crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF]; + } + + return (crc ^ (-1)); // >>> 0; + } + + + module.exports = crc32; + + },{}],6:[function(require,module,exports){ + 'use strict'; + + // (C) 1995-2013 Jean-loup Gailly and Mark Adler + // (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin + // + // This software is provided 'as-is', without any express or implied + // warranty. In no event will the authors be held liable for any damages + // arising from the use of this software. + // + // Permission is granted to anyone to use this software for any purpose, + // including commercial applications, and to alter it and redistribute it + // freely, subject to the following restrictions: + // + // 1. The origin of this software must not be misrepresented; you must not + // claim that you wrote the original software. If you use this software + // in a product, an acknowledgment in the product documentation would be + // appreciated but is not required. + // 2. Altered source versions must be plainly marked as such, and must not be + // misrepresented as being the original software. + // 3. This notice may not be removed or altered from any source distribution. + + function GZheader() { + /* true if compressed data believed to be text */ + this.text = 0; + /* modification time */ + this.time = 0; + /* extra flags (not used when writing a gzip file) */ + this.xflags = 0; + /* operating system */ + this.os = 0; + /* pointer to extra field or Z_NULL if none */ + this.extra = null; + /* extra field length (valid if extra != Z_NULL) */ + this.extra_len = 0; // Actually, we don't need it in JS, + // but leave for few code modifications + + // + // Setup limits is not necessary because in js we should not preallocate memory + // for inflate use constant limit in 65536 bytes + // + + /* space at extra (only when reading header) */ + // this.extra_max = 0; + /* pointer to zero-terminated file name or Z_NULL */ + this.name = ''; + /* space at name (only when reading header) */ + // this.name_max = 0; + /* pointer to zero-terminated comment or Z_NULL */ + this.comment = ''; + /* space at comment (only when reading header) */ + // this.comm_max = 0; + /* true if there was or will be a header crc */ + this.hcrc = 0; + /* true when done reading gzip header (not used when writing a gzip file) */ + this.done = false; + } + + module.exports = GZheader; + + },{}],7:[function(require,module,exports){ + 'use strict'; + + // (C) 1995-2013 Jean-loup Gailly and Mark Adler + // (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin + // + // This software is provided 'as-is', without any express or implied + // warranty. In no event will the authors be held liable for any damages + // arising from the use of this software. + // + // Permission is granted to anyone to use this software for any purpose, + // including commercial applications, and to alter it and redistribute it + // freely, subject to the following restrictions: + // + // 1. The origin of this software must not be misrepresented; you must not + // claim that you wrote the original software. If you use this software + // in a product, an acknowledgment in the product documentation would be + // appreciated but is not required. + // 2. Altered source versions must be plainly marked as such, and must not be + // misrepresented as being the original software. + // 3. This notice may not be removed or altered from any source distribution. + + // See state defs from inflate.js + var BAD = 30; /* got a data error -- remain here until reset */ + var TYPE = 12; /* i: waiting for type bits, including last-flag bit */ + + /* + Decode literal, length, and distance codes and write out the resulting + literal and match bytes until either not enough input or output is + available, an end-of-block is encountered, or a data error is encountered. + When large enough input and output buffers are supplied to inflate(), for + example, a 16K input buffer and a 64K output buffer, more than 95% of the + inflate execution time is spent in this routine. + + Entry assumptions: + + state.mode === LEN + strm.avail_in >= 6 + strm.avail_out >= 258 + start >= strm.avail_out + state.bits < 8 + + On return, state.mode is one of: + + LEN -- ran out of enough output space or enough available input + TYPE -- reached end of block code, inflate() to interpret next block + BAD -- error in block data + + Notes: + + - The maximum input bits used by a length/distance pair is 15 bits for the + length code, 5 bits for the length extra, 15 bits for the distance code, + and 13 bits for the distance extra. This totals 48 bits, or six bytes. + Therefore if strm.avail_in >= 6, then there is enough input to avoid + checking for available input while decoding. + + - The maximum bytes that a single length/distance pair can output is 258 + bytes, which is the maximum length that can be coded. inflate_fast() + requires strm.avail_out >= 258 for each loop to avoid checking for + output space. + */ + module.exports = function inflate_fast(strm, start) { + var state; + var _in; /* local strm.input */ + var last; /* have enough input while in < last */ + var _out; /* local strm.output */ + var beg; /* inflate()'s initial strm.output */ + var end; /* while out < end, enough space available */ + //#ifdef INFLATE_STRICT + var dmax; /* maximum distance from zlib header */ + //#endif + var wsize; /* window size or zero if not using window */ + var whave; /* valid bytes in the window */ + var wnext; /* window write index */ + // Use `s_window` instead `window`, avoid conflict with instrumentation tools + var s_window; /* allocated sliding window, if wsize != 0 */ + var hold; /* local strm.hold */ + var bits; /* local strm.bits */ + var lcode; /* local strm.lencode */ + var dcode; /* local strm.distcode */ + var lmask; /* mask for first level of length codes */ + var dmask; /* mask for first level of distance codes */ + var here; /* retrieved table entry */ + var op; /* code bits, operation, extra bits, or */ + /* window position, window bytes to copy */ + var len; /* match length, unused bytes */ + var dist; /* match distance */ + var from; /* where to copy match from */ + var from_source; + + + var input, output; // JS specific, because we have no pointers + + /* copy state to local variables */ + state = strm.state; + //here = state.here; + _in = strm.next_in; + input = strm.input; + last = _in + (strm.avail_in - 5); + _out = strm.next_out; + output = strm.output; + beg = _out - (start - strm.avail_out); + end = _out + (strm.avail_out - 257); + //#ifdef INFLATE_STRICT + dmax = state.dmax; + //#endif + wsize = state.wsize; + whave = state.whave; + wnext = state.wnext; + s_window = state.window; + hold = state.hold; + bits = state.bits; + lcode = state.lencode; + dcode = state.distcode; + lmask = (1 << state.lenbits) - 1; + dmask = (1 << state.distbits) - 1; + + + /* decode literals and length/distances until end-of-block or not enough + input data or output space */ + + top: + do { + if (bits < 15) { + hold += input[_in++] << bits; + bits += 8; + hold += input[_in++] << bits; + bits += 8; + } + + here = lcode[hold & lmask]; + + dolen: + for (;;) { // Goto emulation + op = here >>> 24/*here.bits*/; + hold >>>= op; + bits -= op; + op = (here >>> 16) & 0xff/*here.op*/; + if (op === 0) { /* literal */ + //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? + // "inflate: literal '%c'\n" : + // "inflate: literal 0x%02x\n", here.val)); + output[_out++] = here & 0xffff/*here.val*/; + } + else if (op & 16) { /* length base */ + len = here & 0xffff/*here.val*/; + op &= 15; /* number of extra bits */ + if (op) { + if (bits < op) { + hold += input[_in++] << bits; + bits += 8; + } + len += hold & ((1 << op) - 1); + hold >>>= op; + bits -= op; + } + //Tracevv((stderr, "inflate: length %u\n", len)); + if (bits < 15) { + hold += input[_in++] << bits; + bits += 8; + hold += input[_in++] << bits; + bits += 8; + } + here = dcode[hold & dmask]; + + dodist: + for (;;) { // goto emulation + op = here >>> 24/*here.bits*/; + hold >>>= op; + bits -= op; + op = (here >>> 16) & 0xff/*here.op*/; + + if (op & 16) { /* distance base */ + dist = here & 0xffff/*here.val*/; + op &= 15; /* number of extra bits */ + if (bits < op) { + hold += input[_in++] << bits; + bits += 8; + if (bits < op) { + hold += input[_in++] << bits; + bits += 8; + } + } + dist += hold & ((1 << op) - 1); + //#ifdef INFLATE_STRICT + if (dist > dmax) { + strm.msg = 'invalid distance too far back'; + state.mode = BAD; + break top; + } + //#endif + hold >>>= op; + bits -= op; + //Tracevv((stderr, "inflate: distance %u\n", dist)); + op = _out - beg; /* max distance in output */ + if (dist > op) { /* see if copy from window */ + op = dist - op; /* distance back in window */ + if (op > whave) { + if (state.sane) { + strm.msg = 'invalid distance too far back'; + state.mode = BAD; + break top; + } + + // (!) This block is disabled in zlib defaults, + // don't enable it for binary compatibility + //#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR + // if (len <= op - whave) { + // do { + // output[_out++] = 0; + // } while (--len); + // continue top; + // } + // len -= op - whave; + // do { + // output[_out++] = 0; + // } while (--op > whave); + // if (op === 0) { + // from = _out - dist; + // do { + // output[_out++] = output[from++]; + // } while (--len); + // continue top; + // } + //#endif + } + from = 0; // window index + from_source = s_window; + if (wnext === 0) { /* very common case */ + from += wsize - op; + if (op < len) { /* some from window */ + len -= op; + do { + output[_out++] = s_window[from++]; + } while (--op); + from = _out - dist; /* rest from output */ + from_source = output; + } + } + else if (wnext < op) { /* wrap around window */ + from += wsize + wnext - op; + op -= wnext; + if (op < len) { /* some from end of window */ + len -= op; + do { + output[_out++] = s_window[from++]; + } while (--op); + from = 0; + if (wnext < len) { /* some from start of window */ + op = wnext; + len -= op; + do { + output[_out++] = s_window[from++]; + } while (--op); + from = _out - dist; /* rest from output */ + from_source = output; + } + } + } + else { /* contiguous in window */ + from += wnext - op; + if (op < len) { /* some from window */ + len -= op; + do { + output[_out++] = s_window[from++]; + } while (--op); + from = _out - dist; /* rest from output */ + from_source = output; + } + } + while (len > 2) { + output[_out++] = from_source[from++]; + output[_out++] = from_source[from++]; + output[_out++] = from_source[from++]; + len -= 3; + } + if (len) { + output[_out++] = from_source[from++]; + if (len > 1) { + output[_out++] = from_source[from++]; + } + } + } + else { + from = _out - dist; /* copy direct from output */ + do { /* minimum length is three */ + output[_out++] = output[from++]; + output[_out++] = output[from++]; + output[_out++] = output[from++]; + len -= 3; + } while (len > 2); + if (len) { + output[_out++] = output[from++]; + if (len > 1) { + output[_out++] = output[from++]; + } + } + } + } + else if ((op & 64) === 0) { /* 2nd level distance code */ + here = dcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))]; + continue dodist; + } + else { + strm.msg = 'invalid distance code'; + state.mode = BAD; + break top; + } + + break; // need to emulate goto via "continue" + } + } + else if ((op & 64) === 0) { /* 2nd level length code */ + here = lcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))]; + continue dolen; + } + else if (op & 32) { /* end-of-block */ + //Tracevv((stderr, "inflate: end of block\n")); + state.mode = TYPE; + break top; + } + else { + strm.msg = 'invalid literal/length code'; + state.mode = BAD; + break top; + } + + break; // need to emulate goto via "continue" + } + } while (_in < last && _out < end); + + /* return unused bytes (on entry, bits < 8, so in won't go too far back) */ + len = bits >> 3; + _in -= len; + bits -= len << 3; + hold &= (1 << bits) - 1; + + /* update state and return */ + strm.next_in = _in; + strm.next_out = _out; + strm.avail_in = (_in < last ? 5 + (last - _in) : 5 - (_in - last)); + strm.avail_out = (_out < end ? 257 + (end - _out) : 257 - (_out - end)); + state.hold = hold; + state.bits = bits; + return; + }; + + },{}],8:[function(require,module,exports){ + 'use strict'; + + // (C) 1995-2013 Jean-loup Gailly and Mark Adler + // (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin + // + // This software is provided 'as-is', without any express or implied + // warranty. In no event will the authors be held liable for any damages + // arising from the use of this software. + // + // Permission is granted to anyone to use this software for any purpose, + // including commercial applications, and to alter it and redistribute it + // freely, subject to the following restrictions: + // + // 1. The origin of this software must not be misrepresented; you must not + // claim that you wrote the original software. If you use this software + // in a product, an acknowledgment in the product documentation would be + // appreciated but is not required. + // 2. Altered source versions must be plainly marked as such, and must not be + // misrepresented as being the original software. + // 3. This notice may not be removed or altered from any source distribution. + + var utils = require('../utils/common'); + var adler32 = require('./adler32'); + var crc32 = require('./crc32'); + var inflate_fast = require('./inffast'); + var inflate_table = require('./inftrees'); + + var CODES = 0; + var LENS = 1; + var DISTS = 2; + + /* Public constants ==========================================================*/ + /* ===========================================================================*/ + + + /* Allowed flush values; see deflate() and inflate() below for details */ + //var Z_NO_FLUSH = 0; + //var Z_PARTIAL_FLUSH = 1; + //var Z_SYNC_FLUSH = 2; + //var Z_FULL_FLUSH = 3; + var Z_FINISH = 4; + var Z_BLOCK = 5; + var Z_TREES = 6; + + + /* Return codes for the compression/decompression functions. Negative values + * are errors, positive values are used for special but normal events. + */ + var Z_OK = 0; + var Z_STREAM_END = 1; + var Z_NEED_DICT = 2; + //var Z_ERRNO = -1; + var Z_STREAM_ERROR = -2; + var Z_DATA_ERROR = -3; + var Z_MEM_ERROR = -4; + var Z_BUF_ERROR = -5; + //var Z_VERSION_ERROR = -6; + + /* The deflate compression method */ + var Z_DEFLATED = 8; + + + /* STATES ====================================================================*/ + /* ===========================================================================*/ + + + var HEAD = 1; /* i: waiting for magic header */ + var FLAGS = 2; /* i: waiting for method and flags (gzip) */ + var TIME = 3; /* i: waiting for modification time (gzip) */ + var OS = 4; /* i: waiting for extra flags and operating system (gzip) */ + var EXLEN = 5; /* i: waiting for extra length (gzip) */ + var EXTRA = 6; /* i: waiting for extra bytes (gzip) */ + var NAME = 7; /* i: waiting for end of file name (gzip) */ + var COMMENT = 8; /* i: waiting for end of comment (gzip) */ + var HCRC = 9; /* i: waiting for header crc (gzip) */ + var DICTID = 10; /* i: waiting for dictionary check value */ + var DICT = 11; /* waiting for inflateSetDictionary() call */ + var TYPE = 12; /* i: waiting for type bits, including last-flag bit */ + var TYPEDO = 13; /* i: same, but skip check to exit inflate on new block */ + var STORED = 14; /* i: waiting for stored size (length and complement) */ + var COPY_ = 15; /* i/o: same as COPY below, but only first time in */ + var COPY = 16; /* i/o: waiting for input or output to copy stored block */ + var TABLE = 17; /* i: waiting for dynamic block table lengths */ + var LENLENS = 18; /* i: waiting for code length code lengths */ + var CODELENS = 19; /* i: waiting for length/lit and distance code lengths */ + var LEN_ = 20; /* i: same as LEN below, but only first time in */ + var LEN = 21; /* i: waiting for length/lit/eob code */ + var LENEXT = 22; /* i: waiting for length extra bits */ + var DIST = 23; /* i: waiting for distance code */ + var DISTEXT = 24; /* i: waiting for distance extra bits */ + var MATCH = 25; /* o: waiting for output space to copy string */ + var LIT = 26; /* o: waiting for output space to write literal */ + var CHECK = 27; /* i: waiting for 32-bit check value */ + var LENGTH = 28; /* i: waiting for 32-bit length (gzip) */ + var DONE = 29; /* finished check, done -- remain here until reset */ + var BAD = 30; /* got a data error -- remain here until reset */ + var MEM = 31; /* got an inflate() memory error -- remain here until reset */ + var SYNC = 32; /* looking for synchronization bytes to restart inflate() */ + + /* ===========================================================================*/ + + + + var ENOUGH_LENS = 852; + var ENOUGH_DISTS = 592; + //var ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS); + + var MAX_WBITS = 15; + /* 32K LZ77 window */ + var DEF_WBITS = MAX_WBITS; + + + function zswap32(q) { + return (((q >>> 24) & 0xff) + + ((q >>> 8) & 0xff00) + + ((q & 0xff00) << 8) + + ((q & 0xff) << 24)); + } + + + function InflateState() { + this.mode = 0; /* current inflate mode */ + this.last = false; /* true if processing last block */ + this.wrap = 0; /* bit 0 true for zlib, bit 1 true for gzip */ + this.havedict = false; /* true if dictionary provided */ + this.flags = 0; /* gzip header method and flags (0 if zlib) */ + this.dmax = 0; /* zlib header max distance (INFLATE_STRICT) */ + this.check = 0; /* protected copy of check value */ + this.total = 0; /* protected copy of output count */ + // TODO: may be {} + this.head = null; /* where to save gzip header information */ + + /* sliding window */ + this.wbits = 0; /* log base 2 of requested window size */ + this.wsize = 0; /* window size or zero if not using window */ + this.whave = 0; /* valid bytes in the window */ + this.wnext = 0; /* window write index */ + this.window = null; /* allocated sliding window, if needed */ + + /* bit accumulator */ + this.hold = 0; /* input bit accumulator */ + this.bits = 0; /* number of bits in "in" */ + + /* for string and stored block copying */ + this.length = 0; /* literal or length of data to copy */ + this.offset = 0; /* distance back to copy string from */ + + /* for table and code decoding */ + this.extra = 0; /* extra bits needed */ + + /* fixed and dynamic code tables */ + this.lencode = null; /* starting table for length/literal codes */ + this.distcode = null; /* starting table for distance codes */ + this.lenbits = 0; /* index bits for lencode */ + this.distbits = 0; /* index bits for distcode */ + + /* dynamic table building */ + this.ncode = 0; /* number of code length code lengths */ + this.nlen = 0; /* number of length code lengths */ + this.ndist = 0; /* number of distance code lengths */ + this.have = 0; /* number of code lengths in lens[] */ + this.next = null; /* next available space in codes[] */ + + this.lens = new utils.Buf16(320); /* temporary storage for code lengths */ + this.work = new utils.Buf16(288); /* work area for code table building */ + + /* + because we don't have pointers in js, we use lencode and distcode directly + as buffers so we don't need codes + */ + //this.codes = new utils.Buf32(ENOUGH); /* space for code tables */ + this.lendyn = null; /* dynamic table for length/literal codes (JS specific) */ + this.distdyn = null; /* dynamic table for distance codes (JS specific) */ + this.sane = 0; /* if false, allow invalid distance too far */ + this.back = 0; /* bits back of last unprocessed length/lit */ + this.was = 0; /* initial length of match */ + } + + function inflateResetKeep(strm) { + var state; + + if (!strm || !strm.state) { return Z_STREAM_ERROR; } + state = strm.state; + strm.total_in = strm.total_out = state.total = 0; + strm.msg = ''; /*Z_NULL*/ + if (state.wrap) { /* to support ill-conceived Java test suite */ + strm.adler = state.wrap & 1; + } + state.mode = HEAD; + state.last = 0; + state.havedict = 0; + state.dmax = 32768; + state.head = null/*Z_NULL*/; + state.hold = 0; + state.bits = 0; + //state.lencode = state.distcode = state.next = state.codes; + state.lencode = state.lendyn = new utils.Buf32(ENOUGH_LENS); + state.distcode = state.distdyn = new utils.Buf32(ENOUGH_DISTS); + + state.sane = 1; + state.back = -1; + //Tracev((stderr, "inflate: reset\n")); + return Z_OK; + } + + function inflateReset(strm) { + var state; + + if (!strm || !strm.state) { return Z_STREAM_ERROR; } + state = strm.state; + state.wsize = 0; + state.whave = 0; + state.wnext = 0; + return inflateResetKeep(strm); + + } + + function inflateReset2(strm, windowBits) { + var wrap; + var state; + + /* get the state */ + if (!strm || !strm.state) { return Z_STREAM_ERROR; } + state = strm.state; + + /* extract wrap request from windowBits parameter */ + if (windowBits < 0) { + wrap = 0; + windowBits = -windowBits; + } + else { + wrap = (windowBits >> 4) + 1; + if (windowBits < 48) { + windowBits &= 15; + } + } + + /* set number of window bits, free window if different */ + if (windowBits && (windowBits < 8 || windowBits > 15)) { + return Z_STREAM_ERROR; + } + if (state.window !== null && state.wbits !== windowBits) { + state.window = null; + } + + /* update state and reset the rest of it */ + state.wrap = wrap; + state.wbits = windowBits; + return inflateReset(strm); + } + + function inflateInit2(strm, windowBits) { + var ret; + var state; + + if (!strm) { return Z_STREAM_ERROR; } + //strm.msg = Z_NULL; /* in case we return an error */ + + state = new InflateState(); + + //if (state === Z_NULL) return Z_MEM_ERROR; + //Tracev((stderr, "inflate: allocated\n")); + strm.state = state; + state.window = null/*Z_NULL*/; + ret = inflateReset2(strm, windowBits); + if (ret !== Z_OK) { + strm.state = null/*Z_NULL*/; + } + return ret; + } + + function inflateInit(strm) { + return inflateInit2(strm, DEF_WBITS); + } + + + /* + Return state with length and distance decoding tables and index sizes set to + fixed code decoding. Normally this returns fixed tables from inffixed.h. + If BUILDFIXED is defined, then instead this routine builds the tables the + first time it's called, and returns those tables the first time and + thereafter. This reduces the size of the code by about 2K bytes, in + exchange for a little execution time. However, BUILDFIXED should not be + used for threaded applications, since the rewriting of the tables and virgin + may not be thread-safe. + */ + var virgin = true; + + var lenfix, distfix; // We have no pointers in JS, so keep tables separate + + function fixedtables(state) { + /* build fixed huffman tables if first call (may not be thread safe) */ + if (virgin) { + var sym; + + lenfix = new utils.Buf32(512); + distfix = new utils.Buf32(32); + + /* literal/length table */ + sym = 0; + while (sym < 144) { state.lens[sym++] = 8; } + while (sym < 256) { state.lens[sym++] = 9; } + while (sym < 280) { state.lens[sym++] = 7; } + while (sym < 288) { state.lens[sym++] = 8; } + + inflate_table(LENS, state.lens, 0, 288, lenfix, 0, state.work, { bits: 9 }); + + /* distance table */ + sym = 0; + while (sym < 32) { state.lens[sym++] = 5; } + + inflate_table(DISTS, state.lens, 0, 32, distfix, 0, state.work, { bits: 5 }); + + /* do this just once */ + virgin = false; + } + + state.lencode = lenfix; + state.lenbits = 9; + state.distcode = distfix; + state.distbits = 5; + } + + + /* + Update the window with the last wsize (normally 32K) bytes written before + returning. If window does not exist yet, create it. This is only called + when a window is already in use, or when output has been written during this + inflate call, but the end of the deflate stream has not been reached yet. + It is also called to create a window for dictionary data when a dictionary + is loaded. + + Providing output buffers larger than 32K to inflate() should provide a speed + advantage, since only the last 32K of output is copied to the sliding window + upon return from inflate(), and since all distances after the first 32K of + output will fall in the output data, making match copies simpler and faster. + The advantage may be dependent on the size of the processor's data caches. + */ + function updatewindow(strm, src, end, copy) { + var dist; + var state = strm.state; + + /* if it hasn't been done already, allocate space for the window */ + if (state.window === null) { + state.wsize = 1 << state.wbits; + state.wnext = 0; + state.whave = 0; + + state.window = new utils.Buf8(state.wsize); + } + + /* copy state->wsize or less output bytes into the circular window */ + if (copy >= state.wsize) { + utils.arraySet(state.window, src, end - state.wsize, state.wsize, 0); + state.wnext = 0; + state.whave = state.wsize; + } + else { + dist = state.wsize - state.wnext; + if (dist > copy) { + dist = copy; + } + //zmemcpy(state->window + state->wnext, end - copy, dist); + utils.arraySet(state.window, src, end - copy, dist, state.wnext); + copy -= dist; + if (copy) { + //zmemcpy(state->window, end - copy, copy); + utils.arraySet(state.window, src, end - copy, copy, 0); + state.wnext = copy; + state.whave = state.wsize; + } + else { + state.wnext += dist; + if (state.wnext === state.wsize) { state.wnext = 0; } + if (state.whave < state.wsize) { state.whave += dist; } + } + } + return 0; + } + + function inflate(strm, flush) { + var state; + var input, output; // input/output buffers + var next; /* next input INDEX */ + var put; /* next output INDEX */ + var have, left; /* available input and output */ + var hold; /* bit buffer */ + var bits; /* bits in bit buffer */ + var _in, _out; /* save starting available input and output */ + var copy; /* number of stored or match bytes to copy */ + var from; /* where to copy match bytes from */ + var from_source; + var here = 0; /* current decoding table entry */ + var here_bits, here_op, here_val; // paked "here" denormalized (JS specific) + //var last; /* parent table entry */ + var last_bits, last_op, last_val; // paked "last" denormalized (JS specific) + var len; /* length to copy for repeats, bits to drop */ + var ret; /* return code */ + var hbuf = new utils.Buf8(4); /* buffer for gzip header crc calculation */ + var opts; + + var n; // temporary var for NEED_BITS + + var order = /* permutation of code lengths */ + [ 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 ]; + + + if (!strm || !strm.state || !strm.output || + (!strm.input && strm.avail_in !== 0)) { + return Z_STREAM_ERROR; + } + + state = strm.state; + if (state.mode === TYPE) { state.mode = TYPEDO; } /* skip check */ + + + //--- LOAD() --- + put = strm.next_out; + output = strm.output; + left = strm.avail_out; + next = strm.next_in; + input = strm.input; + have = strm.avail_in; + hold = state.hold; + bits = state.bits; + //--- + + _in = have; + _out = left; + ret = Z_OK; + + inf_leave: // goto emulation + for (;;) { + switch (state.mode) { + case HEAD: + if (state.wrap === 0) { + state.mode = TYPEDO; + break; + } + //=== NEEDBITS(16); + while (bits < 16) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + if ((state.wrap & 2) && hold === 0x8b1f) { /* gzip header */ + state.check = 0/*crc32(0L, Z_NULL, 0)*/; + //=== CRC2(state.check, hold); + hbuf[0] = hold & 0xff; + hbuf[1] = (hold >>> 8) & 0xff; + state.check = crc32(state.check, hbuf, 2, 0); + //===// + + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + state.mode = FLAGS; + break; + } + state.flags = 0; /* expect zlib header */ + if (state.head) { + state.head.done = false; + } + if (!(state.wrap & 1) || /* check if zlib header allowed */ + (((hold & 0xff)/*BITS(8)*/ << 8) + (hold >> 8)) % 31) { + strm.msg = 'incorrect header check'; + state.mode = BAD; + break; + } + if ((hold & 0x0f)/*BITS(4)*/ !== Z_DEFLATED) { + strm.msg = 'unknown compression method'; + state.mode = BAD; + break; + } + //--- DROPBITS(4) ---// + hold >>>= 4; + bits -= 4; + //---// + len = (hold & 0x0f)/*BITS(4)*/ + 8; + if (state.wbits === 0) { + state.wbits = len; + } + else if (len > state.wbits) { + strm.msg = 'invalid window size'; + state.mode = BAD; + break; + } + state.dmax = 1 << len; + //Tracev((stderr, "inflate: zlib header ok\n")); + strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/; + state.mode = hold & 0x200 ? DICTID : TYPE; + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + break; + case FLAGS: + //=== NEEDBITS(16); */ + while (bits < 16) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + state.flags = hold; + if ((state.flags & 0xff) !== Z_DEFLATED) { + strm.msg = 'unknown compression method'; + state.mode = BAD; + break; + } + if (state.flags & 0xe000) { + strm.msg = 'unknown header flags set'; + state.mode = BAD; + break; + } + if (state.head) { + state.head.text = ((hold >> 8) & 1); + } + if (state.flags & 0x0200) { + //=== CRC2(state.check, hold); + hbuf[0] = hold & 0xff; + hbuf[1] = (hold >>> 8) & 0xff; + state.check = crc32(state.check, hbuf, 2, 0); + //===// + } + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + state.mode = TIME; + /* falls through */ + case TIME: + //=== NEEDBITS(32); */ + while (bits < 32) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + if (state.head) { + state.head.time = hold; + } + if (state.flags & 0x0200) { + //=== CRC4(state.check, hold) + hbuf[0] = hold & 0xff; + hbuf[1] = (hold >>> 8) & 0xff; + hbuf[2] = (hold >>> 16) & 0xff; + hbuf[3] = (hold >>> 24) & 0xff; + state.check = crc32(state.check, hbuf, 4, 0); + //=== + } + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + state.mode = OS; + /* falls through */ + case OS: + //=== NEEDBITS(16); */ + while (bits < 16) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + if (state.head) { + state.head.xflags = (hold & 0xff); + state.head.os = (hold >> 8); + } + if (state.flags & 0x0200) { + //=== CRC2(state.check, hold); + hbuf[0] = hold & 0xff; + hbuf[1] = (hold >>> 8) & 0xff; + state.check = crc32(state.check, hbuf, 2, 0); + //===// + } + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + state.mode = EXLEN; + /* falls through */ + case EXLEN: + if (state.flags & 0x0400) { + //=== NEEDBITS(16); */ + while (bits < 16) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + state.length = hold; + if (state.head) { + state.head.extra_len = hold; + } + if (state.flags & 0x0200) { + //=== CRC2(state.check, hold); + hbuf[0] = hold & 0xff; + hbuf[1] = (hold >>> 8) & 0xff; + state.check = crc32(state.check, hbuf, 2, 0); + //===// + } + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + } + else if (state.head) { + state.head.extra = null/*Z_NULL*/; + } + state.mode = EXTRA; + /* falls through */ + case EXTRA: + if (state.flags & 0x0400) { + copy = state.length; + if (copy > have) { copy = have; } + if (copy) { + if (state.head) { + len = state.head.extra_len - state.length; + if (!state.head.extra) { + // Use untyped array for more convenient processing later + state.head.extra = new Array(state.head.extra_len); + } + utils.arraySet( + state.head.extra, + input, + next, + // extra field is limited to 65536 bytes + // - no need for additional size check + copy, + /*len + copy > state.head.extra_max - len ? state.head.extra_max : copy,*/ + len + ); + //zmemcpy(state.head.extra + len, next, + // len + copy > state.head.extra_max ? + // state.head.extra_max - len : copy); + } + if (state.flags & 0x0200) { + state.check = crc32(state.check, input, copy, next); + } + have -= copy; + next += copy; + state.length -= copy; + } + if (state.length) { break inf_leave; } + } + state.length = 0; + state.mode = NAME; + /* falls through */ + case NAME: + if (state.flags & 0x0800) { + if (have === 0) { break inf_leave; } + copy = 0; + do { + // TODO: 2 or 1 bytes? + len = input[next + copy++]; + /* use constant limit because in js we should not preallocate memory */ + if (state.head && len && + (state.length < 65536 /*state.head.name_max*/)) { + state.head.name += String.fromCharCode(len); + } + } while (len && copy < have); + + if (state.flags & 0x0200) { + state.check = crc32(state.check, input, copy, next); + } + have -= copy; + next += copy; + if (len) { break inf_leave; } + } + else if (state.head) { + state.head.name = null; + } + state.length = 0; + state.mode = COMMENT; + /* falls through */ + case COMMENT: + if (state.flags & 0x1000) { + if (have === 0) { break inf_leave; } + copy = 0; + do { + len = input[next + copy++]; + /* use constant limit because in js we should not preallocate memory */ + if (state.head && len && + (state.length < 65536 /*state.head.comm_max*/)) { + state.head.comment += String.fromCharCode(len); + } + } while (len && copy < have); + if (state.flags & 0x0200) { + state.check = crc32(state.check, input, copy, next); + } + have -= copy; + next += copy; + if (len) { break inf_leave; } + } + else if (state.head) { + state.head.comment = null; + } + state.mode = HCRC; + /* falls through */ + case HCRC: + if (state.flags & 0x0200) { + //=== NEEDBITS(16); */ + while (bits < 16) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + if (hold !== (state.check & 0xffff)) { + strm.msg = 'header crc mismatch'; + state.mode = BAD; + break; + } + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + } + if (state.head) { + state.head.hcrc = ((state.flags >> 9) & 1); + state.head.done = true; + } + strm.adler = state.check = 0; + state.mode = TYPE; + break; + case DICTID: + //=== NEEDBITS(32); */ + while (bits < 32) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + strm.adler = state.check = zswap32(hold); + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + state.mode = DICT; + /* falls through */ + case DICT: + if (state.havedict === 0) { + //--- RESTORE() --- + strm.next_out = put; + strm.avail_out = left; + strm.next_in = next; + strm.avail_in = have; + state.hold = hold; + state.bits = bits; + //--- + return Z_NEED_DICT; + } + strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/; + state.mode = TYPE; + /* falls through */ + case TYPE: + if (flush === Z_BLOCK || flush === Z_TREES) { break inf_leave; } + /* falls through */ + case TYPEDO: + if (state.last) { + //--- BYTEBITS() ---// + hold >>>= bits & 7; + bits -= bits & 7; + //---// + state.mode = CHECK; + break; + } + //=== NEEDBITS(3); */ + while (bits < 3) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + state.last = (hold & 0x01)/*BITS(1)*/; + //--- DROPBITS(1) ---// + hold >>>= 1; + bits -= 1; + //---// + + switch ((hold & 0x03)/*BITS(2)*/) { + case 0: /* stored block */ + //Tracev((stderr, "inflate: stored block%s\n", + // state.last ? " (last)" : "")); + state.mode = STORED; + break; + case 1: /* fixed block */ + fixedtables(state); + //Tracev((stderr, "inflate: fixed codes block%s\n", + // state.last ? " (last)" : "")); + state.mode = LEN_; /* decode codes */ + if (flush === Z_TREES) { + //--- DROPBITS(2) ---// + hold >>>= 2; + bits -= 2; + //---// + break inf_leave; + } + break; + case 2: /* dynamic block */ + //Tracev((stderr, "inflate: dynamic codes block%s\n", + // state.last ? " (last)" : "")); + state.mode = TABLE; + break; + case 3: + strm.msg = 'invalid block type'; + state.mode = BAD; + } + //--- DROPBITS(2) ---// + hold >>>= 2; + bits -= 2; + //---// + break; + case STORED: + //--- BYTEBITS() ---// /* go to byte boundary */ + hold >>>= bits & 7; + bits -= bits & 7; + //---// + //=== NEEDBITS(32); */ + while (bits < 32) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + if ((hold & 0xffff) !== ((hold >>> 16) ^ 0xffff)) { + strm.msg = 'invalid stored block lengths'; + state.mode = BAD; + break; + } + state.length = hold & 0xffff; + //Tracev((stderr, "inflate: stored length %u\n", + // state.length)); + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + state.mode = COPY_; + if (flush === Z_TREES) { break inf_leave; } + /* falls through */ + case COPY_: + state.mode = COPY; + /* falls through */ + case COPY: + copy = state.length; + if (copy) { + if (copy > have) { copy = have; } + if (copy > left) { copy = left; } + if (copy === 0) { break inf_leave; } + //--- zmemcpy(put, next, copy); --- + utils.arraySet(output, input, next, copy, put); + //---// + have -= copy; + next += copy; + left -= copy; + put += copy; + state.length -= copy; + break; + } + //Tracev((stderr, "inflate: stored end\n")); + state.mode = TYPE; + break; + case TABLE: + //=== NEEDBITS(14); */ + while (bits < 14) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + state.nlen = (hold & 0x1f)/*BITS(5)*/ + 257; + //--- DROPBITS(5) ---// + hold >>>= 5; + bits -= 5; + //---// + state.ndist = (hold & 0x1f)/*BITS(5)*/ + 1; + //--- DROPBITS(5) ---// + hold >>>= 5; + bits -= 5; + //---// + state.ncode = (hold & 0x0f)/*BITS(4)*/ + 4; + //--- DROPBITS(4) ---// + hold >>>= 4; + bits -= 4; + //---// + //#ifndef PKZIP_BUG_WORKAROUND + if (state.nlen > 286 || state.ndist > 30) { + strm.msg = 'too many length or distance symbols'; + state.mode = BAD; + break; + } + //#endif + //Tracev((stderr, "inflate: table sizes ok\n")); + state.have = 0; + state.mode = LENLENS; + /* falls through */ + case LENLENS: + while (state.have < state.ncode) { + //=== NEEDBITS(3); + while (bits < 3) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + state.lens[order[state.have++]] = (hold & 0x07);//BITS(3); + //--- DROPBITS(3) ---// + hold >>>= 3; + bits -= 3; + //---// + } + while (state.have < 19) { + state.lens[order[state.have++]] = 0; + } + // We have separate tables & no pointers. 2 commented lines below not needed. + //state.next = state.codes; + //state.lencode = state.next; + // Switch to use dynamic table + state.lencode = state.lendyn; + state.lenbits = 7; + + opts = { bits: state.lenbits }; + ret = inflate_table(CODES, state.lens, 0, 19, state.lencode, 0, state.work, opts); + state.lenbits = opts.bits; + + if (ret) { + strm.msg = 'invalid code lengths set'; + state.mode = BAD; + break; + } + //Tracev((stderr, "inflate: code lengths ok\n")); + state.have = 0; + state.mode = CODELENS; + /* falls through */ + case CODELENS: + while (state.have < state.nlen + state.ndist) { + for (;;) { + here = state.lencode[hold & ((1 << state.lenbits) - 1)];/*BITS(state.lenbits)*/ + here_bits = here >>> 24; + here_op = (here >>> 16) & 0xff; + here_val = here & 0xffff; + + if ((here_bits) <= bits) { break; } + //--- PULLBYTE() ---// + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + //---// + } + if (here_val < 16) { + //--- DROPBITS(here.bits) ---// + hold >>>= here_bits; + bits -= here_bits; + //---// + state.lens[state.have++] = here_val; + } + else { + if (here_val === 16) { + //=== NEEDBITS(here.bits + 2); + n = here_bits + 2; + while (bits < n) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + //--- DROPBITS(here.bits) ---// + hold >>>= here_bits; + bits -= here_bits; + //---// + if (state.have === 0) { + strm.msg = 'invalid bit length repeat'; + state.mode = BAD; + break; + } + len = state.lens[state.have - 1]; + copy = 3 + (hold & 0x03);//BITS(2); + //--- DROPBITS(2) ---// + hold >>>= 2; + bits -= 2; + //---// + } + else if (here_val === 17) { + //=== NEEDBITS(here.bits + 3); + n = here_bits + 3; + while (bits < n) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + //--- DROPBITS(here.bits) ---// + hold >>>= here_bits; + bits -= here_bits; + //---// + len = 0; + copy = 3 + (hold & 0x07);//BITS(3); + //--- DROPBITS(3) ---// + hold >>>= 3; + bits -= 3; + //---// + } + else { + //=== NEEDBITS(here.bits + 7); + n = here_bits + 7; + while (bits < n) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + //--- DROPBITS(here.bits) ---// + hold >>>= here_bits; + bits -= here_bits; + //---// + len = 0; + copy = 11 + (hold & 0x7f);//BITS(7); + //--- DROPBITS(7) ---// + hold >>>= 7; + bits -= 7; + //---// + } + if (state.have + copy > state.nlen + state.ndist) { + strm.msg = 'invalid bit length repeat'; + state.mode = BAD; + break; + } + while (copy--) { + state.lens[state.have++] = len; + } + } + } + + /* handle error breaks in while */ + if (state.mode === BAD) { break; } + + /* check for end-of-block code (better have one) */ + if (state.lens[256] === 0) { + strm.msg = 'invalid code -- missing end-of-block'; + state.mode = BAD; + break; + } + + /* build code tables -- note: do not change the lenbits or distbits + values here (9 and 6) without reading the comments in inftrees.h + concerning the ENOUGH constants, which depend on those values */ + state.lenbits = 9; + + opts = { bits: state.lenbits }; + ret = inflate_table(LENS, state.lens, 0, state.nlen, state.lencode, 0, state.work, opts); + // We have separate tables & no pointers. 2 commented lines below not needed. + // state.next_index = opts.table_index; + state.lenbits = opts.bits; + // state.lencode = state.next; + + if (ret) { + strm.msg = 'invalid literal/lengths set'; + state.mode = BAD; + break; + } + + state.distbits = 6; + //state.distcode.copy(state.codes); + // Switch to use dynamic table + state.distcode = state.distdyn; + opts = { bits: state.distbits }; + ret = inflate_table(DISTS, state.lens, state.nlen, state.ndist, state.distcode, 0, state.work, opts); + // We have separate tables & no pointers. 2 commented lines below not needed. + // state.next_index = opts.table_index; + state.distbits = opts.bits; + // state.distcode = state.next; + + if (ret) { + strm.msg = 'invalid distances set'; + state.mode = BAD; + break; + } + //Tracev((stderr, 'inflate: codes ok\n')); + state.mode = LEN_; + if (flush === Z_TREES) { break inf_leave; } + /* falls through */ + case LEN_: + state.mode = LEN; + /* falls through */ + case LEN: + if (have >= 6 && left >= 258) { + //--- RESTORE() --- + strm.next_out = put; + strm.avail_out = left; + strm.next_in = next; + strm.avail_in = have; + state.hold = hold; + state.bits = bits; + //--- + inflate_fast(strm, _out); + //--- LOAD() --- + put = strm.next_out; + output = strm.output; + left = strm.avail_out; + next = strm.next_in; + input = strm.input; + have = strm.avail_in; + hold = state.hold; + bits = state.bits; + //--- + + if (state.mode === TYPE) { + state.back = -1; + } + break; + } + state.back = 0; + for (;;) { + here = state.lencode[hold & ((1 << state.lenbits) - 1)]; /*BITS(state.lenbits)*/ + here_bits = here >>> 24; + here_op = (here >>> 16) & 0xff; + here_val = here & 0xffff; + + if (here_bits <= bits) { break; } + //--- PULLBYTE() ---// + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + //---// + } + if (here_op && (here_op & 0xf0) === 0) { + last_bits = here_bits; + last_op = here_op; + last_val = here_val; + for (;;) { + here = state.lencode[last_val + + ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)]; + here_bits = here >>> 24; + here_op = (here >>> 16) & 0xff; + here_val = here & 0xffff; + + if ((last_bits + here_bits) <= bits) { break; } + //--- PULLBYTE() ---// + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + //---// + } + //--- DROPBITS(last.bits) ---// + hold >>>= last_bits; + bits -= last_bits; + //---// + state.back += last_bits; + } + //--- DROPBITS(here.bits) ---// + hold >>>= here_bits; + bits -= here_bits; + //---// + state.back += here_bits; + state.length = here_val; + if (here_op === 0) { + //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? + // "inflate: literal '%c'\n" : + // "inflate: literal 0x%02x\n", here.val)); + state.mode = LIT; + break; + } + if (here_op & 32) { + //Tracevv((stderr, "inflate: end of block\n")); + state.back = -1; + state.mode = TYPE; + break; + } + if (here_op & 64) { + strm.msg = 'invalid literal/length code'; + state.mode = BAD; + break; + } + state.extra = here_op & 15; + state.mode = LENEXT; + /* falls through */ + case LENEXT: + if (state.extra) { + //=== NEEDBITS(state.extra); + n = state.extra; + while (bits < n) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + state.length += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/; + //--- DROPBITS(state.extra) ---// + hold >>>= state.extra; + bits -= state.extra; + //---// + state.back += state.extra; + } + //Tracevv((stderr, "inflate: length %u\n", state.length)); + state.was = state.length; + state.mode = DIST; + /* falls through */ + case DIST: + for (;;) { + here = state.distcode[hold & ((1 << state.distbits) - 1)];/*BITS(state.distbits)*/ + here_bits = here >>> 24; + here_op = (here >>> 16) & 0xff; + here_val = here & 0xffff; + + if ((here_bits) <= bits) { break; } + //--- PULLBYTE() ---// + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + //---// + } + if ((here_op & 0xf0) === 0) { + last_bits = here_bits; + last_op = here_op; + last_val = here_val; + for (;;) { + here = state.distcode[last_val + + ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)]; + here_bits = here >>> 24; + here_op = (here >>> 16) & 0xff; + here_val = here & 0xffff; + + if ((last_bits + here_bits) <= bits) { break; } + //--- PULLBYTE() ---// + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + //---// + } + //--- DROPBITS(last.bits) ---// + hold >>>= last_bits; + bits -= last_bits; + //---// + state.back += last_bits; + } + //--- DROPBITS(here.bits) ---// + hold >>>= here_bits; + bits -= here_bits; + //---// + state.back += here_bits; + if (here_op & 64) { + strm.msg = 'invalid distance code'; + state.mode = BAD; + break; + } + state.offset = here_val; + state.extra = (here_op) & 15; + state.mode = DISTEXT; + /* falls through */ + case DISTEXT: + if (state.extra) { + //=== NEEDBITS(state.extra); + n = state.extra; + while (bits < n) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + state.offset += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/; + //--- DROPBITS(state.extra) ---// + hold >>>= state.extra; + bits -= state.extra; + //---// + state.back += state.extra; + } + //#ifdef INFLATE_STRICT + if (state.offset > state.dmax) { + strm.msg = 'invalid distance too far back'; + state.mode = BAD; + break; + } + //#endif + //Tracevv((stderr, "inflate: distance %u\n", state.offset)); + state.mode = MATCH; + /* falls through */ + case MATCH: + if (left === 0) { break inf_leave; } + copy = _out - left; + if (state.offset > copy) { /* copy from window */ + copy = state.offset - copy; + if (copy > state.whave) { + if (state.sane) { + strm.msg = 'invalid distance too far back'; + state.mode = BAD; + break; + } + // (!) This block is disabled in zlib defaults, + // don't enable it for binary compatibility + //#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR + // Trace((stderr, "inflate.c too far\n")); + // copy -= state.whave; + // if (copy > state.length) { copy = state.length; } + // if (copy > left) { copy = left; } + // left -= copy; + // state.length -= copy; + // do { + // output[put++] = 0; + // } while (--copy); + // if (state.length === 0) { state.mode = LEN; } + // break; + //#endif + } + if (copy > state.wnext) { + copy -= state.wnext; + from = state.wsize - copy; + } + else { + from = state.wnext - copy; + } + if (copy > state.length) { copy = state.length; } + from_source = state.window; + } + else { /* copy from output */ + from_source = output; + from = put - state.offset; + copy = state.length; + } + if (copy > left) { copy = left; } + left -= copy; + state.length -= copy; + do { + output[put++] = from_source[from++]; + } while (--copy); + if (state.length === 0) { state.mode = LEN; } + break; + case LIT: + if (left === 0) { break inf_leave; } + output[put++] = state.length; + left--; + state.mode = LEN; + break; + case CHECK: + if (state.wrap) { + //=== NEEDBITS(32); + while (bits < 32) { + if (have === 0) { break inf_leave; } + have--; + // Use '|' instead of '+' to make sure that result is signed + hold |= input[next++] << bits; + bits += 8; + } + //===// + _out -= left; + strm.total_out += _out; + state.total += _out; + if (_out) { + strm.adler = state.check = + /*UPDATE(state.check, put - _out, _out);*/ + (state.flags ? crc32(state.check, output, _out, put - _out) : adler32(state.check, output, _out, put - _out)); + + } + _out = left; + // NB: crc32 stored as signed 32-bit int, zswap32 returns signed too + if ((state.flags ? hold : zswap32(hold)) !== state.check) { + strm.msg = 'incorrect data check'; + state.mode = BAD; + break; + } + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + //Tracev((stderr, "inflate: check matches trailer\n")); + } + state.mode = LENGTH; + /* falls through */ + case LENGTH: + if (state.wrap && state.flags) { + //=== NEEDBITS(32); + while (bits < 32) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + if (hold !== (state.total & 0xffffffff)) { + strm.msg = 'incorrect length check'; + state.mode = BAD; + break; + } + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + //Tracev((stderr, "inflate: length matches trailer\n")); + } + state.mode = DONE; + /* falls through */ + case DONE: + ret = Z_STREAM_END; + break inf_leave; + case BAD: + ret = Z_DATA_ERROR; + break inf_leave; + case MEM: + return Z_MEM_ERROR; + case SYNC: + /* falls through */ + default: + return Z_STREAM_ERROR; + } + } + + // inf_leave <- here is real place for "goto inf_leave", emulated via "break inf_leave" + + /* + Return from inflate(), updating the total counts and the check value. + If there was no progress during the inflate() call, return a buffer + error. Call updatewindow() to create and/or update the window state. + Note: a memory error from inflate() is non-recoverable. + */ + + //--- RESTORE() --- + strm.next_out = put; + strm.avail_out = left; + strm.next_in = next; + strm.avail_in = have; + state.hold = hold; + state.bits = bits; + //--- + + if (state.wsize || (_out !== strm.avail_out && state.mode < BAD && + (state.mode < CHECK || flush !== Z_FINISH))) { + if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) { + state.mode = MEM; + return Z_MEM_ERROR; + } + } + _in -= strm.avail_in; + _out -= strm.avail_out; + strm.total_in += _in; + strm.total_out += _out; + state.total += _out; + if (state.wrap && _out) { + strm.adler = state.check = /*UPDATE(state.check, strm.next_out - _out, _out);*/ + (state.flags ? crc32(state.check, output, _out, strm.next_out - _out) : adler32(state.check, output, _out, strm.next_out - _out)); + } + strm.data_type = state.bits + (state.last ? 64 : 0) + + (state.mode === TYPE ? 128 : 0) + + (state.mode === LEN_ || state.mode === COPY_ ? 256 : 0); + if (((_in === 0 && _out === 0) || flush === Z_FINISH) && ret === Z_OK) { + ret = Z_BUF_ERROR; + } + return ret; + } + + function inflateEnd(strm) { + + if (!strm || !strm.state /*|| strm->zfree == (free_func)0*/) { + return Z_STREAM_ERROR; + } + + var state = strm.state; + if (state.window) { + state.window = null; + } + strm.state = null; + return Z_OK; + } + + function inflateGetHeader(strm, head) { + var state; + + /* check state */ + if (!strm || !strm.state) { return Z_STREAM_ERROR; } + state = strm.state; + if ((state.wrap & 2) === 0) { return Z_STREAM_ERROR; } + + /* save header structure */ + state.head = head; + head.done = false; + return Z_OK; + } + + function inflateSetDictionary(strm, dictionary) { + var dictLength = dictionary.length; + + var state; + var dictid; + var ret; + + /* check state */ + if (!strm /* == Z_NULL */ || !strm.state /* == Z_NULL */) { return Z_STREAM_ERROR; } + state = strm.state; + + if (state.wrap !== 0 && state.mode !== DICT) { + return Z_STREAM_ERROR; + } + + /* check for correct dictionary identifier */ + if (state.mode === DICT) { + dictid = 1; /* adler32(0, null, 0)*/ + /* dictid = adler32(dictid, dictionary, dictLength); */ + dictid = adler32(dictid, dictionary, dictLength, 0); + if (dictid !== state.check) { + return Z_DATA_ERROR; + } + } + /* copy dictionary to window using updatewindow(), which will amend the + existing dictionary if appropriate */ + ret = updatewindow(strm, dictionary, dictLength, dictLength); + if (ret) { + state.mode = MEM; + return Z_MEM_ERROR; + } + state.havedict = 1; + // Tracev((stderr, "inflate: dictionary set\n")); + return Z_OK; + } + + exports.inflateReset = inflateReset; + exports.inflateReset2 = inflateReset2; + exports.inflateResetKeep = inflateResetKeep; + exports.inflateInit = inflateInit; + exports.inflateInit2 = inflateInit2; + exports.inflate = inflate; + exports.inflateEnd = inflateEnd; + exports.inflateGetHeader = inflateGetHeader; + exports.inflateSetDictionary = inflateSetDictionary; + exports.inflateInfo = 'pako inflate (from Nodeca project)'; + + /* Not implemented + exports.inflateCopy = inflateCopy; + exports.inflateGetDictionary = inflateGetDictionary; + exports.inflateMark = inflateMark; + exports.inflatePrime = inflatePrime; + exports.inflateSync = inflateSync; + exports.inflateSyncPoint = inflateSyncPoint; + exports.inflateUndermine = inflateUndermine; + */ + + },{"../utils/common":1,"./adler32":3,"./crc32":5,"./inffast":7,"./inftrees":9}],9:[function(require,module,exports){ + 'use strict'; + + // (C) 1995-2013 Jean-loup Gailly and Mark Adler + // (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin + // + // This software is provided 'as-is', without any express or implied + // warranty. In no event will the authors be held liable for any damages + // arising from the use of this software. + // + // Permission is granted to anyone to use this software for any purpose, + // including commercial applications, and to alter it and redistribute it + // freely, subject to the following restrictions: + // + // 1. The origin of this software must not be misrepresented; you must not + // claim that you wrote the original software. If you use this software + // in a product, an acknowledgment in the product documentation would be + // appreciated but is not required. + // 2. Altered source versions must be plainly marked as such, and must not be + // misrepresented as being the original software. + // 3. This notice may not be removed or altered from any source distribution. + + var utils = require('../utils/common'); + + var MAXBITS = 15; + var ENOUGH_LENS = 852; + var ENOUGH_DISTS = 592; + //var ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS); + + var CODES = 0; + var LENS = 1; + var DISTS = 2; + + var lbase = [ /* Length codes 257..285 base */ + 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, + 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0 + ]; + + var lext = [ /* Length codes 257..285 extra */ + 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18, + 19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 72, 78 + ]; + + var dbase = [ /* Distance codes 0..29 base */ + 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, + 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, + 8193, 12289, 16385, 24577, 0, 0 + ]; + + var dext = [ /* Distance codes 0..29 extra */ + 16, 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, + 23, 23, 24, 24, 25, 25, 26, 26, 27, 27, + 28, 28, 29, 29, 64, 64 + ]; + + module.exports = function inflate_table(type, lens, lens_index, codes, table, table_index, work, opts) + { + var bits = opts.bits; + //here = opts.here; /* table entry for duplication */ + + var len = 0; /* a code's length in bits */ + var sym = 0; /* index of code symbols */ + var min = 0, max = 0; /* minimum and maximum code lengths */ + var root = 0; /* number of index bits for root table */ + var curr = 0; /* number of index bits for current table */ + var drop = 0; /* code bits to drop for sub-table */ + var left = 0; /* number of prefix codes available */ + var used = 0; /* code entries in table used */ + var huff = 0; /* Huffman code */ + var incr; /* for incrementing code, index */ + var fill; /* index for replicating entries */ + var low; /* low bits for current root entry */ + var mask; /* mask for low root bits */ + var next; /* next available space in table */ + var base = null; /* base value table to use */ + var base_index = 0; + // var shoextra; /* extra bits table to use */ + var end; /* use base and extra for symbol > end */ + var count = new utils.Buf16(MAXBITS + 1); //[MAXBITS+1]; /* number of codes of each length */ + var offs = new utils.Buf16(MAXBITS + 1); //[MAXBITS+1]; /* offsets in table for each length */ + var extra = null; + var extra_index = 0; + + var here_bits, here_op, here_val; + + /* + Process a set of code lengths to create a canonical Huffman code. The + code lengths are lens[0..codes-1]. Each length corresponds to the + symbols 0..codes-1. The Huffman code is generated by first sorting the + symbols by length from short to long, and retaining the symbol order + for codes with equal lengths. Then the code starts with all zero bits + for the first code of the shortest length, and the codes are integer + increments for the same length, and zeros are appended as the length + increases. For the deflate format, these bits are stored backwards + from their more natural integer increment ordering, and so when the + decoding tables are built in the large loop below, the integer codes + are incremented backwards. + + This routine assumes, but does not check, that all of the entries in + lens[] are in the range 0..MAXBITS. The caller must assure this. + 1..MAXBITS is interpreted as that code length. zero means that that + symbol does not occur in this code. + + The codes are sorted by computing a count of codes for each length, + creating from that a table of starting indices for each length in the + sorted table, and then entering the symbols in order in the sorted + table. The sorted table is work[], with that space being provided by + the caller. + + The length counts are used for other purposes as well, i.e. finding + the minimum and maximum length codes, determining if there are any + codes at all, checking for a valid set of lengths, and looking ahead + at length counts to determine sub-table sizes when building the + decoding tables. + */ + + /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */ + for (len = 0; len <= MAXBITS; len++) { + count[len] = 0; + } + for (sym = 0; sym < codes; sym++) { + count[lens[lens_index + sym]]++; + } + + /* bound code lengths, force root to be within code lengths */ + root = bits; + for (max = MAXBITS; max >= 1; max--) { + if (count[max] !== 0) { break; } + } + if (root > max) { + root = max; + } + if (max === 0) { /* no symbols to code at all */ + //table.op[opts.table_index] = 64; //here.op = (var char)64; /* invalid code marker */ + //table.bits[opts.table_index] = 1; //here.bits = (var char)1; + //table.val[opts.table_index++] = 0; //here.val = (var short)0; + table[table_index++] = (1 << 24) | (64 << 16) | 0; + + + //table.op[opts.table_index] = 64; + //table.bits[opts.table_index] = 1; + //table.val[opts.table_index++] = 0; + table[table_index++] = (1 << 24) | (64 << 16) | 0; + + opts.bits = 1; + return 0; /* no symbols, but wait for decoding to report error */ + } + for (min = 1; min < max; min++) { + if (count[min] !== 0) { break; } + } + if (root < min) { + root = min; + } + + /* check for an over-subscribed or incomplete set of lengths */ + left = 1; + for (len = 1; len <= MAXBITS; len++) { + left <<= 1; + left -= count[len]; + if (left < 0) { + return -1; + } /* over-subscribed */ + } + if (left > 0 && (type === CODES || max !== 1)) { + return -1; /* incomplete set */ + } + + /* generate offsets into symbol table for each length for sorting */ + offs[1] = 0; + for (len = 1; len < MAXBITS; len++) { + offs[len + 1] = offs[len] + count[len]; + } + + /* sort symbols by length, by symbol order within each length */ + for (sym = 0; sym < codes; sym++) { + if (lens[lens_index + sym] !== 0) { + work[offs[lens[lens_index + sym]]++] = sym; + } + } + + /* + Create and fill in decoding tables. In this loop, the table being + filled is at next and has curr index bits. The code being used is huff + with length len. That code is converted to an index by dropping drop + bits off of the bottom. For codes where len is less than drop + curr, + those top drop + curr - len bits are incremented through all values to + fill the table with replicated entries. + + root is the number of index bits for the root table. When len exceeds + root, sub-tables are created pointed to by the root entry with an index + of the low root bits of huff. This is saved in low to check for when a + new sub-table should be started. drop is zero when the root table is + being filled, and drop is root when sub-tables are being filled. + + When a new sub-table is needed, it is necessary to look ahead in the + code lengths to determine what size sub-table is needed. The length + counts are used for this, and so count[] is decremented as codes are + entered in the tables. + + used keeps track of how many table entries have been allocated from the + provided *table space. It is checked for LENS and DIST tables against + the constants ENOUGH_LENS and ENOUGH_DISTS to guard against changes in + the initial root table size constants. See the comments in inftrees.h + for more information. + + sym increments through all symbols, and the loop terminates when + all codes of length max, i.e. all codes, have been processed. This + routine permits incomplete codes, so another loop after this one fills + in the rest of the decoding tables with invalid code markers. + */ + + /* set up for code type */ + // poor man optimization - use if-else instead of switch, + // to avoid deopts in old v8 + if (type === CODES) { + base = extra = work; /* dummy value--not used */ + end = 19; + + } else if (type === LENS) { + base = lbase; + base_index -= 257; + extra = lext; + extra_index -= 257; + end = 256; + + } else { /* DISTS */ + base = dbase; + extra = dext; + end = -1; + } + + /* initialize opts for loop */ + huff = 0; /* starting code */ + sym = 0; /* starting code symbol */ + len = min; /* starting code length */ + next = table_index; /* current table to fill in */ + curr = root; /* current table index bits */ + drop = 0; /* current bits to drop from code for index */ + low = -1; /* trigger new sub-table when len > root */ + used = 1 << root; /* use root table entries */ + mask = used - 1; /* mask for comparing low */ + + /* check available table space */ + if ((type === LENS && used > ENOUGH_LENS) || + (type === DISTS && used > ENOUGH_DISTS)) { + return 1; + } + + /* process all codes and make table entries */ + for (;;) { + /* create table entry */ + here_bits = len - drop; + if (work[sym] < end) { + here_op = 0; + here_val = work[sym]; + } + else if (work[sym] > end) { + here_op = extra[extra_index + work[sym]]; + here_val = base[base_index + work[sym]]; + } + else { + here_op = 32 + 64; /* end of block */ + here_val = 0; + } + + /* replicate for those indices with low len bits equal to huff */ + incr = 1 << (len - drop); + fill = 1 << curr; + min = fill; /* save offset to next table */ + do { + fill -= incr; + table[next + (huff >> drop) + fill] = (here_bits << 24) | (here_op << 16) | here_val |0; + } while (fill !== 0); + + /* backwards increment the len-bit code huff */ + incr = 1 << (len - 1); + while (huff & incr) { + incr >>= 1; + } + if (incr !== 0) { + huff &= incr - 1; + huff += incr; + } else { + huff = 0; + } + + /* go to next symbol, update count, len */ + sym++; + if (--count[len] === 0) { + if (len === max) { break; } + len = lens[lens_index + work[sym]]; + } + + /* create new sub-table if needed */ + if (len > root && (huff & mask) !== low) { + /* if first time, transition to sub-tables */ + if (drop === 0) { + drop = root; + } + + /* increment past last table */ + next += min; /* here min is 1 << curr */ + + /* determine length of next table */ + curr = len - drop; + left = 1 << curr; + while (curr + drop < max) { + left -= count[curr + drop]; + if (left <= 0) { break; } + curr++; + left <<= 1; + } + + /* check for enough space */ + used += 1 << curr; + if ((type === LENS && used > ENOUGH_LENS) || + (type === DISTS && used > ENOUGH_DISTS)) { + return 1; + } + + /* point entry in root table to sub-table */ + low = huff & mask; + /*table.op[low] = curr; + table.bits[low] = root; + table.val[low] = next - opts.table_index;*/ + table[low] = (root << 24) | (curr << 16) | (next - table_index) |0; + } + } + + /* fill in remaining table entry if code is incomplete (guaranteed to have + at most one remaining entry, since if the code is incomplete, the + maximum code length that was allowed to get this far is one bit) */ + if (huff !== 0) { + //table.op[next + huff] = 64; /* invalid code marker */ + //table.bits[next + huff] = len - drop; + //table.val[next + huff] = 0; + table[next + huff] = ((len - drop) << 24) | (64 << 16) |0; + } + + /* set return parameters */ + //opts.table_index += used; + opts.bits = root; + return 0; + }; + + },{"../utils/common":1}],10:[function(require,module,exports){ + 'use strict'; + + // (C) 1995-2013 Jean-loup Gailly and Mark Adler + // (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin + // + // This software is provided 'as-is', without any express or implied + // warranty. In no event will the authors be held liable for any damages + // arising from the use of this software. + // + // Permission is granted to anyone to use this software for any purpose, + // including commercial applications, and to alter it and redistribute it + // freely, subject to the following restrictions: + // + // 1. The origin of this software must not be misrepresented; you must not + // claim that you wrote the original software. If you use this software + // in a product, an acknowledgment in the product documentation would be + // appreciated but is not required. + // 2. Altered source versions must be plainly marked as such, and must not be + // misrepresented as being the original software. + // 3. This notice may not be removed or altered from any source distribution. + + module.exports = { + 2: 'need dictionary', /* Z_NEED_DICT 2 */ + 1: 'stream end', /* Z_STREAM_END 1 */ + 0: '', /* Z_OK 0 */ + '-1': 'file error', /* Z_ERRNO (-1) */ + '-2': 'stream error', /* Z_STREAM_ERROR (-2) */ + '-3': 'data error', /* Z_DATA_ERROR (-3) */ + '-4': 'insufficient memory', /* Z_MEM_ERROR (-4) */ + '-5': 'buffer error', /* Z_BUF_ERROR (-5) */ + '-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */ + }; + + },{}],11:[function(require,module,exports){ + 'use strict'; + + // (C) 1995-2013 Jean-loup Gailly and Mark Adler + // (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin + // + // This software is provided 'as-is', without any express or implied + // warranty. In no event will the authors be held liable for any damages + // arising from the use of this software. + // + // Permission is granted to anyone to use this software for any purpose, + // including commercial applications, and to alter it and redistribute it + // freely, subject to the following restrictions: + // + // 1. The origin of this software must not be misrepresented; you must not + // claim that you wrote the original software. If you use this software + // in a product, an acknowledgment in the product documentation would be + // appreciated but is not required. + // 2. Altered source versions must be plainly marked as such, and must not be + // misrepresented as being the original software. + // 3. This notice may not be removed or altered from any source distribution. + + function ZStream() { + /* next input byte */ + this.input = null; // JS specific, because we have no pointers + this.next_in = 0; + /* number of bytes available at input */ + this.avail_in = 0; + /* total number of input bytes read so far */ + this.total_in = 0; + /* next output byte should be put there */ + this.output = null; // JS specific, because we have no pointers + this.next_out = 0; + /* remaining free space at output */ + this.avail_out = 0; + /* total number of bytes output so far */ + this.total_out = 0; + /* last error message, NULL if no error */ + this.msg = ''/*Z_NULL*/; + /* not visible by applications */ + this.state = null; + /* best guess about the data type: binary or text */ + this.data_type = 2/*Z_UNKNOWN*/; + /* adler32 value of the uncompressed data */ + this.adler = 0; + } + + module.exports = ZStream; + + },{}],"/lib/inflate.js":[function(require,module,exports){ + 'use strict'; + + + var zlib_inflate = require('./zlib/inflate'); + var utils = require('./utils/common'); + var strings = require('./utils/strings'); + var c = require('./zlib/constants'); + var msg = require('./zlib/messages'); + var ZStream = require('./zlib/zstream'); + var GZheader = require('./zlib/gzheader'); + + var toString = Object.prototype.toString; + + /** + * class Inflate + * + * Generic JS-style wrapper for zlib calls. If you don't need + * streaming behaviour - use more simple functions: [[inflate]] + * and [[inflateRaw]]. + **/ + + /* internal + * inflate.chunks -> Array + * + * Chunks of output data, if [[Inflate#onData]] not overridden. + **/ + + /** + * Inflate.result -> Uint8Array|Array|String + * + * Uncompressed result, generated by default [[Inflate#onData]] + * and [[Inflate#onEnd]] handlers. Filled after you push last chunk + * (call [[Inflate#push]] with `Z_FINISH` / `true` param) or if you + * push a chunk with explicit flush (call [[Inflate#push]] with + * `Z_SYNC_FLUSH` param). + **/ + + /** + * Inflate.err -> Number + * + * Error code after inflate finished. 0 (Z_OK) on success. + * Should be checked if broken data possible. + **/ + + /** + * Inflate.msg -> String + * + * Error message, if [[Inflate.err]] != 0 + **/ + + + /** + * new Inflate(options) + * - options (Object): zlib inflate options. + * + * Creates new inflator instance with specified params. Throws exception + * on bad params. Supported options: + * + * - `windowBits` + * - `dictionary` + * + * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced) + * for more information on these. + * + * Additional options, for internal needs: + * + * - `chunkSize` - size of generated data chunks (16K by default) + * - `raw` (Boolean) - do raw inflate + * - `to` (String) - if equal to 'string', then result will be converted + * from utf8 to utf16 (javascript) string. When string output requested, + * chunk length can differ from `chunkSize`, depending on content. + * + * By default, when no options set, autodetect deflate/gzip data format via + * wrapper header. + * + * ##### Example: + * + * ```javascript + * var pako = require('pako') + * , chunk1 = Uint8Array([1,2,3,4,5,6,7,8,9]) + * , chunk2 = Uint8Array([10,11,12,13,14,15,16,17,18,19]); + * + * var inflate = new pako.Inflate({ level: 3}); + * + * inflate.push(chunk1, false); + * inflate.push(chunk2, true); // true -> last chunk + * + * if (inflate.err) { throw new Error(inflate.err); } + * + * console.log(inflate.result); + * ``` + **/ + function Inflate(options) { + if (!(this instanceof Inflate)) return new Inflate(options); + + this.options = utils.assign({ + chunkSize: 16384, + windowBits: 0, + to: '' + }, options || {}); + + var opt = this.options; + + // Force window size for `raw` data, if not set directly, + // because we have no header for autodetect. + if (opt.raw && (opt.windowBits >= 0) && (opt.windowBits < 16)) { + opt.windowBits = -opt.windowBits; + if (opt.windowBits === 0) { opt.windowBits = -15; } + } + + // If `windowBits` not defined (and mode not raw) - set autodetect flag for gzip/deflate + if ((opt.windowBits >= 0) && (opt.windowBits < 16) && + !(options && options.windowBits)) { + opt.windowBits += 32; + } + + // Gzip header has no info about windows size, we can do autodetect only + // for deflate. So, if window size not set, force it to max when gzip possible + if ((opt.windowBits > 15) && (opt.windowBits < 48)) { + // bit 3 (16) -> gzipped data + // bit 4 (32) -> autodetect gzip/deflate + if ((opt.windowBits & 15) === 0) { + opt.windowBits |= 15; + } + } + + this.err = 0; // error code, if happens (0 = Z_OK) + this.msg = ''; // error message + this.ended = false; // used to avoid multiple onEnd() calls + this.chunks = []; // chunks of compressed data + + this.strm = new ZStream(); + this.strm.avail_out = 0; + + var status = zlib_inflate.inflateInit2( + this.strm, + opt.windowBits + ); + + if (status !== c.Z_OK) { + throw new Error(msg[status]); + } + + this.header = new GZheader(); + + zlib_inflate.inflateGetHeader(this.strm, this.header); + + // Setup dictionary + if (opt.dictionary) { + // Convert data if needed + if (typeof opt.dictionary === 'string') { + opt.dictionary = strings.string2buf(opt.dictionary); + } else if (toString.call(opt.dictionary) === '[object ArrayBuffer]') { + opt.dictionary = new Uint8Array(opt.dictionary); + } + if (opt.raw) { //In raw mode we need to set the dictionary early + status = zlib_inflate.inflateSetDictionary(this.strm, opt.dictionary); + if (status !== c.Z_OK) { + throw new Error(msg[status]); + } + } + } + } + + /** + * Inflate#push(data[, mode]) -> Boolean + * - data (Uint8Array|Array|ArrayBuffer|String): input data + * - mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE modes. + * See constants. Skipped or `false` means Z_NO_FLUSH, `true` means Z_FINISH. + * + * Sends input data to inflate pipe, generating [[Inflate#onData]] calls with + * new output chunks. Returns `true` on success. The last data block must have + * mode Z_FINISH (or `true`). That will flush internal pending buffers and call + * [[Inflate#onEnd]]. For interim explicit flushes (without ending the stream) you + * can use mode Z_SYNC_FLUSH, keeping the decompression context. + * + * On fail call [[Inflate#onEnd]] with error code and return false. + * + * We strongly recommend to use `Uint8Array` on input for best speed (output + * format is detected automatically). Also, don't skip last param and always + * use the same type in your code (boolean or number). That will improve JS speed. + * + * For regular `Array`-s make sure all elements are [0..255]. + * + * ##### Example + * + * ```javascript + * push(chunk, false); // push one of data chunks + * ... + * push(chunk, true); // push last chunk + * ``` + **/ + Inflate.prototype.push = function (data, mode) { + var strm = this.strm; + var chunkSize = this.options.chunkSize; + var dictionary = this.options.dictionary; + var status, _mode; + var next_out_utf8, tail, utf8str; + + // Flag to properly process Z_BUF_ERROR on testing inflate call + // when we check that all output data was flushed. + var allowBufError = false; + + if (this.ended) { return false; } + _mode = (mode === ~~mode) ? mode : ((mode === true) ? c.Z_FINISH : c.Z_NO_FLUSH); + + // Convert data if needed + if (typeof data === 'string') { + // Only binary strings can be decompressed on practice + strm.input = strings.binstring2buf(data); + } else if (toString.call(data) === '[object ArrayBuffer]') { + strm.input = new Uint8Array(data); + } else { + strm.input = data; + } + + strm.next_in = 0; + strm.avail_in = strm.input.length; + + do { + if (strm.avail_out === 0) { + strm.output = new utils.Buf8(chunkSize); + strm.next_out = 0; + strm.avail_out = chunkSize; + } + + status = zlib_inflate.inflate(strm, c.Z_NO_FLUSH); /* no bad return value */ + + if (status === c.Z_NEED_DICT && dictionary) { + status = zlib_inflate.inflateSetDictionary(this.strm, dictionary); + } + + if (status === c.Z_BUF_ERROR && allowBufError === true) { + status = c.Z_OK; + allowBufError = false; + } + + if (status !== c.Z_STREAM_END && status !== c.Z_OK) { + this.onEnd(status); + this.ended = true; + return false; + } + + if (strm.next_out) { + if (strm.avail_out === 0 || status === c.Z_STREAM_END || (strm.avail_in === 0 && (_mode === c.Z_FINISH || _mode === c.Z_SYNC_FLUSH))) { + + if (this.options.to === 'string') { + + next_out_utf8 = strings.utf8border(strm.output, strm.next_out); + + tail = strm.next_out - next_out_utf8; + utf8str = strings.buf2string(strm.output, next_out_utf8); + + // move tail + strm.next_out = tail; + strm.avail_out = chunkSize - tail; + if (tail) { utils.arraySet(strm.output, strm.output, next_out_utf8, tail, 0); } + + this.onData(utf8str); + + } else { + this.onData(utils.shrinkBuf(strm.output, strm.next_out)); + } + } + } + + // When no more input data, we should check that internal inflate buffers + // are flushed. The only way to do it when avail_out = 0 - run one more + // inflate pass. But if output data not exists, inflate return Z_BUF_ERROR. + // Here we set flag to process this error properly. + // + // NOTE. Deflate does not return error in this case and does not needs such + // logic. + if (strm.avail_in === 0 && strm.avail_out === 0) { + allowBufError = true; + } + + } while ((strm.avail_in > 0 || strm.avail_out === 0) && status !== c.Z_STREAM_END); + + if (status === c.Z_STREAM_END) { + _mode = c.Z_FINISH; + } + + // Finalize on the last chunk. + if (_mode === c.Z_FINISH) { + status = zlib_inflate.inflateEnd(this.strm); + this.onEnd(status); + this.ended = true; + return status === c.Z_OK; + } + + // callback interim results if Z_SYNC_FLUSH. + if (_mode === c.Z_SYNC_FLUSH) { + this.onEnd(c.Z_OK); + strm.avail_out = 0; + return true; + } + + return true; + }; + + + /** + * Inflate#onData(chunk) -> Void + * - chunk (Uint8Array|Array|String): output data. Type of array depends + * on js engine support. When string output requested, each chunk + * will be string. + * + * By default, stores data blocks in `chunks[]` property and glue + * those in `onEnd`. Override this handler, if you need another behaviour. + **/ + Inflate.prototype.onData = function (chunk) { + this.chunks.push(chunk); + }; + + + /** + * Inflate#onEnd(status) -> Void + * - status (Number): inflate status. 0 (Z_OK) on success, + * other if not. + * + * Called either after you tell inflate that the input stream is + * complete (Z_FINISH) or should be flushed (Z_SYNC_FLUSH) + * or if an error happened. By default - join collected chunks, + * free memory and fill `results` / `err` properties. + **/ + Inflate.prototype.onEnd = function (status) { + // On success - join + if (status === c.Z_OK) { + if (this.options.to === 'string') { + // Glue & convert here, until we teach pako to send + // utf8 aligned strings to onData + this.result = this.chunks.join(''); + } else { + this.result = utils.flattenChunks(this.chunks); + } + } + this.chunks = []; + this.err = status; + this.msg = this.strm.msg; + }; + + + /** + * inflate(data[, options]) -> Uint8Array|Array|String + * - data (Uint8Array|Array|String): input data to decompress. + * - options (Object): zlib inflate options. + * + * Decompress `data` with inflate/ungzip and `options`. Autodetect + * format via wrapper header by default. That's why we don't provide + * separate `ungzip` method. + * + * Supported options are: + * + * - windowBits + * + * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced) + * for more information. + * + * Sugar (options): + * + * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify + * negative windowBits implicitly. + * - `to` (String) - if equal to 'string', then result will be converted + * from utf8 to utf16 (javascript) string. When string output requested, + * chunk length can differ from `chunkSize`, depending on content. + * + * + * ##### Example: + * + * ```javascript + * var pako = require('pako') + * , input = pako.deflate([1,2,3,4,5,6,7,8,9]) + * , output; + * + * try { + * output = pako.inflate(input); + * } catch (err) + * console.log(err); + * } + * ``` + **/ + function inflate(input, options) { + var inflator = new Inflate(options); + + inflator.push(input, true); + + // That will never happens, if you don't cheat with options :) + if (inflator.err) { throw inflator.msg || msg[inflator.err]; } + + return inflator.result; + } + + + /** + * inflateRaw(data[, options]) -> Uint8Array|Array|String + * - data (Uint8Array|Array|String): input data to decompress. + * - options (Object): zlib inflate options. + * + * The same as [[inflate]], but creates raw data, without wrapper + * (header and adler32 crc). + **/ + function inflateRaw(input, options) { + options = options || {}; + options.raw = true; + return inflate(input, options); + } + + + /** + * ungzip(data[, options]) -> Uint8Array|Array|String + * - data (Uint8Array|Array|String): input data to decompress. + * - options (Object): zlib inflate options. + * + * Just shortcut to [[inflate]], because it autodetects format + * by header.content. Done for convenience. + **/ + + + exports.Inflate = Inflate; + exports.inflate = inflate; + exports.inflateRaw = inflateRaw; + exports.ungzip = inflate; + + },{"./utils/common":1,"./utils/strings":2,"./zlib/constants":4,"./zlib/gzheader":6,"./zlib/inflate":8,"./zlib/messages":10,"./zlib/zstream":11}]},{},[])("/lib/inflate.js") + }); diff --git a/packages/edit-site/lib/lib-font.browser.js b/packages/edit-site/lib/lib-font.browser.js new file mode 100644 index 0000000000000..36b8a081091f4 --- /dev/null +++ b/packages/edit-site/lib/lib-font.browser.js @@ -0,0 +1,3829 @@ +// import pako from 'pako'; +import unbrotli from "./unbrotli"; +import GzipDecode from "./inflate"; + +let fetchFunction = globalThis.fetch; +// if ( ! fetchFunction ) { +// let backlog = []; +// fetchFunction = globalThis.fetch = ( ...args ) => +// new Promise( ( resolve, reject ) => { +// backlog.push( { args: args, resolve: resolve, reject: reject } ); +// } ); +// import( 'fs' ) +// .then( ( fs ) => { +// fetchFunction = globalThis.fetch = async function ( path ) { +// return new Promise( ( resolve, reject ) => { +// fs.readFile( path, ( err, data ) => { +// if ( err ) return reject( err ); +// resolve( { ok: true, arrayBuffer: () => data.buffer } ); +// } ); +// } ); +// }; +// while ( backlog.length ) { +// let instruction = backlog.shift(); +// fetchFunction( ...instruction.args ) +// .then( ( data ) => instruction.resolve( data ) ) +// .catch( ( err ) => instruction.reject( err ) ); +// } +// } ) +// .catch( ( err ) => { +// console.error( err ); +// throw new Error( +// `lib-font cannot run unless either the Fetch API or Node's filesystem module is available.` +// ); +// } ); +// } +class Event { + constructor( type, detail = {}, msg ) { + this.type = type; + this.detail = detail; + this.msg = msg; + Object.defineProperty( this, `__mayPropagate`, { + enumerable: false, + writable: true, + } ); + this.__mayPropagate = true; + } + preventDefault() {} + stopPropagation() { + this.__mayPropagate = false; + } + valueOf() { + return this; + } + toString() { + return this.msg + ? `[${ this.type } event]: ${ this.msg }` + : `[${ this.type } event]`; + } +} +class EventManager { + constructor() { + this.listeners = {}; + } + addEventListener( type, listener, useCapture ) { + let bin = this.listeners[ type ] || []; + if ( useCapture ) bin.unshift( listener ); + else bin.push( listener ); + this.listeners[ type ] = bin; + } + removeEventListener( type, listener ) { + let bin = this.listeners[ type ] || []; + let pos = bin.findIndex( ( e ) => e === listener ); + if ( pos > -1 ) { + bin.splice( pos, 1 ); + this.listeners[ type ] = bin; + } + } + dispatch( event ) { + let bin = this.listeners[ event.type ]; + if ( bin ) { + for ( let l = 0, e = bin.length; l < e; l++ ) { + if ( ! event.__mayPropagate ) break; + bin[ l ]( event ); + } + } + } +} +const startDate = new Date( `1904-01-01T00:00:00+0000` ).getTime(); +function asText( data ) { + return Array.from( data ) + .map( ( v ) => String.fromCharCode( v ) ) + .join( `` ); +} +class Parser { + constructor( dict, dataview, name ) { + this.name = ( name || dict.tag || `` ).trim(); + this.length = dict.length; + this.start = dict.offset; + this.offset = 0; + this.data = dataview; + [ + `getInt8`, + `getUint8`, + `getInt16`, + `getUint16`, + `getInt32`, + `getUint32`, + `getBigInt64`, + `getBigUint64`, + ].forEach( ( name ) => { + let fn = name.replace( /get(Big)?/, '' ).toLowerCase(); + let increment = parseInt( name.replace( /[^\d]/g, '' ) ) / 8; + Object.defineProperty( this, fn, { + get: () => this.getValue( name, increment ), + } ); + } ); + } + get currentPosition() { + return this.start + this.offset; + } + set currentPosition( position ) { + this.start = position; + this.offset = 0; + } + skip( n = 0, bits = 8 ) { + this.offset += ( n * bits ) / 8; + } + getValue( type, increment ) { + let pos = this.start + this.offset; + this.offset += increment; + try { + return this.data[ type ]( pos ); + } catch ( e ) { + console.error( `parser`, type, increment, this ); + console.error( `parser`, this.start, this.offset ); + throw e; + } + } + flags( n ) { + if ( n === 8 || n === 16 || n === 32 || n === 64 ) { + return this[ `uint${ n }` ] + .toString( 2 ) + .padStart( n, 0 ) + .split( `` ) + .map( ( v ) => v === '1' ); + } + console.error( + `Error parsing flags: flag types can only be 1, 2, 4, or 8 bytes long` + ); + console.trace(); + } + get tag() { + const t = this.uint32; + return asText( [ + ( t >> 24 ) & 255, + ( t >> 16 ) & 255, + ( t >> 8 ) & 255, + t & 255, + ] ); + } + get fixed() { + let major = this.int16; + let minor = Math.round( ( 1e3 * this.uint16 ) / 65356 ); + return major + minor / 1e3; + } + get legacyFixed() { + let major = this.uint16; + let minor = this.uint16.toString( 16 ).padStart( 4, 0 ); + return parseFloat( `${ major }.${ minor }` ); + } + get uint24() { + return ( this.uint8 << 16 ) + ( this.uint8 << 8 ) + this.uint8; + } + get uint128() { + let value = 0; + for ( let i = 0; i < 5; i++ ) { + let byte = this.uint8; + value = value * 128 + ( byte & 127 ); + if ( byte < 128 ) break; + } + return value; + } + get longdatetime() { + return new Date( startDate + 1e3 * parseInt( this.int64.toString() ) ); + } + get fword() { + return this.int16; + } + get ufword() { + return this.uint16; + } + get Offset16() { + return this.uint16; + } + get Offset32() { + return this.uint32; + } + get F2DOT14() { + const bits = p.uint16; + const integer = [ 0, 1, -2, -1 ][ bits >> 14 ]; + const fraction = bits & 16383; + return integer + fraction / 16384; + } + verifyLength() { + if ( this.offset != this.length ) { + console.error( + `unexpected parsed table size (${ this.offset }) for "${ this.name }" (expected ${ this.length })` + ); + } + } + readBytes( n = 0, position = 0, bits = 8, signed = false ) { + n = n || this.length; + if ( n === 0 ) return []; + if ( position ) this.currentPosition = position; + const fn = `${ signed ? `` : `u` }int${ bits }`, + slice = []; + while ( n-- ) slice.push( this[ fn ] ); + return slice; + } +} +class ParsedData { + constructor( parser ) { + const pGetter = { enumerable: false, get: () => parser }; + Object.defineProperty( this, `parser`, pGetter ); + const start = parser.currentPosition; + const startGetter = { enumerable: false, get: () => start }; + Object.defineProperty( this, `start`, startGetter ); + } + load( struct ) { + Object.keys( struct ).forEach( ( p ) => { + let props = Object.getOwnPropertyDescriptor( struct, p ); + if ( props.get ) { + this[ p ] = props.get.bind( this ); + } else if ( props.value !== undefined ) { + this[ p ] = props.value; + } + } ); + if ( this.parser.length ) { + this.parser.verifyLength(); + } + } +} +class SimpleTable extends ParsedData { + constructor( dict, dataview, name ) { + const { parser: parser, start: start } = super( + new Parser( dict, dataview, name ) + ); + const pGetter = { enumerable: false, get: () => parser }; + Object.defineProperty( this, `p`, pGetter ); + const startGetter = { enumerable: false, get: () => start }; + Object.defineProperty( this, `tableStart`, startGetter ); + } +} +function lazy$1( object, property, getter ) { + let val; + Object.defineProperty( object, property, { + get: () => { + if ( val ) return val; + val = getter(); + return val; + }, + enumerable: true, + } ); +} +class SFNT extends SimpleTable { + constructor( font, dataview, createTable ) { + const { p: p } = super( { offset: 0, length: 12 }, dataview, `sfnt` ); + this.version = p.uint32; + this.numTables = p.uint16; + this.searchRange = p.uint16; + this.entrySelector = p.uint16; + this.rangeShift = p.uint16; + p.verifyLength(); + this.directory = [ ...new Array( this.numTables ) ].map( + ( _ ) => new TableRecord( p ) + ); + this.tables = {}; + this.directory.forEach( ( entry ) => { + const getter = () => + createTable( + this.tables, + { + tag: entry.tag, + offset: entry.offset, + length: entry.length, + }, + dataview + ); + lazy$1( this.tables, entry.tag.trim(), getter ); + } ); + } +} +class TableRecord { + constructor( p ) { + this.tag = p.tag; + this.checksum = p.uint32; + this.offset = p.uint32; + this.length = p.uint32; + } +} +const gzipDecode = GzipDecode.inflate || undefined; +console.log( "gzipDecode", gzipDecode ); +let nativeGzipDecode = undefined; +// if ( ! gzipDecode ) { +// import( 'zlib' ).then( ( zlib ) => { +// nativeGzipDecode = ( buffer ) => zlib.unzipSync( buffer ); +// } ); +// } +class WOFF$1 extends SimpleTable { + constructor( font, dataview, createTable ) { + const { p: p } = super( { offset: 0, length: 44 }, dataview, `woff` ); + this.signature = p.tag; + this.flavor = p.uint32; + this.length = p.uint32; + this.numTables = p.uint16; + p.uint16; + this.totalSfntSize = p.uint32; + this.majorVersion = p.uint16; + this.minorVersion = p.uint16; + this.metaOffset = p.uint32; + this.metaLength = p.uint32; + this.metaOrigLength = p.uint32; + this.privOffset = p.uint32; + this.privLength = p.uint32; + p.verifyLength(); + this.directory = [ ...new Array( this.numTables ) ].map( + ( _ ) => new WoffTableDirectoryEntry( p ) + ); + buildWoffLazyLookups( this, dataview, createTable ); + } +} +class WoffTableDirectoryEntry { + constructor( p ) { + this.tag = p.tag; + this.offset = p.uint32; + this.compLength = p.uint32; + this.origLength = p.uint32; + this.origChecksum = p.uint32; + } +} +function buildWoffLazyLookups( woff, dataview, createTable ) { + woff.tables = {}; + woff.directory.forEach( ( entry ) => { + lazy$1( woff.tables, entry.tag.trim(), () => { + let offset = 0; + let view = dataview; + if ( entry.compLength !== entry.origLength ) { + const data = dataview.buffer.slice( + entry.offset, + entry.offset + entry.compLength + ); + let unpacked; + if ( gzipDecode ) { + unpacked = gzipDecode( new Uint8Array( data ) ); + } else if ( nativeGzipDecode ) { + unpacked = nativeGzipDecode( new Uint8Array( data ) ); + } else { + const msg = `no brotli decoder available to decode WOFF2 font`; + if ( font.onerror ) font.onerror( msg ); + throw new Error( msg ); + } + view = new DataView( unpacked.buffer ); + } else { + offset = entry.offset; + } + return createTable( + woff.tables, + { tag: entry.tag, offset: offset, length: entry.origLength }, + view + ); + } ); + } ); +} +const brotliDecode = unbrotli; +let nativeBrotliDecode = undefined; +// if ( ! brotliDecode ) { +// import( 'zlib' ).then( ( zlib ) => { +// nativeBrotliDecode = ( buffer ) => zlib.brotliDecompressSync( buffer ); +// } ); +// } +class WOFF2$1 extends SimpleTable { + constructor( font, dataview, createTable ) { + const { p: p } = super( { offset: 0, length: 48 }, dataview, `woff2` ); + this.signature = p.tag; + this.flavor = p.uint32; + this.length = p.uint32; + this.numTables = p.uint16; + p.uint16; + this.totalSfntSize = p.uint32; + this.totalCompressedSize = p.uint32; + this.majorVersion = p.uint16; + this.minorVersion = p.uint16; + this.metaOffset = p.uint32; + this.metaLength = p.uint32; + this.metaOrigLength = p.uint32; + this.privOffset = p.uint32; + this.privLength = p.uint32; + p.verifyLength(); + this.directory = [ ...new Array( this.numTables ) ].map( + ( _ ) => new Woff2TableDirectoryEntry( p ) + ); + let dictOffset = p.currentPosition; + this.directory[ 0 ].offset = 0; + this.directory.forEach( ( e, i ) => { + let next = this.directory[ i + 1 ]; + if ( next ) { + next.offset = + e.offset + + ( e.transformLength !== undefined + ? e.transformLength + : e.origLength ); + } + } ); + let decoded; + let buffer = dataview.buffer.slice( dictOffset ); + if ( brotliDecode ) { + decoded = brotliDecode( new Uint8Array( buffer ) ); + } else if ( nativeBrotliDecode ) { + decoded = new Uint8Array( nativeBrotliDecode( buffer ) ); + } else { + const msg = `no brotli decoder available to decode WOFF2 font`; + if ( font.onerror ) font.onerror( msg ); + throw new Error( msg ); + } + buildWoff2LazyLookups( this, decoded, createTable ); + } +} +class Woff2TableDirectoryEntry { + constructor( p ) { + this.flags = p.uint8; + const tagNumber = ( this.tagNumber = this.flags & 63 ); + if ( tagNumber === 63 ) { + this.tag = p.tag; + } else { + this.tag = getWOFF2Tag( tagNumber ); + } + const transformVersion = ( this.transformVersion = + ( this.flags & 192 ) >> 6 ); + let hasTransforms = transformVersion !== 0; + if ( this.tag === `glyf` || this.tag === `loca` ) { + hasTransforms = this.transformVersion !== 3; + } + this.origLength = p.uint128; + if ( hasTransforms ) { + this.transformLength = p.uint128; + } + } +} +function buildWoff2LazyLookups( woff2, decoded, createTable ) { + woff2.tables = {}; + woff2.directory.forEach( ( entry ) => { + lazy$1( woff2.tables, entry.tag.trim(), () => { + const start = entry.offset; + const end = + start + + ( entry.transformLength + ? entry.transformLength + : entry.origLength ); + const data = new DataView( decoded.slice( start, end ).buffer ); + try { + return createTable( + woff2.tables, + { tag: entry.tag, offset: 0, length: entry.origLength }, + data + ); + } catch ( e ) { + console.error( e ); + } + } ); + } ); +} +function getWOFF2Tag( flag ) { + return [ + `cmap`, + `head`, + `hhea`, + `hmtx`, + `maxp`, + `name`, + `OS/2`, + `post`, + `cvt `, + `fpgm`, + `glyf`, + `loca`, + `prep`, + `CFF `, + `VORG`, + `EBDT`, + `EBLC`, + `gasp`, + `hdmx`, + `kern`, + `LTSH`, + `PCLT`, + `VDMX`, + `vhea`, + `vmtx`, + `BASE`, + `GDEF`, + `GPOS`, + `GSUB`, + `EBSC`, + `JSTF`, + `MATH`, + `CBDT`, + `CBLC`, + `COLR`, + `CPAL`, + `SVG `, + `sbix`, + `acnt`, + `avar`, + `bdat`, + `bloc`, + `bsln`, + `cvar`, + `fdsc`, + `feat`, + `fmtx`, + `fvar`, + `gvar`, + `hsty`, + `just`, + `lcar`, + `mort`, + `morx`, + `opbd`, + `prop`, + `trak`, + `Zapf`, + `Silf`, + `Glat`, + `Gloc`, + `Feat`, + `Sill`, + ][ flag & 63 ]; +} +const tableClasses = {}; +let tableClassesLoaded = false; +Promise.all( [ + Promise.resolve().then( function () { + return cmap$1; + } ), + Promise.resolve().then( function () { + return head$1; + } ), + Promise.resolve().then( function () { + return hhea$1; + } ), + Promise.resolve().then( function () { + return hmtx$1; + } ), + Promise.resolve().then( function () { + return maxp$1; + } ), + Promise.resolve().then( function () { + return name$1; + } ), + Promise.resolve().then( function () { + return OS2$1; + } ), + Promise.resolve().then( function () { + return post$1; + } ), + Promise.resolve().then( function () { + return BASE$1; + } ), + Promise.resolve().then( function () { + return GDEF$1; + } ), + Promise.resolve().then( function () { + return GSUB$1; + } ), + Promise.resolve().then( function () { + return GPOS$1; + } ), + Promise.resolve().then( function () { + return SVG$1; + } ), + Promise.resolve().then( function () { + return fvar$1; + } ), + Promise.resolve().then( function () { + return cvt$1; + } ), + Promise.resolve().then( function () { + return fpgm$1; + } ), + Promise.resolve().then( function () { + return gasp$1; + } ), + Promise.resolve().then( function () { + return glyf$1; + } ), + Promise.resolve().then( function () { + return loca$1; + } ), + Promise.resolve().then( function () { + return prep$1; + } ), + Promise.resolve().then( function () { + return CFF$1; + } ), + Promise.resolve().then( function () { + return CFF2$1; + } ), + Promise.resolve().then( function () { + return VORG$1; + } ), + Promise.resolve().then( function () { + return EBLC$1; + } ), + Promise.resolve().then( function () { + return EBDT$1; + } ), + Promise.resolve().then( function () { + return EBSC$1; + } ), + Promise.resolve().then( function () { + return CBLC$1; + } ), + Promise.resolve().then( function () { + return CBDT$1; + } ), + Promise.resolve().then( function () { + return sbix$1; + } ), + Promise.resolve().then( function () { + return COLR$1; + } ), + Promise.resolve().then( function () { + return CPAL$1; + } ), + Promise.resolve().then( function () { + return DSIG$1; + } ), + Promise.resolve().then( function () { + return hdmx$1; + } ), + Promise.resolve().then( function () { + return kern$1; + } ), + Promise.resolve().then( function () { + return LTSH$1; + } ), + Promise.resolve().then( function () { + return MERG$1; + } ), + Promise.resolve().then( function () { + return meta$1; + } ), + Promise.resolve().then( function () { + return PCLT$1; + } ), + Promise.resolve().then( function () { + return VDMX$1; + } ), + Promise.resolve().then( function () { + return vhea$1; + } ), + Promise.resolve().then( function () { + return vmtx$1; + } ), +] ).then( ( data ) => { + data.forEach( ( e ) => { + let name = Object.keys( e )[ 0 ]; + tableClasses[ name ] = e[ name ]; + } ); + tableClassesLoaded = true; +} ); +function createTable( tables, dict, dataview ) { + let name = dict.tag.replace( /[^\w\d]/g, `` ); + let Type = tableClasses[ name ]; + if ( Type ) return new Type( dict, dataview, tables ); + console.warn( + `lib-font has no definition for ${ name }. The table was skipped.` + ); + return {}; +} +function loadTableClasses() { + let count = 0; + function checkLoaded( resolve, reject ) { + if ( ! tableClassesLoaded ) { + if ( count > 10 ) { + return reject( new Error( `loading took too long` ) ); + } + count++; + return setTimeout( () => checkLoaded( resolve ), 250 ); + } + resolve( createTable ); + } + return new Promise( ( resolve, reject ) => checkLoaded( resolve ) ); +} +function getFontCSSFormat( path, errorOnStyle ) { + let pos = path.lastIndexOf( `.` ); + let ext = ( path.substring( pos + 1 ) || `` ).toLowerCase(); + let format = { + ttf: `truetype`, + otf: `opentype`, + woff: `woff`, + woff2: `woff2`, + }[ ext ]; + if ( format ) return format; + let msg = { + eot: `The .eot format is not supported: it died in January 12, 2016, when Microsoft retired all versions of IE that didn't already support WOFF.`, + svg: `The .svg format is not supported: SVG fonts (not to be confused with OpenType with embedded SVG) were so bad we took the entire fonts chapter out of the SVG specification again.`, + fon: `The .fon format is not supported: this is an ancient Windows bitmap font format.`, + ttc: `Based on the current CSS specification, font collections are not (yet?) supported.`, + }[ ext ]; + if ( ! msg ) msg = `${ path } is not a known webfont format.`; + if ( errorOnStyle ) { + throw new Error( msg ); + } else { + console.warn( `Could not load font: ${ msg }` ); + } +} +async function setupFontFace( name, url, options = {} ) { + if ( ! globalThis.document ) return; + let format = getFontCSSFormat( url, options.errorOnStyle ); + if ( ! format ) return; + let style = document.createElement( `style` ); + style.className = `injected-by-Font-js`; + let rules = []; + if ( options.styleRules ) { + rules = Object.entries( options.styleRules ).map( + ( [ key, value ] ) => `${ key }: ${ value };` + ); + } + style.textContent = `\n@font-face {\n font-family: "${ name }";\n ${ rules.join( + `\n\t` + ) }\n src: url("${ url }") format("${ format }");\n}`; + globalThis.document.head.appendChild( style ); + return style; +} +const TTF = [ 0, 1, 0, 0 ]; +const OTF = [ 79, 84, 84, 79 ]; +const WOFF = [ 119, 79, 70, 70 ]; +const WOFF2 = [ 119, 79, 70, 50 ]; +function match( ar1, ar2 ) { + if ( ar1.length !== ar2.length ) return; + for ( let i = 0; i < ar1.length; i++ ) { + if ( ar1[ i ] !== ar2[ i ] ) return; + } + return true; +} +function validFontFormat( dataview ) { + const LEAD_BYTES = [ + dataview.getUint8( 0 ), + dataview.getUint8( 1 ), + dataview.getUint8( 2 ), + dataview.getUint8( 3 ), + ]; + if ( match( LEAD_BYTES, TTF ) || match( LEAD_BYTES, OTF ) ) return `SFNT`; + if ( match( LEAD_BYTES, WOFF ) ) return `WOFF`; + if ( match( LEAD_BYTES, WOFF2 ) ) return `WOFF2`; +} +function checkFetchResponseStatus( response ) { + if ( ! response.ok ) { + throw new Error( + `HTTP ${ response.status } - ${ response.statusText }` + ); + } + return response; +} +class Font extends EventManager { + constructor( name, options = {} ) { + super(); + this.name = name; + this.options = options; + this.metrics = false; + } + get src() { + return this.__src; + } + set src( src ) { + this.__src = src; + ( async () => { + if ( globalThis.document && ! this.options.skipStyleSheet ) { + await setupFontFace( this.name, src, this.options ); + } + this.loadFont( src ); + } )(); + } + async loadFont( url, filename ) { + fetch( url ) + .then( + ( response ) => + checkFetchResponseStatus( response ) && + response.arrayBuffer() + ) + .then( ( buffer ) => + this.fromDataBuffer( buffer, filename || url ) + ) + .catch( ( err ) => { + const evt = new Event( + `error`, + err, + `Failed to load font at ${ filename || url }` + ); + this.dispatch( evt ); + if ( this.onerror ) this.onerror( evt ); + } ); + } + async fromDataBuffer( buffer, filenameOrUrL ) { + this.fontData = new DataView( buffer ); + let type = validFontFormat( this.fontData ); + if ( ! type ) { + throw new Error( + `${ filenameOrUrL } is either an unsupported font format, or not a font at all.` + ); + } + await this.parseBasicData( type ); + const evt = new Event( 'load', { font: this } ); + this.dispatch( evt ); + if ( this.onload ) this.onload( evt ); + } + async parseBasicData( type ) { + return loadTableClasses().then( ( createTable ) => { + if ( type === `SFNT` ) { + this.opentype = new SFNT( this, this.fontData, createTable ); + } + if ( type === `WOFF` ) { + this.opentype = new WOFF$1( this, this.fontData, createTable ); + } + if ( type === `WOFF2` ) { + this.opentype = new WOFF2$1( this, this.fontData, createTable ); + } + return this.opentype; + } ); + } + getGlyphId( char ) { + return this.opentype.tables.cmap.getGlyphId( char ); + } + reverse( glyphid ) { + return this.opentype.tables.cmap.reverse( glyphid ); + } + supports( char ) { + return this.getGlyphId( char ) !== 0; + } + supportsVariation( variation ) { + return ( + this.opentype.tables.cmap.supportsVariation( variation ) !== false + ); + } + measureText( text, size = 16 ) { + if ( this.__unloaded ) + throw new Error( + 'Cannot measure text: font was unloaded. Please reload before calling measureText()' + ); + let d = document.createElement( 'div' ); + d.textContent = text; + d.style.fontFamily = this.name; + d.style.fontSize = `${ size }px`; + d.style.color = `transparent`; + d.style.background = `transparent`; + d.style.top = `0`; + d.style.left = `0`; + d.style.position = `absolute`; + document.body.appendChild( d ); + let bbox = d.getBoundingClientRect(); + document.body.removeChild( d ); + const OS2 = this.opentype.tables[ 'OS/2' ]; + bbox.fontSize = size; + bbox.ascender = OS2.sTypoAscender; + bbox.descender = OS2.sTypoDescender; + return bbox; + } + unload() { + if ( this.styleElement.parentNode ) { + this.styleElement.parentNode.removeElement( this.styleElement ); + const evt = new Event( 'unload', { font: this } ); + this.dispatch( evt ); + if ( this.onunload ) this.onunload( evt ); + } + this._unloaded = true; + } + load() { + if ( this.__unloaded ) { + delete this.__unloaded; + document.head.appendChild( this.styleElement ); + const evt = new Event( 'load', { font: this } ); + this.dispatch( evt ); + if ( this.onload ) this.onload( evt ); + } + } +} +globalThis.Font = Font; +class Subtable extends ParsedData { + constructor( p, plaformID, encodingID ) { + super( p ); + this.plaformID = plaformID; + this.encodingID = encodingID; + } +} +class Format0 extends Subtable { + constructor( p, platformID, encodingID ) { + super( p, platformID, encodingID ); + this.format = 0; + this.length = p.uint16; + this.language = p.uint16; + this.glyphIdArray = [ ...new Array( 256 ) ].map( ( _ ) => p.uint8 ); + } + supports( charCode ) { + if ( charCode.charCodeAt ) { + charCode = -1; + console.warn( + `supports(character) not implemented for cmap subtable format 0. only supports(id) is implemented.` + ); + } + return 0 <= charCode && charCode <= 255; + } + reverse( glyphID ) { + console.warn( `reverse not implemented for cmap subtable format 0` ); + return {}; + } + getSupportedCharCodes() { + return [ { start: 1, end: 256 } ]; + } +} +class Format2 extends Subtable { + constructor( p, platformID, encodingID ) { + super( p, platformID, encodingID ); + this.format = 2; + this.length = p.uint16; + this.language = p.uint16; + this.subHeaderKeys = [ ...new Array( 256 ) ].map( ( _ ) => p.uint16 ); + const subHeaderCount = Math.max( ...this.subHeaderKeys ); + const subHeaderOffset = p.currentPosition; + lazy$1( this, `subHeaders`, () => { + p.currentPosition = subHeaderOffset; + return [ ...new Array( subHeaderCount ) ].map( + ( _ ) => new SubHeader( p ) + ); + } ); + const glyphIndexOffset = subHeaderOffset + subHeaderCount * 8; + lazy$1( this, `glyphIndexArray`, () => { + p.currentPosition = glyphIndexOffset; + return [ ...new Array( subHeaderCount ) ].map( ( _ ) => p.uint16 ); + } ); + } + supports( charCode ) { + if ( charCode.charCodeAt ) { + charCode = -1; + console.warn( + `supports(character) not implemented for cmap subtable format 2. only supports(id) is implemented.` + ); + } + const low = charCode && 255; + const high = charCode && 65280; + const subHeaderKey = this.subHeaders[ high ]; + const subheader = this.subHeaders[ subHeaderKey ]; + const first = subheader.firstCode; + const last = first + subheader.entryCount; + return first <= low && low <= last; + } + reverse( glyphID ) { + console.warn( `reverse not implemented for cmap subtable format 2` ); + return {}; + } + getSupportedCharCodes( preservePropNames = false ) { + if ( preservePropNames ) { + return this.subHeaders.map( ( h ) => ( { + firstCode: h.firstCode, + lastCode: h.lastCode, + } ) ); + } + return this.subHeaders.map( ( h ) => ( { + start: h.firstCode, + end: h.lastCode, + } ) ); + } +} +class SubHeader { + constructor( p ) { + this.firstCode = p.uint16; + this.entryCount = p.uint16; + this.lastCode = this.first + this.entryCount; + this.idDelta = p.int16; + this.idRangeOffset = p.uint16; + } +} +class Format4 extends Subtable { + constructor( p, platformID, encodingID ) { + super( p, platformID, encodingID ); + this.format = 4; + this.length = p.uint16; + this.language = p.uint16; + this.segCountX2 = p.uint16; + this.segCount = this.segCountX2 / 2; + this.searchRange = p.uint16; + this.entrySelector = p.uint16; + this.rangeShift = p.uint16; + const endCodePosition = p.currentPosition; + lazy$1( this, `endCode`, () => + p.readBytes( this.segCount, endCodePosition, 16 ) + ); + const startCodePosition = endCodePosition + 2 + this.segCountX2; + lazy$1( this, `startCode`, () => + p.readBytes( this.segCount, startCodePosition, 16 ) + ); + const idDeltaPosition = startCodePosition + this.segCountX2; + lazy$1( this, `idDelta`, () => + p.readBytes( this.segCount, idDeltaPosition, 16, true ) + ); + const idRangePosition = idDeltaPosition + this.segCountX2; + lazy$1( this, `idRangeOffset`, () => + p.readBytes( this.segCount, idRangePosition, 16 ) + ); + const glyphIdArrayPosition = idRangePosition + this.segCountX2; + const glyphIdArrayLength = + this.length - ( glyphIdArrayPosition - this.tableStart ); + lazy$1( this, `glyphIdArray`, () => + p.readBytes( glyphIdArrayLength, glyphIdArrayPosition, 16 ) + ); + lazy$1( this, `segments`, () => + this.buildSegments( idRangePosition, glyphIdArrayPosition, p ) + ); + } + buildSegments( idRangePosition, glyphIdArrayPosition, p ) { + const build = ( _, i ) => { + let startCode = this.startCode[ i ], + endCode = this.endCode[ i ], + idDelta = this.idDelta[ i ], + idRangeOffset = this.idRangeOffset[ i ], + idRangeOffsetPointer = idRangePosition + 2 * i, + glyphIDs = []; + if ( idRangeOffset === 0 ) { + for ( + let i = startCode + idDelta, e = endCode + idDelta; + i <= e; + i++ + ) { + glyphIDs.push( i ); + } + } else { + for ( let i = 0, e = endCode - startCode; i <= e; i++ ) { + p.currentPosition = + idRangeOffsetPointer + idRangeOffset + i * 2; + glyphIDs.push( p.uint16 ); + } + } + return { + startCode: startCode, + endCode: endCode, + idDelta: idDelta, + idRangeOffset: idRangeOffset, + glyphIDs: glyphIDs, + }; + }; + return [ ...new Array( this.segCount ) ].map( build ); + } + reverse( glyphID ) { + let s = this.segments.find( ( v ) => v.glyphIDs.includes( glyphID ) ); + if ( ! s ) return {}; + const code = s.startCode + s.glyphIDs.indexOf( glyphID ); + return { code: code, unicode: String.fromCodePoint( code ) }; + } + getGlyphId( charCode ) { + if ( charCode.charCodeAt ) charCode = charCode.charCodeAt( 0 ); + if ( 55296 <= charCode && charCode <= 57343 ) return 0; + if ( ( charCode & 65534 ) === 65534 || ( charCode & 65535 ) === 65535 ) + return 0; + let segment = this.segments.find( + ( s ) => s.startCode <= charCode && charCode <= s.endCode + ); + if ( ! segment ) return 0; + return segment.glyphIDs[ charCode - segment.startCode ]; + } + supports( charCode ) { + return this.getGlyphId( charCode ) !== 0; + } + getSupportedCharCodes( preservePropNames = false ) { + if ( preservePropNames ) return this.segments; + return this.segments.map( ( v ) => ( { + start: v.startCode, + end: v.endCode, + } ) ); + } +} +class Format6 extends Subtable { + constructor( p, platformID, encodingID ) { + super( p, platformID, encodingID ); + this.format = 6; + this.length = p.uint16; + this.language = p.uint16; + this.firstCode = p.uint16; + this.entryCount = p.uint16; + this.lastCode = this.firstCode + this.entryCount - 1; + const getter = () => + [ ...new Array( this.entryCount ) ].map( ( _ ) => p.uint16 ); + lazy$1( this, `glyphIdArray`, getter ); + } + supports( charCode ) { + if ( charCode.charCodeAt ) { + charCode = -1; + console.warn( + `supports(character) not implemented for cmap subtable format 6. only supports(id) is implemented.` + ); + } + if ( charCode < this.firstCode ) return {}; + if ( charCode > this.firstCode + this.entryCount ) return {}; + const code = charCode - this.firstCode; + return { code: code, unicode: String.fromCodePoint( code ) }; + } + reverse( glyphID ) { + let pos = this.glyphIdArray.indexOf( glyphID ); + if ( pos > -1 ) return this.firstCode + pos; + } + getSupportedCharCodes( preservePropNames = false ) { + if ( preservePropNames ) { + return [ { firstCode: this.firstCode, lastCode: this.lastCode } ]; + } + return [ { start: this.firstCode, end: this.lastCode } ]; + } +} +class Format8 extends Subtable { + constructor( p, platformID, encodingID ) { + super( p, platformID, encodingID ); + this.format = 8; + p.uint16; + this.length = p.uint32; + this.language = p.uint32; + this.is32 = [ ...new Array( 8192 ) ].map( ( _ ) => p.uint8 ); + this.numGroups = p.uint32; + const getter = () => + [ ...new Array( this.numGroups ) ].map( + ( _ ) => new SequentialMapGroup$1( p ) + ); + lazy$1( this, `groups`, getter ); + } + supports( charCode ) { + if ( charCode.charCodeAt ) { + charCode = -1; + console.warn( + `supports(character) not implemented for cmap subtable format 8. only supports(id) is implemented.` + ); + } + return ( + this.groups.findIndex( + ( s ) => + s.startcharCode <= charCode && charCode <= s.endcharCode + ) !== -1 + ); + } + reverse( glyphID ) { + console.warn( `reverse not implemented for cmap subtable format 8` ); + return {}; + } + getSupportedCharCodes( preservePropNames = false ) { + if ( preservePropNames ) return this.groups; + return this.groups.map( ( v ) => ( { + start: v.startcharCode, + end: v.endcharCode, + } ) ); + } +} +class SequentialMapGroup$1 { + constructor( p ) { + this.startcharCode = p.uint32; + this.endcharCode = p.uint32; + this.startGlyphID = p.uint32; + } +} +class Format10 extends Subtable { + constructor( p, platformID, encodingID ) { + super( p, platformID, encodingID ); + this.format = 10; + p.uint16; + this.length = p.uint32; + this.language = p.uint32; + this.startCharCode = p.uint32; + this.numChars = p.uint32; + this.endCharCode = this.startCharCode + this.numChars; + const getter = () => + [ ...new Array( this.numChars ) ].map( ( _ ) => p.uint16 ); + lazy$1( this, `glyphs`, getter ); + } + supports( charCode ) { + if ( charCode.charCodeAt ) { + charCode = -1; + console.warn( + `supports(character) not implemented for cmap subtable format 10. only supports(id) is implemented.` + ); + } + if ( charCode < this.startCharCode ) return false; + if ( charCode > this.startCharCode + this.numChars ) return false; + return charCode - this.startCharCode; + } + reverse( glyphID ) { + console.warn( `reverse not implemented for cmap subtable format 10` ); + return {}; + } + getSupportedCharCodes( preservePropNames = false ) { + if ( preservePropNames ) { + return [ + { + startCharCode: this.startCharCode, + endCharCode: this.endCharCode, + }, + ]; + } + return [ { start: this.startCharCode, end: this.endCharCode } ]; + } +} +class Format12 extends Subtable { + constructor( p, platformID, encodingID ) { + super( p, platformID, encodingID ); + this.format = 12; + p.uint16; + this.length = p.uint32; + this.language = p.uint32; + this.numGroups = p.uint32; + const getter = () => + [ ...new Array( this.numGroups ) ].map( + ( _ ) => new SequentialMapGroup( p ) + ); + lazy$1( this, `groups`, getter ); + } + supports( charCode ) { + if ( charCode.charCodeAt ) charCode = charCode.charCodeAt( 0 ); + if ( 55296 <= charCode && charCode <= 57343 ) return 0; + if ( ( charCode & 65534 ) === 65534 || ( charCode & 65535 ) === 65535 ) + return 0; + return ( + this.groups.findIndex( + ( s ) => + s.startCharCode <= charCode && charCode <= s.endCharCode + ) !== -1 + ); + } + reverse( glyphID ) { + for ( let group of this.groups ) { + let start = group.startGlyphID; + if ( start > glyphID ) continue; + if ( start === glyphID ) return group.startCharCode; + let end = start + ( group.endCharCode - group.startCharCode ); + if ( end < glyphID ) continue; + const code = group.startCharCode + ( glyphID - start ); + return { code: code, unicode: String.fromCodePoint( code ) }; + } + return {}; + } + getSupportedCharCodes( preservePropNames = false ) { + if ( preservePropNames ) return this.groups; + return this.groups.map( ( v ) => ( { + start: v.startCharCode, + end: v.endCharCode, + } ) ); + } +} +class SequentialMapGroup { + constructor( p ) { + this.startCharCode = p.uint32; + this.endCharCode = p.uint32; + this.startGlyphID = p.uint32; + } +} +class Format13 extends Subtable { + constructor( p, platformID, encodingID ) { + super( p, platformID, encodingID ); + this.format = 13; + p.uint16; + this.length = p.uint32; + this.language = p.uint32; + this.numGroups = p.uint32; + const getter = [ ...new Array( this.numGroups ) ].map( + ( _ ) => new ConstantMapGroup( p ) + ); + lazy$1( this, `groups`, getter ); + } + supports( charCode ) { + if ( charCode.charCodeAt ) charCode = charCode.charCodeAt( 0 ); + return ( + this.groups.findIndex( + ( s ) => + s.startCharCode <= charCode && charCode <= s.endCharCode + ) !== -1 + ); + } + reverse( glyphID ) { + console.warn( `reverse not implemented for cmap subtable format 13` ); + return {}; + } + getSupportedCharCodes( preservePropNames = false ) { + if ( preservePropNames ) return this.groups; + return this.groups.map( ( v ) => ( { + start: v.startCharCode, + end: v.endCharCode, + } ) ); + } +} +class ConstantMapGroup { + constructor( p ) { + this.startCharCode = p.uint32; + this.endCharCode = p.uint32; + this.glyphID = p.uint32; + } +} +class Format14 extends Subtable { + constructor( p, platformID, encodingID ) { + super( p, platformID, encodingID ); + this.subTableStart = p.currentPosition; + this.format = 14; + this.length = p.uint32; + this.numVarSelectorRecords = p.uint32; + lazy$1( this, `varSelectors`, () => + [ ...new Array( this.numVarSelectorRecords ) ].map( + ( _ ) => new VariationSelector( p ) + ) + ); + } + supports() { + console.warn( `supports not implemented for cmap subtable format 14` ); + return 0; + } + getSupportedCharCodes() { + console.warn( + `getSupportedCharCodes not implemented for cmap subtable format 14` + ); + return []; + } + reverse( glyphID ) { + console.warn( `reverse not implemented for cmap subtable format 14` ); + return {}; + } + supportsVariation( variation ) { + let v = this.varSelector.find( + ( uvs ) => uvs.varSelector === variation + ); + return v ? v : false; + } + getSupportedVariations() { + return this.varSelectors.map( ( v ) => v.varSelector ); + } +} +class VariationSelector { + constructor( p ) { + this.varSelector = p.uint24; + this.defaultUVSOffset = p.Offset32; + this.nonDefaultUVSOffset = p.Offset32; + } +} +function createSubTable( parser, platformID, encodingID ) { + const format = parser.uint16; + if ( format === 0 ) return new Format0( parser, platformID, encodingID ); + if ( format === 2 ) return new Format2( parser, platformID, encodingID ); + if ( format === 4 ) return new Format4( parser, platformID, encodingID ); + if ( format === 6 ) return new Format6( parser, platformID, encodingID ); + if ( format === 8 ) return new Format8( parser, platformID, encodingID ); + if ( format === 10 ) return new Format10( parser, platformID, encodingID ); + if ( format === 12 ) return new Format12( parser, platformID, encodingID ); + if ( format === 13 ) return new Format13( parser, platformID, encodingID ); + if ( format === 14 ) return new Format14( parser, platformID, encodingID ); + return {}; +} +class cmap extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.uint16; + this.numTables = p.uint16; + this.encodingRecords = [ ...new Array( this.numTables ) ].map( + ( _ ) => new EncodingRecord( p, this.tableStart ) + ); + } + getSubTable( tableID ) { + return this.encodingRecords[ tableID ].table; + } + getSupportedEncodings() { + return this.encodingRecords.map( ( r ) => ( { + platformID: r.platformID, + encodingId: r.encodingID, + } ) ); + } + getSupportedCharCodes( platformID, encodingID ) { + const recordID = this.encodingRecords.findIndex( + ( r ) => r.platformID === platformID && r.encodingID === encodingID + ); + if ( recordID === -1 ) return false; + const subtable = this.getSubTable( recordID ); + return subtable.getSupportedCharCodes(); + } + reverse( glyphid ) { + for ( let i = 0; i < this.numTables; i++ ) { + let code = this.getSubTable( i ).reverse( glyphid ); + if ( code ) return code; + } + } + getGlyphId( char ) { + let last = 0; + this.encodingRecords.some( ( _, tableID ) => { + let t = this.getSubTable( tableID ); + if ( ! t.getGlyphId ) return false; + last = t.getGlyphId( char ); + return last !== 0; + } ); + return last; + } + supports( char ) { + return this.encodingRecords.some( ( _, tableID ) => { + const t = this.getSubTable( tableID ); + return t.supports && t.supports( char ) !== false; + } ); + } + supportsVariation( variation ) { + return this.encodingRecords.some( ( _, tableID ) => { + const t = this.getSubTable( tableID ); + return ( + t.supportsVariation && + t.supportsVariation( variation ) !== false + ); + } ); + } +} +class EncodingRecord { + constructor( p, tableStart ) { + const platformID = ( this.platformID = p.uint16 ); + const encodingID = ( this.encodingID = p.uint16 ); + const offset = ( this.offset = p.Offset32 ); + lazy$1( this, `table`, () => { + p.currentPosition = tableStart + offset; + return createSubTable( p, platformID, encodingID ); + } ); + } +} +var cmap$1 = Object.freeze( { __proto__: null, cmap: cmap } ); +class head extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.load( { + majorVersion: p.uint16, + minorVersion: p.uint16, + fontRevision: p.fixed, + checkSumAdjustment: p.uint32, + magicNumber: p.uint32, + flags: p.flags( 16 ), + unitsPerEm: p.uint16, + created: p.longdatetime, + modified: p.longdatetime, + xMin: p.int16, + yMin: p.int16, + xMax: p.int16, + yMax: p.int16, + macStyle: p.flags( 16 ), + lowestRecPPEM: p.uint16, + fontDirectionHint: p.uint16, + indexToLocFormat: p.uint16, + glyphDataFormat: p.uint16, + } ); + } +} +var head$1 = Object.freeze( { __proto__: null, head: head } ); +class hhea extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.majorVersion = p.uint16; + this.minorVersion = p.uint16; + this.ascender = p.fword; + this.descender = p.fword; + this.lineGap = p.fword; + this.advanceWidthMax = p.ufword; + this.minLeftSideBearing = p.fword; + this.minRightSideBearing = p.fword; + this.xMaxExtent = p.fword; + this.caretSlopeRise = p.int16; + this.caretSlopeRun = p.int16; + this.caretOffset = p.int16; + p.int16; + p.int16; + p.int16; + p.int16; + this.metricDataFormat = p.int16; + this.numberOfHMetrics = p.uint16; + p.verifyLength(); + } +} +var hhea$1 = Object.freeze( { __proto__: null, hhea: hhea } ); +class hmtx extends SimpleTable { + constructor( dict, dataview, tables ) { + const { p: p } = super( dict, dataview ); + const numberOfHMetrics = tables.hhea.numberOfHMetrics; + const numGlyphs = tables.maxp.numGlyphs; + const metricsStart = p.currentPosition; + lazy$1( this, `hMetrics`, () => { + p.currentPosition = metricsStart; + return [ ...new Array( numberOfHMetrics ) ].map( + ( _ ) => new LongHorMetric( p.uint16, p.int16 ) + ); + } ); + if ( numberOfHMetrics < numGlyphs ) { + const lsbStart = metricsStart + numberOfHMetrics * 4; + lazy$1( this, `leftSideBearings`, () => { + p.currentPosition = lsbStart; + return [ ...new Array( numGlyphs - numberOfHMetrics ) ].map( + ( _ ) => p.int16 + ); + } ); + } + } +} +class LongHorMetric { + constructor( w, b ) { + this.advanceWidth = w; + this.lsb = b; + } +} +var hmtx$1 = Object.freeze( { __proto__: null, hmtx: hmtx } ); +class maxp extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.legacyFixed; + this.numGlyphs = p.uint16; + if ( this.version === 1 ) { + this.maxPoints = p.uint16; + this.maxContours = p.uint16; + this.maxCompositePoints = p.uint16; + this.maxCompositeContours = p.uint16; + this.maxZones = p.uint16; + this.maxTwilightPoints = p.uint16; + this.maxStorage = p.uint16; + this.maxFunctionDefs = p.uint16; + this.maxInstructionDefs = p.uint16; + this.maxStackElements = p.uint16; + this.maxSizeOfInstructions = p.uint16; + this.maxComponentElements = p.uint16; + this.maxComponentDepth = p.uint16; + } + p.verifyLength(); + } +} +var maxp$1 = Object.freeze( { __proto__: null, maxp: maxp } ); +class name extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.format = p.uint16; + this.count = p.uint16; + this.stringOffset = p.Offset16; + this.nameRecords = [ ...new Array( this.count ) ].map( + ( _ ) => new NameRecord( p, this ) + ); + if ( this.format === 1 ) { + this.langTagCount = p.uint16; + this.langTagRecords = [ ...new Array( this.langTagCount ) ].map( + ( _ ) => new LangTagRecord( p.uint16, p.Offset16 ) + ); + } + this.stringStart = this.tableStart + this.stringOffset; + } + get( nameID ) { + let record = this.nameRecords.find( + ( record ) => record.nameID === nameID + ); + if ( record ) return record.string; + } +} +class LangTagRecord { + constructor( length, offset ) { + this.length = length; + this.offset = offset; + } +} +class NameRecord { + constructor( p, nameTable ) { + this.platformID = p.uint16; + this.encodingID = p.uint16; + this.languageID = p.uint16; + this.nameID = p.uint16; + this.length = p.uint16; + this.offset = p.Offset16; + lazy$1( this, `string`, () => { + p.currentPosition = nameTable.stringStart + this.offset; + return decodeString( p, this ); + } ); + } +} +function decodeString( p, record ) { + const { platformID: platformID, length: length } = record; + if ( length === 0 ) return ``; + if ( platformID === 0 || platformID === 3 ) { + const str = []; + for ( let i = 0, e = length / 2; i < e; i++ ) + str[ i ] = String.fromCharCode( p.uint16 ); + return str.join( `` ); + } + const bytes = p.readBytes( length ); + const str = []; + bytes.forEach( function ( b, i ) { + str[ i ] = String.fromCharCode( b ); + } ); + return str.join( `` ); +} +var name$1 = Object.freeze( { __proto__: null, name: name } ); +class OS2 extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.uint16; + this.xAvgCharWidth = p.int16; + this.usWeightClass = p.uint16; + this.usWidthClass = p.uint16; + this.fsType = p.uint16; + this.ySubscriptXSize = p.int16; + this.ySubscriptYSize = p.int16; + this.ySubscriptXOffset = p.int16; + this.ySubscriptYOffset = p.int16; + this.ySuperscriptXSize = p.int16; + this.ySuperscriptYSize = p.int16; + this.ySuperscriptXOffset = p.int16; + this.ySuperscriptYOffset = p.int16; + this.yStrikeoutSize = p.int16; + this.yStrikeoutPosition = p.int16; + this.sFamilyClass = p.int16; + this.panose = [ ...new Array( 10 ) ].map( ( _ ) => p.uint8 ); + this.ulUnicodeRange1 = p.flags( 32 ); + this.ulUnicodeRange2 = p.flags( 32 ); + this.ulUnicodeRange3 = p.flags( 32 ); + this.ulUnicodeRange4 = p.flags( 32 ); + this.achVendID = p.tag; + this.fsSelection = p.uint16; + this.usFirstCharIndex = p.uint16; + this.usLastCharIndex = p.uint16; + this.sTypoAscender = p.int16; + this.sTypoDescender = p.int16; + this.sTypoLineGap = p.int16; + this.usWinAscent = p.uint16; + this.usWinDescent = p.uint16; + if ( this.version === 0 ) return p.verifyLength(); + this.ulCodePageRange1 = p.flags( 32 ); + this.ulCodePageRange2 = p.flags( 32 ); + if ( this.version === 1 ) return p.verifyLength(); + this.sxHeight = p.int16; + this.sCapHeight = p.int16; + this.usDefaultChar = p.uint16; + this.usBreakChar = p.uint16; + this.usMaxContext = p.uint16; + if ( this.version <= 4 ) return p.verifyLength(); + this.usLowerOpticalPointSize = p.uint16; + this.usUpperOpticalPointSize = p.uint16; + if ( this.version === 5 ) return p.verifyLength(); + } +} +var OS2$1 = Object.freeze( { __proto__: null, OS2: OS2 } ); +class post extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.legacyFixed; + this.italicAngle = p.fixed; + this.underlinePosition = p.fword; + this.underlineThickness = p.fword; + this.isFixedPitch = p.uint32; + this.minMemType42 = p.uint32; + this.maxMemType42 = p.uint32; + this.minMemType1 = p.uint32; + this.maxMemType1 = p.uint32; + if ( this.version === 1 || this.version === 3 ) return p.verifyLength(); + this.numGlyphs = p.uint16; + if ( this.version === 2 ) { + this.glyphNameIndex = [ ...new Array( this.numGlyphs ) ].map( + ( _ ) => p.uint16 + ); + this.namesOffset = p.currentPosition; + this.glyphNameOffsets = [ 1 ]; + for ( let i = 0; i < this.numGlyphs; i++ ) { + let index = this.glyphNameIndex[ i ]; + if ( index < macStrings.length ) { + this.glyphNameOffsets.push( this.glyphNameOffsets[ i ] ); + continue; + } + let bytelength = p.int8; + p.skip( bytelength ); + this.glyphNameOffsets.push( + this.glyphNameOffsets[ i ] + bytelength + 1 + ); + } + } + if ( this.version === 2.5 ) { + this.offset = [ ...new Array( this.numGlyphs ) ].map( + ( _ ) => p.int8 + ); + } + } + getGlyphName( glyphid ) { + if ( this.version !== 2 ) { + console.warn( + `post table version ${ this.version } does not support glyph name lookups` + ); + return ``; + } + let index = this.glyphNameIndex[ glyphid ]; + if ( index < 258 ) return macStrings[ index ]; + let offset = this.glyphNameOffsets[ glyphid ]; + let next = this.glyphNameOffsets[ glyphid + 1 ]; + let len = next - offset - 1; + if ( len === 0 ) return `.notdef.`; + this.parser.currentPosition = this.namesOffset + offset; + const data = this.parser.readBytes( + len, + this.namesOffset + offset, + 8, + true + ); + return data.map( ( b ) => String.fromCharCode( b ) ).join( `` ); + } +} +const macStrings = [ + `.notdef`, + `.null`, + `nonmarkingreturn`, + `space`, + `exclam`, + `quotedbl`, + `numbersign`, + `dollar`, + `percent`, + `ampersand`, + `quotesingle`, + `parenleft`, + `parenright`, + `asterisk`, + `plus`, + `comma`, + `hyphen`, + `period`, + `slash`, + `zero`, + `one`, + `two`, + `three`, + `four`, + `five`, + `six`, + `seven`, + `eight`, + `nine`, + `colon`, + `semicolon`, + `less`, + `equal`, + `greater`, + `question`, + `at`, + `A`, + `B`, + `C`, + `D`, + `E`, + `F`, + `G`, + `H`, + `I`, + `J`, + `K`, + `L`, + `M`, + `N`, + `O`, + `P`, + `Q`, + `R`, + `S`, + `T`, + `U`, + `V`, + `W`, + `X`, + `Y`, + `Z`, + `bracketleft`, + `backslash`, + `bracketright`, + `asciicircum`, + `underscore`, + `grave`, + `a`, + `b`, + `c`, + `d`, + `e`, + `f`, + `g`, + `h`, + `i`, + `j`, + `k`, + `l`, + `m`, + `n`, + `o`, + `p`, + `q`, + `r`, + `s`, + `t`, + `u`, + `v`, + `w`, + `x`, + `y`, + `z`, + `braceleft`, + `bar`, + `braceright`, + `asciitilde`, + `Adieresis`, + `Aring`, + `Ccedilla`, + `Eacute`, + `Ntilde`, + `Odieresis`, + `Udieresis`, + `aacute`, + `agrave`, + `acircumflex`, + `adieresis`, + `atilde`, + `aring`, + `ccedilla`, + `eacute`, + `egrave`, + `ecircumflex`, + `edieresis`, + `iacute`, + `igrave`, + `icircumflex`, + `idieresis`, + `ntilde`, + `oacute`, + `ograve`, + `ocircumflex`, + `odieresis`, + `otilde`, + `uacute`, + `ugrave`, + `ucircumflex`, + `udieresis`, + `dagger`, + `degree`, + `cent`, + `sterling`, + `section`, + `bullet`, + `paragraph`, + `germandbls`, + `registered`, + `copyright`, + `trademark`, + `acute`, + `dieresis`, + `notequal`, + `AE`, + `Oslash`, + `infinity`, + `plusminus`, + `lessequal`, + `greaterequal`, + `yen`, + `mu`, + `partialdiff`, + `summation`, + `product`, + `pi`, + `integral`, + `ordfeminine`, + `ordmasculine`, + `Omega`, + `ae`, + `oslash`, + `questiondown`, + `exclamdown`, + `logicalnot`, + `radical`, + `florin`, + `approxequal`, + `Delta`, + `guillemotleft`, + `guillemotright`, + `ellipsis`, + `nonbreakingspace`, + `Agrave`, + `Atilde`, + `Otilde`, + `OE`, + `oe`, + `endash`, + `emdash`, + `quotedblleft`, + `quotedblright`, + `quoteleft`, + `quoteright`, + `divide`, + `lozenge`, + `ydieresis`, + `Ydieresis`, + `fraction`, + `currency`, + `guilsinglleft`, + `guilsinglright`, + `fi`, + `fl`, + `daggerdbl`, + `periodcentered`, + `quotesinglbase`, + `quotedblbase`, + `perthousand`, + `Acircumflex`, + `Ecircumflex`, + `Aacute`, + `Edieresis`, + `Egrave`, + `Iacute`, + `Icircumflex`, + `Idieresis`, + `Igrave`, + `Oacute`, + `Ocircumflex`, + `apple`, + `Ograve`, + `Uacute`, + `Ucircumflex`, + `Ugrave`, + `dotlessi`, + `circumflex`, + `tilde`, + `macron`, + `breve`, + `dotaccent`, + `ring`, + `cedilla`, + `hungarumlaut`, + `ogonek`, + `caron`, + `Lslash`, + `lslash`, + `Scaron`, + `scaron`, + `Zcaron`, + `zcaron`, + `brokenbar`, + `Eth`, + `eth`, + `Yacute`, + `yacute`, + `Thorn`, + `thorn`, + `minus`, + `multiply`, + `onesuperior`, + `twosuperior`, + `threesuperior`, + `onehalf`, + `onequarter`, + `threequarters`, + `franc`, + `Gbreve`, + `gbreve`, + `Idotaccent`, + `Scedilla`, + `scedilla`, + `Cacute`, + `cacute`, + `Ccaron`, + `ccaron`, + `dcroat`, +]; +var post$1 = Object.freeze( { __proto__: null, post: post } ); +class BASE extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.majorVersion = p.uint16; + this.minorVersion = p.uint16; + this.horizAxisOffset = p.Offset16; + this.vertAxisOffset = p.Offset16; + lazy$1( + this, + `horizAxis`, + () => + new AxisTable( + { offset: dict.offset + this.horizAxisOffset }, + dataview + ) + ); + lazy$1( + this, + `vertAxis`, + () => + new AxisTable( + { offset: dict.offset + this.vertAxisOffset }, + dataview + ) + ); + if ( this.majorVersion === 1 && this.minorVersion === 1 ) { + this.itemVarStoreOffset = p.Offset32; + lazy$1( + this, + `itemVarStore`, + () => + new AxisTable( + { offset: dict.offset + this.itemVarStoreOffset }, + dataview + ) + ); + } + } +} +class AxisTable extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview, `AxisTable` ); + this.baseTagListOffset = p.Offset16; + this.baseScriptListOffset = p.Offset16; + lazy$1( + this, + `baseTagList`, + () => + new BaseTagListTable( + { offset: dict.offset + this.baseTagListOffset }, + dataview + ) + ); + lazy$1( + this, + `baseScriptList`, + () => + new BaseScriptListTable( + { offset: dict.offset + this.baseScriptListOffset }, + dataview + ) + ); + } +} +class BaseTagListTable extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview, `BaseTagListTable` ); + this.baseTagCount = p.uint16; + this.baselineTags = [ ...new Array( this.baseTagCount ) ].map( + ( _ ) => p.tag + ); + } +} +class BaseScriptListTable extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview, `BaseScriptListTable` ); + this.baseScriptCount = p.uint16; + const recordStart = p.currentPosition; + lazy$1( this, `baseScriptRecords`, () => { + p.currentPosition = recordStart; + return [ ...new Array( this.baseScriptCount ) ].map( + ( _ ) => new BaseScriptRecord( this.start, p ) + ); + } ); + } +} +class BaseScriptRecord { + constructor( baseScriptListTableStart, p ) { + this.baseScriptTag = p.tag; + this.baseScriptOffset = p.Offset16; + lazy$1( this, `baseScriptTable`, () => { + p.currentPosition = + baseScriptListTableStart + this.baseScriptOffset; + return new BaseScriptTable( p ); + } ); + } +} +class BaseScriptTable { + constructor( p ) { + this.start = p.currentPosition; + this.baseValuesOffset = p.Offset16; + this.defaultMinMaxOffset = p.Offset16; + this.baseLangSysCount = p.uint16; + this.baseLangSysRecords = [ ...new Array( this.baseLangSysCount ) ].map( + ( _ ) => new BaseLangSysRecord( this.start, p ) + ); + lazy$1( this, `baseValues`, () => { + p.currentPosition = this.start + this.baseValuesOffset; + return new BaseValuesTable( p ); + } ); + lazy$1( this, `defaultMinMax`, () => { + p.currentPosition = this.start + this.defaultMinMaxOffset; + return new MinMaxTable( p ); + } ); + } +} +class BaseLangSysRecord { + constructor( baseScriptTableStart, p ) { + this.baseLangSysTag = p.tag; + this.minMaxOffset = p.Offset16; + lazy$1( this, `minMax`, () => { + p.currentPosition = baseScriptTableStart + this.minMaxOffset; + return new MinMaxTable( p ); + } ); + } +} +class BaseValuesTable { + constructor( p ) { + this.parser = p; + this.start = p.currentPosition; + this.defaultBaselineIndex = p.uint16; + this.baseCoordCount = p.uint16; + this.baseCoords = [ ...new Array( this.baseCoordCount ) ].map( + ( _ ) => p.Offset16 + ); + } + getTable( id ) { + this.parser.currentPosition = this.start + this.baseCoords[ id ]; + return new BaseCoordTable( this.parser ); + } +} +class MinMaxTable { + constructor( p ) { + this.minCoord = p.Offset16; + this.maxCoord = p.Offset16; + this.featMinMaxCount = p.uint16; + const recordStart = p.currentPosition; + lazy$1( this, `featMinMaxRecords`, () => { + p.currentPosition = recordStart; + return [ ...new Array( this.featMinMaxCount ) ].map( + ( _ ) => new FeatMinMaxRecord( p ) + ); + } ); + } +} +class FeatMinMaxRecord { + constructor( p ) { + this.featureTableTag = p.tag; + this.minCoord = p.Offset16; + this.maxCoord = p.Offset16; + } +} +class BaseCoordTable { + constructor( p ) { + this.baseCoordFormat = p.uint16; + this.coordinate = p.int16; + if ( this.baseCoordFormat === 2 ) { + this.referenceGlyph = p.uint16; + this.baseCoordPoint = p.uint16; + } + if ( this.baseCoordFormat === 3 ) { + this.deviceTable = p.Offset16; + } + } +} +var BASE$1 = Object.freeze( { __proto__: null, BASE: BASE } ); +class ClassDefinition { + constructor( p ) { + this.classFormat = p.uint16; + if ( this.classFormat === 1 ) { + this.startGlyphID = p.uint16; + this.glyphCount = p.uint16; + this.classValueArray = [ ...new Array( this.glyphCount ) ].map( + ( _ ) => p.uint16 + ); + } + if ( this.classFormat === 2 ) { + this.classRangeCount = p.uint16; + this.classRangeRecords = [ + ...new Array( this.classRangeCount ), + ].map( ( _ ) => new ClassRangeRecord( p ) ); + } + } +} +class ClassRangeRecord { + constructor( p ) { + this.startGlyphID = p.uint16; + this.endGlyphID = p.uint16; + this.class = p.uint16; + } +} +class CoverageTable extends ParsedData { + constructor( p ) { + super( p ); + this.coverageFormat = p.uint16; + if ( this.coverageFormat === 1 ) { + this.glyphCount = p.uint16; + this.glyphArray = [ ...new Array( this.glyphCount ) ].map( + ( _ ) => p.uint16 + ); + } + if ( this.coverageFormat === 2 ) { + this.rangeCount = p.uint16; + this.rangeRecords = [ ...new Array( this.rangeCount ) ].map( + ( _ ) => new CoverageRangeRecord( p ) + ); + } + } +} +class CoverageRangeRecord { + constructor( p ) { + this.startGlyphID = p.uint16; + this.endGlyphID = p.uint16; + this.startCoverageIndex = p.uint16; + } +} +class ItemVariationStoreTable { + constructor( table, p ) { + this.table = table; + this.parser = p; + this.start = p.currentPosition; + this.format = p.uint16; + this.variationRegionListOffset = p.Offset32; + this.itemVariationDataCount = p.uint16; + this.itemVariationDataOffsets = [ + ...new Array( this.itemVariationDataCount ), + ].map( ( _ ) => p.Offset32 ); + } +} +class GDEF extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.majorVersion = p.uint16; + this.minorVersion = p.uint16; + this.glyphClassDefOffset = p.Offset16; + lazy$1( this, `glyphClassDefs`, () => { + if ( this.glyphClassDefOffset === 0 ) return undefined; + p.currentPosition = this.tableStart + this.glyphClassDefOffset; + return new ClassDefinition( p ); + } ); + this.attachListOffset = p.Offset16; + lazy$1( this, `attachList`, () => { + if ( this.attachListOffset === 0 ) return undefined; + p.currentPosition = this.tableStart + this.attachListOffset; + return new AttachList( p ); + } ); + this.ligCaretListOffset = p.Offset16; + lazy$1( this, `ligCaretList`, () => { + if ( this.ligCaretListOffset === 0 ) return undefined; + p.currentPosition = this.tableStart + this.ligCaretListOffset; + return new LigCaretList( p ); + } ); + this.markAttachClassDefOffset = p.Offset16; + lazy$1( this, `markAttachClassDef`, () => { + if ( this.markAttachClassDefOffset === 0 ) return undefined; + p.currentPosition = this.tableStart + this.markAttachClassDefOffset; + return new ClassDefinition( p ); + } ); + if ( this.minorVersion >= 2 ) { + this.markGlyphSetsDefOffset = p.Offset16; + lazy$1( this, `markGlyphSetsDef`, () => { + if ( this.markGlyphSetsDefOffset === 0 ) return undefined; + p.currentPosition = + this.tableStart + this.markGlyphSetsDefOffset; + return new MarkGlyphSetsTable( p ); + } ); + } + if ( this.minorVersion === 3 ) { + this.itemVarStoreOffset = p.Offset32; + lazy$1( this, `itemVarStore`, () => { + if ( this.itemVarStoreOffset === 0 ) return undefined; + p.currentPosition = this.tableStart + this.itemVarStoreOffset; + return new ItemVariationStoreTable( p ); + } ); + } + } +} +class AttachList extends ParsedData { + constructor( p ) { + super( p ); + this.coverageOffset = p.Offset16; + this.glyphCount = p.uint16; + this.attachPointOffsets = [ ...new Array( this.glyphCount ) ].map( + ( _ ) => p.Offset16 + ); + } + getPoint( pointID ) { + this.parser.currentPosition = + this.start + this.attachPointOffsets[ pointID ]; + return new AttachPoint( this.parser ); + } +} +class AttachPoint { + constructor( p ) { + this.pointCount = p.uint16; + this.pointIndices = [ ...new Array( this.pointCount ) ].map( + ( _ ) => p.uint16 + ); + } +} +class LigCaretList extends ParsedData { + constructor( p ) { + super( p ); + this.coverageOffset = p.Offset16; + lazy$1( this, `coverage`, () => { + p.currentPosition = this.start + this.coverageOffset; + return new CoverageTable( p ); + } ); + this.ligGlyphCount = p.uint16; + this.ligGlyphOffsets = [ ...new Array( this.ligGlyphCount ) ].map( + ( _ ) => p.Offset16 + ); + } + getLigGlyph( ligGlyphID ) { + this.parser.currentPosition = + this.start + this.ligGlyphOffsets[ ligGlyphID ]; + return new LigGlyph( this.parser ); + } +} +class LigGlyph extends ParsedData { + constructor( p ) { + super( p ); + this.caretCount = p.uint16; + this.caretValueOffsets = [ ...new Array( this.caretCount ) ].map( + ( _ ) => p.Offset16 + ); + } + getCaretValue( caretID ) { + this.parser.currentPosition = + this.start + this.caretValueOffsets[ caretID ]; + return new CaretValue( this.parser ); + } +} +class CaretValue { + constructor( p ) { + this.caretValueFormat = p.uint16; + if ( this.caretValueFormat === 1 ) { + this.coordinate = p.int16; + } + if ( this.caretValueFormat === 2 ) { + this.caretValuePointIndex = p.uint16; + } + if ( this.caretValueFormat === 3 ) { + this.coordinate = p.int16; + this.deviceOffset = p.Offset16; + } + } +} +class MarkGlyphSetsTable extends ParsedData { + constructor( p ) { + super( p ); + this.markGlyphSetTableFormat = p.uint16; + this.markGlyphSetCount = p.uint16; + this.coverageOffsets = [ ...new Array( this.markGlyphSetCount ) ].map( + ( _ ) => p.Offset32 + ); + } + getMarkGlyphSet( markGlyphSetID ) { + this.parser.currentPosition = + this.start + this.coverageOffsets[ markGlyphSetID ]; + return new CoverageTable( this.parser ); + } +} +var GDEF$1 = Object.freeze( { __proto__: null, GDEF: GDEF } ); +class ScriptList extends ParsedData { + static EMPTY = { scriptCount: 0, scriptRecords: [] }; + constructor( p ) { + super( p ); + this.scriptCount = p.uint16; + this.scriptRecords = [ ...new Array( this.scriptCount ) ].map( + ( _ ) => new ScriptRecord( p ) + ); + } +} +class ScriptRecord { + constructor( p ) { + this.scriptTag = p.tag; + this.scriptOffset = p.Offset16; + } +} +class ScriptTable extends ParsedData { + constructor( p ) { + super( p ); + this.defaultLangSys = p.Offset16; + this.langSysCount = p.uint16; + this.langSysRecords = [ ...new Array( this.langSysCount ) ].map( + ( _ ) => new LangSysRecord( p ) + ); + } +} +class LangSysRecord { + constructor( p ) { + this.langSysTag = p.tag; + this.langSysOffset = p.Offset16; + } +} +class LangSysTable { + constructor( p ) { + this.lookupOrder = p.Offset16; + this.requiredFeatureIndex = p.uint16; + this.featureIndexCount = p.uint16; + this.featureIndices = [ ...new Array( this.featureIndexCount ) ].map( + ( _ ) => p.uint16 + ); + } +} +class FeatureList extends ParsedData { + static EMPTY = { featureCount: 0, featureRecords: [] }; + constructor( p ) { + super( p ); + this.featureCount = p.uint16; + this.featureRecords = [ ...new Array( this.featureCount ) ].map( + ( _ ) => new FeatureRecord( p ) + ); + } +} +class FeatureRecord { + constructor( p ) { + this.featureTag = p.tag; + this.featureOffset = p.Offset16; + } +} +class FeatureTable extends ParsedData { + constructor( p ) { + super( p ); + this.featureParams = p.Offset16; + this.lookupIndexCount = p.uint16; + this.lookupListIndices = [ ...new Array( this.lookupIndexCount ) ].map( + ( _ ) => p.uint16 + ); + } + getFeatureParams() { + if ( this.featureParams > 0 ) { + const p = this.parser; + p.currentPosition = this.start + this.featureParams; + const tag = this.featureTag; + if ( tag === `size` ) return new Size( p ); + if ( tag.startsWith( `cc` ) ) return new CharacterVariant( p ); + if ( tag.startsWith( `ss` ) ) return new StylisticSet( p ); + } + } +} +class CharacterVariant { + constructor( p ) { + this.format = p.uint16; + this.featUiLabelNameId = p.uint16; + this.featUiTooltipTextNameId = p.uint16; + this.sampleTextNameId = p.uint16; + this.numNamedParameters = p.uint16; + this.firstParamUiLabelNameId = p.uint16; + this.charCount = p.uint16; + this.character = [ ...new Array( this.charCount ) ].map( + ( _ ) => p.uint24 + ); + } +} +class Size { + constructor( p ) { + this.designSize = p.uint16; + this.subfamilyIdentifier = p.uint16; + this.subfamilyNameID = p.uint16; + this.smallEnd = p.uint16; + this.largeEnd = p.uint16; + } +} +class StylisticSet { + constructor( p ) { + this.version = p.uint16; + this.UINameID = p.uint16; + } +} +function undoCoverageOffsetParsing( instance ) { + instance.parser.currentPosition -= 2; + delete instance.coverageOffset; + delete instance.getCoverageTable; +} +class LookupType$1 extends ParsedData { + constructor( p ) { + super( p ); + this.substFormat = p.uint16; + this.coverageOffset = p.Offset16; + } + getCoverageTable() { + let p = this.parser; + p.currentPosition = this.start + this.coverageOffset; + return new CoverageTable( p ); + } +} +class SubstLookupRecord { + constructor( p ) { + this.glyphSequenceIndex = p.uint16; + this.lookupListIndex = p.uint16; + } +} +class LookupType1$1 extends LookupType$1 { + constructor( p ) { + super( p ); + this.deltaGlyphID = p.int16; + } +} +class LookupType2$1 extends LookupType$1 { + constructor( p ) { + super( p ); + this.sequenceCount = p.uint16; + this.sequenceOffsets = [ ...new Array( this.sequenceCount ) ].map( + ( _ ) => p.Offset16 + ); + } + getSequence( index ) { + let p = this.parser; + p.currentPosition = this.start + this.sequenceOffsets[ index ]; + return new SequenceTable( p ); + } +} +class SequenceTable { + constructor( p ) { + this.glyphCount = p.uint16; + this.substituteGlyphIDs = [ ...new Array( this.glyphCount ) ].map( + ( _ ) => p.uint16 + ); + } +} +class LookupType3$1 extends LookupType$1 { + constructor( p ) { + super( p ); + this.alternateSetCount = p.uint16; + this.alternateSetOffsets = [ + ...new Array( this.alternateSetCount ), + ].map( ( _ ) => p.Offset16 ); + } + getAlternateSet( index ) { + let p = this.parser; + p.currentPosition = this.start + this.alternateSetOffsets[ index ]; + return new AlternateSetTable( p ); + } +} +class AlternateSetTable { + constructor( p ) { + this.glyphCount = p.uint16; + this.alternateGlyphIDs = [ ...new Array( this.glyphCount ) ].map( + ( _ ) => p.uint16 + ); + } +} +class LookupType4$1 extends LookupType$1 { + constructor( p ) { + super( p ); + this.ligatureSetCount = p.uint16; + this.ligatureSetOffsets = [ ...new Array( this.ligatureSetCount ) ].map( + ( _ ) => p.Offset16 + ); + } + getLigatureSet( index ) { + let p = this.parser; + p.currentPosition = this.start + this.ligatureSetOffsets[ index ]; + return new LigatureSetTable( p ); + } +} +class LigatureSetTable extends ParsedData { + constructor( p ) { + super( p ); + this.ligatureCount = p.uint16; + this.ligatureOffsets = [ ...new Array( this.ligatureCount ) ].map( + ( _ ) => p.Offset16 + ); + } + getLigature( index ) { + let p = this.parser; + p.currentPosition = this.start + this.ligatureOffsets[ index ]; + return new LigatureTable( p ); + } +} +class LigatureTable { + constructor( p ) { + this.ligatureGlyph = p.uint16; + this.componentCount = p.uint16; + this.componentGlyphIDs = [ + ...new Array( this.componentCount - 1 ), + ].map( ( _ ) => p.uint16 ); + } +} +class LookupType5$1 extends LookupType$1 { + constructor( p ) { + super( p ); + if ( this.substFormat === 1 ) { + this.subRuleSetCount = p.uint16; + this.subRuleSetOffsets = [ + ...new Array( this.subRuleSetCount ), + ].map( ( _ ) => p.Offset16 ); + } + if ( this.substFormat === 2 ) { + this.classDefOffset = p.Offset16; + this.subClassSetCount = p.uint16; + this.subClassSetOffsets = [ + ...new Array( this.subClassSetCount ), + ].map( ( _ ) => p.Offset16 ); + } + if ( this.substFormat === 3 ) { + undoCoverageOffsetParsing( this ); + this.glyphCount = p.uint16; + this.substitutionCount = p.uint16; + this.coverageOffsets = [ ...new Array( this.glyphCount ) ].map( + ( _ ) => p.Offset16 + ); + this.substLookupRecords = [ + ...new Array( this.substitutionCount ), + ].map( ( _ ) => new SubstLookupRecord( p ) ); + } + } + getSubRuleSet( index ) { + if ( this.substFormat !== 1 ) + throw new Error( + `lookup type 5.${ this.substFormat } has no subrule sets.` + ); + let p = this.parser; + p.currentPosition = this.start + this.subRuleSetOffsets[ index ]; + return new SubRuleSetTable( p ); + } + getSubClassSet( index ) { + if ( this.substFormat !== 2 ) + throw new Error( + `lookup type 5.${ this.substFormat } has no subclass sets.` + ); + let p = this.parser; + p.currentPosition = this.start + this.subClassSetOffsets[ index ]; + return new SubClassSetTable( p ); + } + getCoverageTable( index ) { + if ( this.substFormat !== 3 && ! index ) + return super.getCoverageTable(); + if ( ! index ) + throw new Error( + `lookup type 5.${ this.substFormat } requires an coverage table index.` + ); + let p = this.parser; + p.currentPosition = this.start + this.coverageOffsets[ index ]; + return new CoverageTable( p ); + } +} +class SubRuleSetTable extends ParsedData { + constructor( p ) { + super( p ); + this.subRuleCount = p.uint16; + this.subRuleOffsets = [ ...new Array( this.subRuleCount ) ].map( + ( _ ) => p.Offset16 + ); + } + getSubRule( index ) { + let p = this.parser; + p.currentPosition = this.start + this.subRuleOffsets[ index ]; + return new SubRuleTable( p ); + } +} +class SubRuleTable { + constructor( p ) { + this.glyphCount = p.uint16; + this.substitutionCount = p.uint16; + this.inputSequence = [ ...new Array( this.glyphCount - 1 ) ].map( + ( _ ) => p.uint16 + ); + this.substLookupRecords = [ + ...new Array( this.substitutionCount ), + ].map( ( _ ) => new SubstLookupRecord( p ) ); + } +} +class SubClassSetTable extends ParsedData { + constructor( p ) { + super( p ); + this.subClassRuleCount = p.uint16; + this.subClassRuleOffsets = [ + ...new Array( this.subClassRuleCount ), + ].map( ( _ ) => p.Offset16 ); + } + getSubClass( index ) { + let p = this.parser; + p.currentPosition = this.start + this.subClassRuleOffsets[ index ]; + return new SubClassRuleTable( p ); + } +} +class SubClassRuleTable extends SubRuleTable { + constructor( p ) { + super( p ); + } +} +class LookupType6$1 extends LookupType$1 { + constructor( p ) { + super( p ); + if ( this.substFormat === 1 ) { + this.chainSubRuleSetCount = p.uint16; + this.chainSubRuleSetOffsets = [ + ...new Array( this.chainSubRuleSetCount ), + ].map( ( _ ) => p.Offset16 ); + } + if ( this.substFormat === 2 ) { + this.backtrackClassDefOffset = p.Offset16; + this.inputClassDefOffset = p.Offset16; + this.lookaheadClassDefOffset = p.Offset16; + this.chainSubClassSetCount = p.uint16; + this.chainSubClassSetOffsets = [ + ...new Array( this.chainSubClassSetCount ), + ].map( ( _ ) => p.Offset16 ); + } + if ( this.substFormat === 3 ) { + undoCoverageOffsetParsing( this ); + this.backtrackGlyphCount = p.uint16; + this.backtrackCoverageOffsets = [ + ...new Array( this.backtrackGlyphCount ), + ].map( ( _ ) => p.Offset16 ); + this.inputGlyphCount = p.uint16; + this.inputCoverageOffsets = [ + ...new Array( this.inputGlyphCount ), + ].map( ( _ ) => p.Offset16 ); + this.lookaheadGlyphCount = p.uint16; + this.lookaheadCoverageOffsets = [ + ...new Array( this.lookaheadGlyphCount ), + ].map( ( _ ) => p.Offset16 ); + this.seqLookupCount = p.uint16; + this.seqLookupRecords = [ + ...new Array( this.substitutionCount ), + ].map( ( _ ) => new SequenceLookupRecord( p ) ); + } + } + getChainSubRuleSet( index ) { + if ( this.substFormat !== 1 ) + throw new Error( + `lookup type 6.${ this.substFormat } has no chainsubrule sets.` + ); + let p = this.parser; + p.currentPosition = this.start + this.chainSubRuleSetOffsets[ index ]; + return new ChainSubRuleSetTable( p ); + } + getChainSubClassSet( index ) { + if ( this.substFormat !== 2 ) + throw new Error( + `lookup type 6.${ this.substFormat } has no chainsubclass sets.` + ); + let p = this.parser; + p.currentPosition = this.start + this.chainSubClassSetOffsets[ index ]; + return new ChainSubClassSetTable( p ); + } + getCoverageFromOffset( offset ) { + if ( this.substFormat !== 3 ) + throw new Error( + `lookup type 6.${ this.substFormat } does not use contextual coverage offsets.` + ); + let p = this.parser; + p.currentPosition = this.start + offset; + return new CoverageTable( p ); + } +} +class ChainSubRuleSetTable extends ParsedData { + constructor( p ) { + super( p ); + this.chainSubRuleCount = p.uint16; + this.chainSubRuleOffsets = [ + ...new Array( this.chainSubRuleCount ), + ].map( ( _ ) => p.Offset16 ); + } + getSubRule( index ) { + let p = this.parser; + p.currentPosition = this.start + this.chainSubRuleOffsets[ index ]; + return new ChainSubRuleTable( p ); + } +} +class ChainSubRuleTable { + constructor( p ) { + this.backtrackGlyphCount = p.uint16; + this.backtrackSequence = [ + ...new Array( this.backtrackGlyphCount ), + ].map( ( _ ) => p.uint16 ); + this.inputGlyphCount = p.uint16; + this.inputSequence = [ ...new Array( this.inputGlyphCount - 1 ) ].map( + ( _ ) => p.uint16 + ); + this.lookaheadGlyphCount = p.uint16; + this.lookAheadSequence = [ + ...new Array( this.lookAheadGlyphCount ), + ].map( ( _ ) => p.uint16 ); + this.substitutionCount = p.uint16; + this.substLookupRecords = [ ...new Array( this.SubstCount ) ].map( + ( _ ) => new SubstLookupRecord( p ) + ); + } +} +class ChainSubClassSetTable extends ParsedData { + constructor( p ) { + super( p ); + this.chainSubClassRuleCount = p.uint16; + this.chainSubClassRuleOffsets = [ + ...new Array( this.chainSubClassRuleCount ), + ].map( ( _ ) => p.Offset16 ); + } + getSubClass( index ) { + let p = this.parser; + p.currentPosition = this.start + this.chainSubRuleOffsets[ index ]; + return new ChainSubClassRuleTable( p ); + } +} +class ChainSubClassRuleTable { + constructor( p ) { + this.backtrackGlyphCount = p.uint16; + this.backtrackSequence = [ + ...new Array( this.backtrackGlyphCount ), + ].map( ( _ ) => p.uint16 ); + this.inputGlyphCount = p.uint16; + this.inputSequence = [ ...new Array( this.inputGlyphCount - 1 ) ].map( + ( _ ) => p.uint16 + ); + this.lookaheadGlyphCount = p.uint16; + this.lookAheadSequence = [ + ...new Array( this.lookAheadGlyphCount ), + ].map( ( _ ) => p.uint16 ); + this.substitutionCount = p.uint16; + this.substLookupRecords = [ + ...new Array( this.substitutionCount ), + ].map( ( _ ) => new SequenceLookupRecord( p ) ); + } +} +class SequenceLookupRecord extends ParsedData { + constructor( p ) { + super( p ); + this.sequenceIndex = p.uint16; + this.lookupListIndex = p.uint16; + } +} +class LookupType7$1 extends ParsedData { + constructor( p ) { + super( p ); + this.substFormat = p.uint16; + this.extensionLookupType = p.uint16; + this.extensionOffset = p.Offset32; + } +} +class LookupType8$1 extends LookupType$1 { + constructor( p ) { + super( p ); + this.backtrackGlyphCount = p.uint16; + this.backtrackCoverageOffsets = [ + ...new Array( this.backtrackGlyphCount ), + ].map( ( _ ) => p.Offset16 ); + this.lookaheadGlyphCount = p.uint16; + this.lookaheadCoverageOffsets = [ + new Array( this.lookaheadGlyphCount ), + ].map( ( _ ) => p.Offset16 ); + this.glyphCount = p.uint16; + this.substituteGlyphIDs = [ ...new Array( this.glyphCount ) ].map( + ( _ ) => p.uint16 + ); + } +} +var GSUBtables = { + buildSubtable: function ( type, p ) { + const subtable = new [ + undefined, + LookupType1$1, + LookupType2$1, + LookupType3$1, + LookupType4$1, + LookupType5$1, + LookupType6$1, + LookupType7$1, + LookupType8$1, + ][ type ]( p ); + subtable.type = type; + return subtable; + }, +}; +class LookupType extends ParsedData { + constructor( p ) { + super( p ); + } +} +class LookupType1 extends LookupType { + constructor( p ) { + super( p ); + console.log( `lookup type 1` ); + } +} +class LookupType2 extends LookupType { + constructor( p ) { + super( p ); + console.log( `lookup type 2` ); + } +} +class LookupType3 extends LookupType { + constructor( p ) { + super( p ); + console.log( `lookup type 3` ); + } +} +class LookupType4 extends LookupType { + constructor( p ) { + super( p ); + console.log( `lookup type 4` ); + } +} +class LookupType5 extends LookupType { + constructor( p ) { + super( p ); + console.log( `lookup type 5` ); + } +} +class LookupType6 extends LookupType { + constructor( p ) { + super( p ); + console.log( `lookup type 6` ); + } +} +class LookupType7 extends LookupType { + constructor( p ) { + super( p ); + console.log( `lookup type 7` ); + } +} +class LookupType8 extends LookupType { + constructor( p ) { + super( p ); + console.log( `lookup type 8` ); + } +} +class LookupType9 extends LookupType { + constructor( p ) { + super( p ); + console.log( `lookup type 9` ); + } +} +var GPOStables = { + buildSubtable: function ( type, p ) { + const subtable = new [ + undefined, + LookupType1, + LookupType2, + LookupType3, + LookupType4, + LookupType5, + LookupType6, + LookupType7, + LookupType8, + LookupType9, + ][ type ]( p ); + subtable.type = type; + return subtable; + }, +}; +class LookupList extends ParsedData { + static EMPTY = { lookupCount: 0, lookups: [] }; + constructor( p ) { + super( p ); + this.lookupCount = p.uint16; + this.lookups = [ ...new Array( this.lookupCount ) ].map( + ( _ ) => p.Offset16 + ); + } +} +class LookupTable extends ParsedData { + constructor( p, type ) { + super( p ); + this.ctType = type; + this.lookupType = p.uint16; + this.lookupFlag = p.uint16; + this.subTableCount = p.uint16; + this.subtableOffsets = [ ...new Array( this.subTableCount ) ].map( + ( _ ) => p.Offset16 + ); + this.markFilteringSet = p.uint16; + } + get rightToLeft() { + return this.lookupFlag & ( 1 === 1 ); + } + get ignoreBaseGlyphs() { + return this.lookupFlag & ( 2 === 2 ); + } + get ignoreLigatures() { + return this.lookupFlag & ( 4 === 4 ); + } + get ignoreMarks() { + return this.lookupFlag & ( 8 === 8 ); + } + get useMarkFilteringSet() { + return this.lookupFlag & ( 16 === 16 ); + } + get markAttachmentType() { + return this.lookupFlag & ( 65280 === 65280 ); + } + getSubTable( index ) { + const builder = this.ctType === `GSUB` ? GSUBtables : GPOStables; + this.parser.currentPosition = + this.start + this.subtableOffsets[ index ]; + return builder.buildSubtable( this.lookupType, this.parser ); + } +} +class CommonLayoutTable extends SimpleTable { + constructor( dict, dataview, name ) { + const { p: p, tableStart: tableStart } = super( dict, dataview, name ); + this.majorVersion = p.uint16; + this.minorVersion = p.uint16; + this.scriptListOffset = p.Offset16; + this.featureListOffset = p.Offset16; + this.lookupListOffset = p.Offset16; + if ( this.majorVersion === 1 && this.minorVersion === 1 ) { + this.featureVariationsOffset = p.Offset32; + } + const no_content = ! ( + this.scriptListOffset || + this.featureListOffset || + this.lookupListOffset + ); + lazy$1( this, `scriptList`, () => { + if ( no_content ) return ScriptList.EMPTY; + p.currentPosition = tableStart + this.scriptListOffset; + return new ScriptList( p ); + } ); + lazy$1( this, `featureList`, () => { + if ( no_content ) return FeatureList.EMPTY; + p.currentPosition = tableStart + this.featureListOffset; + return new FeatureList( p ); + } ); + lazy$1( this, `lookupList`, () => { + if ( no_content ) return LookupList.EMPTY; + p.currentPosition = tableStart + this.lookupListOffset; + return new LookupList( p ); + } ); + if ( this.featureVariationsOffset ) { + lazy$1( this, `featureVariations`, () => { + if ( no_content ) return FeatureVariations.EMPTY; + p.currentPosition = tableStart + this.featureVariationsOffset; + return new FeatureVariations( p ); + } ); + } + } + getSupportedScripts() { + return this.scriptList.scriptRecords.map( ( r ) => r.scriptTag ); + } + getScriptTable( scriptTag ) { + let record = this.scriptList.scriptRecords.find( + ( r ) => r.scriptTag === scriptTag + ); + this.parser.currentPosition = + this.scriptList.start + record.scriptOffset; + let table = new ScriptTable( this.parser ); + table.scriptTag = scriptTag; + return table; + } + ensureScriptTable( arg ) { + if ( typeof arg === 'string' ) { + return this.getScriptTable( arg ); + } + return arg; + } + getSupportedLangSys( scriptTable ) { + scriptTable = this.ensureScriptTable( scriptTable ); + const hasDefault = scriptTable.defaultLangSys !== 0; + const supported = scriptTable.langSysRecords.map( + ( l ) => l.langSysTag + ); + if ( hasDefault ) supported.unshift( `dflt` ); + return supported; + } + getDefaultLangSysTable( scriptTable ) { + scriptTable = this.ensureScriptTable( scriptTable ); + let offset = scriptTable.defaultLangSys; + if ( offset !== 0 ) { + this.parser.currentPosition = scriptTable.start + offset; + let table = new LangSysTable( this.parser ); + table.langSysTag = ``; + table.defaultForScript = scriptTable.scriptTag; + return table; + } + } + getLangSysTable( scriptTable, langSysTag = `dflt` ) { + if ( langSysTag === `dflt` ) + return this.getDefaultLangSysTable( scriptTable ); + scriptTable = this.ensureScriptTable( scriptTable ); + let record = scriptTable.langSysRecords.find( + ( l ) => l.langSysTag === langSysTag + ); + this.parser.currentPosition = scriptTable.start + record.langSysOffset; + let table = new LangSysTable( this.parser ); + table.langSysTag = langSysTag; + return table; + } + getFeatures( langSysTable ) { + return langSysTable.featureIndices.map( ( index ) => + this.getFeature( index ) + ); + } + getFeature( indexOrTag ) { + let record; + if ( parseInt( indexOrTag ) == indexOrTag ) { + record = this.featureList.featureRecords[ indexOrTag ]; + } else { + record = this.featureList.featureRecords.find( + ( f ) => f.featureTag === indexOrTag + ); + } + if ( ! record ) return; + this.parser.currentPosition = + this.featureList.start + record.featureOffset; + let table = new FeatureTable( this.parser ); + table.featureTag = record.featureTag; + return table; + } + getLookups( featureTable ) { + return featureTable.lookupListIndices.map( ( index ) => + this.getLookup( index ) + ); + } + getLookup( lookupIndex, type ) { + let lookupOffset = this.lookupList.lookups[ lookupIndex ]; + this.parser.currentPosition = this.lookupList.start + lookupOffset; + return new LookupTable( this.parser, type ); + } +} +class GSUB extends CommonLayoutTable { + constructor( dict, dataview ) { + super( dict, dataview, `GSUB` ); + } + getLookup( lookupIndex ) { + return super.getLookup( lookupIndex, `GSUB` ); + } +} +var GSUB$1 = Object.freeze( { __proto__: null, GSUB: GSUB } ); +class GPOS extends CommonLayoutTable { + constructor( dict, dataview ) { + super( dict, dataview, `GPOS` ); + } + getLookup( lookupIndex ) { + return super.getLookup( lookupIndex, `GPOS` ); + } +} +var GPOS$1 = Object.freeze( { __proto__: null, GPOS: GPOS } ); +class SVG extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.uint16; + this.offsetToSVGDocumentList = p.Offset32; + p.currentPosition = this.tableStart + this.offsetToSVGDocumentList; + this.documentList = new SVGDocumentList( p ); + } +} +class SVGDocumentList extends ParsedData { + constructor( p ) { + super( p ); + this.numEntries = p.uint16; + this.documentRecords = [ ...new Array( this.numEntries ) ].map( + ( _ ) => new SVGDocumentRecord( p ) + ); + } + getDocument( documentID ) { + let record = this.documentRecords[ documentID ]; + if ( ! record ) return ''; + let offset = this.start + record.svgDocOffset; + this.parser.currentPosition = offset; + return this.parser.readBytes( record.svgDocLength ); + } + getDocumentForGlyph( glyphID ) { + let id = this.documentRecords.findIndex( + ( d ) => d.startGlyphID <= glyphID && glyphID <= d.endGlyphID + ); + if ( id === -1 ) return ''; + return this.getDocument( id ); + } +} +class SVGDocumentRecord { + constructor( p ) { + this.startGlyphID = p.uint16; + this.endGlyphID = p.uint16; + this.svgDocOffset = p.Offset32; + this.svgDocLength = p.uint32; + } +} +var SVG$1 = Object.freeze( { __proto__: null, SVG: SVG } ); +class fvar extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.majorVersion = p.uint16; + this.minorVersion = p.uint16; + this.axesArrayOffset = p.Offset16; + p.uint16; + this.axisCount = p.uint16; + this.axisSize = p.uint16; + this.instanceCount = p.uint16; + this.instanceSize = p.uint16; + const axisStart = this.tableStart + this.axesArrayOffset; + lazy$1( this, `axes`, () => { + p.currentPosition = axisStart; + return [ ...new Array( this.axisCount ) ].map( + ( _ ) => new VariationAxisRecord( p ) + ); + } ); + const instanceStart = axisStart + this.axisCount * this.axisSize; + lazy$1( this, `instances`, () => { + let instances = []; + for ( let i = 0; i < this.instanceCount; i++ ) { + p.currentPosition = instanceStart + i * this.instanceSize; + instances.push( + new InstanceRecord( p, this.axisCount, this.instanceSize ) + ); + } + return instances; + } ); + } + getSupportedAxes() { + return this.axes.map( ( a ) => a.tag ); + } + getAxis( name ) { + return this.axes.find( ( a ) => a.tag === name ); + } +} +class VariationAxisRecord { + constructor( p ) { + this.tag = p.tag; + this.minValue = p.fixed; + this.defaultValue = p.fixed; + this.maxValue = p.fixed; + this.flags = p.flags( 16 ); + this.axisNameID = p.uint16; + } +} +class InstanceRecord { + constructor( p, axisCount, size ) { + let start = p.currentPosition; + this.subfamilyNameID = p.uint16; + p.uint16; + this.coordinates = [ ...new Array( axisCount ) ].map( + ( _ ) => p.fixed + ); + if ( p.currentPosition - start < size ) { + this.postScriptNameID = p.uint16; + } + } +} +var fvar$1 = Object.freeze( { __proto__: null, fvar: fvar } ); +class cvt extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + const n = dict.length / 2; + lazy$1( this, `items`, () => + [ ...new Array( n ) ].map( ( _ ) => p.fword ) + ); + } +} +var cvt$1 = Object.freeze( { __proto__: null, cvt: cvt } ); +class fpgm extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + lazy$1( this, `instructions`, () => + [ ...new Array( dict.length ) ].map( ( _ ) => p.uint8 ) + ); + } +} +var fpgm$1 = Object.freeze( { __proto__: null, fpgm: fpgm } ); +class gasp extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.uint16; + this.numRanges = p.uint16; + const getter = () => + [ ...new Array( this.numRanges ) ].map( + ( _ ) => new GASPRange( p ) + ); + lazy$1( this, `gaspRanges`, getter ); + } +} +class GASPRange { + constructor( p ) { + this.rangeMaxPPEM = p.uint16; + this.rangeGaspBehavior = p.uint16; + } +} +var gasp$1 = Object.freeze( { __proto__: null, gasp: gasp } ); +class glyf extends SimpleTable { + constructor( dict, dataview ) { + super( dict, dataview ); + } + getGlyphData( offset, length ) { + this.parser.currentPosition = this.tableStart + offset; + return this.parser.readBytes( length ); + } +} +var glyf$1 = Object.freeze( { __proto__: null, glyf: glyf } ); +class loca extends SimpleTable { + constructor( dict, dataview, tables ) { + const { p: p } = super( dict, dataview ); + const n = tables.maxp.numGlyphs + 1; + if ( tables.head.indexToLocFormat === 0 ) { + this.x2 = true; + lazy$1( this, `offsets`, () => + [ ...new Array( n ) ].map( ( _ ) => p.Offset16 ) + ); + } else { + lazy$1( this, `offsets`, () => + [ ...new Array( n ) ].map( ( _ ) => p.Offset32 ) + ); + } + } + getGlyphDataOffsetAndLength( glyphID ) { + let offset = this.offsets[ glyphID ] * this.x2 ? 2 : 1; + let nextOffset = this.offsets[ glyphID + 1 ] * this.x2 ? 2 : 1; + return { offset: offset, length: nextOffset - offset }; + } +} +var loca$1 = Object.freeze( { __proto__: null, loca: loca } ); +class prep extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + lazy$1( this, `instructions`, () => + [ ...new Array( dict.length ) ].map( ( _ ) => p.uint8 ) + ); + } +} +var prep$1 = Object.freeze( { __proto__: null, prep: prep } ); +class CFF extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + lazy$1( this, `data`, () => p.readBytes() ); + } +} +var CFF$1 = Object.freeze( { __proto__: null, CFF: CFF } ); +class CFF2 extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + lazy$1( this, `data`, () => p.readBytes() ); + } +} +var CFF2$1 = Object.freeze( { __proto__: null, CFF2: CFF2 } ); +class VORG extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.majorVersion = p.uint16; + this.minorVersion = p.uint16; + this.defaultVertOriginY = p.int16; + this.numVertOriginYMetrics = p.uint16; + lazy$1( this, `vertORiginYMetrics`, () => + [ ...new Array( this.numVertOriginYMetrics ) ].map( + ( _ ) => new VertOriginYMetric( p ) + ) + ); + } +} +class VertOriginYMetric { + constructor( p ) { + this.glyphIndex = p.uint16; + this.vertOriginY = p.int16; + } +} +var VORG$1 = Object.freeze( { __proto__: null, VORG: VORG } ); +class BitmapSize { + constructor( p ) { + this.indexSubTableArrayOffset = p.Offset32; + this.indexTablesSize = p.uint32; + this.numberofIndexSubTables = p.uint32; + this.colorRef = p.uint32; + this.hori = new SbitLineMetrics( p ); + this.vert = new SbitLineMetrics( p ); + this.startGlyphIndex = p.uint16; + this.endGlyphIndex = p.uint16; + this.ppemX = p.uint8; + this.ppemY = p.uint8; + this.bitDepth = p.uint8; + this.flags = p.int8; + } +} +class BitmapScale { + constructor( p ) { + this.hori = new SbitLineMetrics( p ); + this.vert = new SbitLineMetrics( p ); + this.ppemX = p.uint8; + this.ppemY = p.uint8; + this.substitutePpemX = p.uint8; + this.substitutePpemY = p.uint8; + } +} +class SbitLineMetrics { + constructor( p ) { + this.ascender = p.int8; + this.descender = p.int8; + this.widthMax = p.uint8; + this.caretSlopeNumerator = p.int8; + this.caretSlopeDenominator = p.int8; + this.caretOffset = p.int8; + this.minOriginSB = p.int8; + this.minAdvanceSB = p.int8; + this.maxBeforeBL = p.int8; + this.minAfterBL = p.int8; + this.pad1 = p.int8; + this.pad2 = p.int8; + } +} +class EBLC extends SimpleTable { + constructor( dict, dataview, name ) { + const { p: p } = super( dict, dataview, name ); + this.majorVersion = p.uint16; + this.minorVersion = p.uint16; + this.numSizes = p.uint32; + lazy$1( this, `bitMapSizes`, () => + [ ...new Array( this.numSizes ) ].map( + ( _ ) => new BitmapSize( p ) + ) + ); + } +} +var EBLC$1 = Object.freeze( { __proto__: null, EBLC: EBLC } ); +class EBDT extends SimpleTable { + constructor( dict, dataview, name ) { + const { p: p } = super( dict, dataview, name ); + this.majorVersion = p.uint16; + this.minorVersion = p.uint16; + } +} +var EBDT$1 = Object.freeze( { __proto__: null, EBDT: EBDT } ); +class EBSC extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.majorVersion = p.uint16; + this.minorVersion = p.uint16; + this.numSizes = p.uint32; + lazy$1( this, `bitmapScales`, () => + [ ...new Array( this.numSizes ) ].map( + ( _ ) => new BitmapScale( p ) + ) + ); + } +} +var EBSC$1 = Object.freeze( { __proto__: null, EBSC: EBSC } ); +class CBLC extends EBLC { + constructor( dict, dataview ) { + super( dict, dataview, `CBLC` ); + } +} +var CBLC$1 = Object.freeze( { __proto__: null, CBLC: CBLC } ); +class CBDT extends EBDT { + constructor( dict, dataview ) { + super( dict, dataview, `CBDT` ); + } +} +var CBDT$1 = Object.freeze( { __proto__: null, CBDT: CBDT } ); +class sbix extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.uint16; + this.flags = p.flags( 16 ); + this.numStrikes = p.uint32; + lazy$1( this, `strikeOffsets`, () => + [ ...new Array( this.numStrikes ) ].map( ( _ ) => p.Offset32 ) + ); + } +} +var sbix$1 = Object.freeze( { __proto__: null, sbix: sbix } ); +class COLR extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.uint16; + this.numBaseGlyphRecords = p.uint16; + this.baseGlyphRecordsOffset = p.Offset32; + this.layerRecordsOffset = p.Offset32; + this.numLayerRecords = p.uint16; + } + getBaseGlyphRecord( glyphID ) { + let start = this.tableStart + this.baseGlyphRecordsOffset; + this.parser.currentPosition = start; + let first = new BaseGlyphRecord( this.parser ); + let firstID = first.gID; + let end = this.tableStart + this.layerRecordsOffset - 6; + this.parser.currentPosition = end; + let last = new BaseGlyphRecord( this.parser ); + let lastID = last.gID; + if ( firstID === glyphID ) return first; + if ( lastID === glyphID ) return last; + while ( true ) { + if ( start === end ) break; + let mid = start + ( end - start ) / 12; + this.parser.currentPosition = mid; + let middle = new BaseGlyphRecord( this.parser ); + let midID = middle.gID; + if ( midID === glyphID ) return middle; + else if ( midID > glyphID ) { + end = mid; + } else if ( midID < glyphID ) { + start = mid; + } + } + return false; + } + getLayers( glyphID ) { + let record = this.getBaseGlyphRecord( glyphID ); + this.parser.currentPosition = + this.tableStart + + this.layerRecordsOffset + + 4 * record.firstLayerIndex; + return [ ...new Array( record.numLayers ) ].map( + ( _ ) => new LayerRecord( p ) + ); + } +} +class BaseGlyphRecord { + constructor( p ) { + this.gID = p.uint16; + this.firstLayerIndex = p.uint16; + this.numLayers = p.uint16; + } +} +class LayerRecord { + constructor( p ) { + this.gID = p.uint16; + this.paletteIndex = p.uint16; + } +} +var COLR$1 = Object.freeze( { __proto__: null, COLR: COLR } ); +class CPAL extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.uint16; + this.numPaletteEntries = p.uint16; + const numPalettes = ( this.numPalettes = p.uint16 ); + this.numColorRecords = p.uint16; + this.offsetFirstColorRecord = p.Offset32; + this.colorRecordIndices = [ ...new Array( this.numPalettes ) ].map( + ( _ ) => p.uint16 + ); + lazy$1( this, `colorRecords`, () => { + p.currentPosition = this.tableStart + this.offsetFirstColorRecord; + return [ ...new Array( this.numColorRecords ) ].map( + ( _ ) => new ColorRecord( p ) + ); + } ); + if ( this.version === 1 ) { + this.offsetPaletteTypeArray = p.Offset32; + this.offsetPaletteLabelArray = p.Offset32; + this.offsetPaletteEntryLabelArray = p.Offset32; + lazy$1( this, `paletteTypeArray`, () => { + p.currentPosition = + this.tableStart + this.offsetPaletteTypeArray; + return new PaletteTypeArray( p, numPalettes ); + } ); + lazy$1( this, `paletteLabelArray`, () => { + p.currentPosition = + this.tableStart + this.offsetPaletteLabelArray; + return new PaletteLabelsArray( p, numPalettes ); + } ); + lazy$1( this, `paletteEntryLabelArray`, () => { + p.currentPosition = + this.tableStart + this.offsetPaletteEntryLabelArray; + return new PaletteEntryLabelArray( p, numPalettes ); + } ); + } + } +} +class ColorRecord { + constructor( p ) { + this.blue = p.uint8; + this.green = p.uint8; + this.red = p.uint8; + this.alpha = p.uint8; + } +} +class PaletteTypeArray { + constructor( p, numPalettes ) { + this.paletteTypes = [ ...new Array( numPalettes ) ].map( + ( _ ) => p.uint32 + ); + } +} +class PaletteLabelsArray { + constructor( p, numPalettes ) { + this.paletteLabels = [ ...new Array( numPalettes ) ].map( + ( _ ) => p.uint16 + ); + } +} +class PaletteEntryLabelArray { + constructor( p, numPalettes ) { + this.paletteEntryLabels = [ ...new Array( numPalettes ) ].map( + ( _ ) => p.uint16 + ); + } +} +var CPAL$1 = Object.freeze( { __proto__: null, CPAL: CPAL } ); +class DSIG extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.uint32; + this.numSignatures = p.uint16; + this.flags = p.uint16; + this.signatureRecords = [ ...new Array( this.numSignatures ) ].map( + ( _ ) => new SignatureRecord( p ) + ); + } + getData( signatureID ) { + const record = this.signatureRecords[ signatureID ]; + this.parser.currentPosition = this.tableStart + record.offset; + return new SignatureBlockFormat1( this.parser ); + } +} +class SignatureRecord { + constructor( p ) { + this.format = p.uint32; + this.length = p.uint32; + this.offset = p.Offset32; + } +} +class SignatureBlockFormat1 { + constructor( p ) { + p.uint16; + p.uint16; + this.signatureLength = p.uint32; + this.signature = p.readBytes( this.signatureLength ); + } +} +var DSIG$1 = Object.freeze( { __proto__: null, DSIG: DSIG } ); +class hdmx extends SimpleTable { + constructor( dict, dataview, tables ) { + const { p: p } = super( dict, dataview ); + const numGlyphs = tables.hmtx.numGlyphs; + this.version = p.uint16; + this.numRecords = p.int16; + this.sizeDeviceRecord = p.int32; + this.records = [ ...new Array( numRecords ) ].map( + ( _ ) => new DeviceRecord( p, numGlyphs ) + ); + } +} +class DeviceRecord { + constructor( p, numGlyphs ) { + this.pixelSize = p.uint8; + this.maxWidth = p.uint8; + this.widths = p.readBytes( numGlyphs ); + } +} +var hdmx$1 = Object.freeze( { __proto__: null, hdmx: hdmx } ); +class kern extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.uint16; + this.nTables = p.uint16; + lazy$1( this, `tables`, () => { + let offset = this.tableStart + 4; + const tables = []; + for ( let i = 0; i < this.nTables; i++ ) { + p.currentPosition = offset; + let subtable = new KernSubTable( p ); + tables.push( subtable ); + offset += subtable; + } + return tables; + } ); + } +} +class KernSubTable { + constructor( p ) { + this.version = p.uint16; + this.length = p.uint16; + this.coverage = p.flags( 8 ); + this.format = p.uint8; + if ( this.format === 0 ) { + this.nPairs = p.uint16; + this.searchRange = p.uint16; + this.entrySelector = p.uint16; + this.rangeShift = p.uint16; + lazy$1( this, `pairs`, () => + [ ...new Array( this.nPairs ) ].map( ( _ ) => new Pair( p ) ) + ); + } + if ( this.format === 2 ) { + console.warn( + `Kern subtable format 2 is not supported: this parser currently only parses universal table data.` + ); + } + } + get horizontal() { + return this.coverage[ 0 ]; + } + get minimum() { + return this.coverage[ 1 ]; + } + get crossstream() { + return this.coverage[ 2 ]; + } + get override() { + return this.coverage[ 3 ]; + } +} +class Pair { + constructor( p ) { + this.left = p.uint16; + this.right = p.uint16; + this.value = p.fword; + } +} +var kern$1 = Object.freeze( { __proto__: null, kern: kern } ); +class LTSH extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.uint16; + this.numGlyphs = p.uint16; + this.yPels = p.readBytes( this.numGlyphs ); + } +} +var LTSH$1 = Object.freeze( { __proto__: null, LTSH: LTSH } ); +class MERG extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.uint16; + this.mergeClassCount = p.uint16; + this.mergeDataOffset = p.Offset16; + this.classDefCount = p.uint16; + this.offsetToClassDefOffsets = p.Offset16; + lazy$1( this, `mergeEntryMatrix`, () => + [ ...new Array( this.mergeClassCount ) ].map( ( _ ) => + p.readBytes( this.mergeClassCount ) + ) + ); + console.warn( `Full MERG parsing is currently not supported.` ); + console.warn( + `If you need this table parsed, please file an issue, or better yet, a PR.` + ); + } +} +var MERG$1 = Object.freeze( { __proto__: null, MERG: MERG } ); +class meta extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.uint32; + this.flags = p.uint32; + p.uint32; + this.dataMapsCount = p.uint32; + this.dataMaps = [ ...new Array( this.dataMapsCount ) ].map( + ( _ ) => new DataMap( this.tableStart, p ) + ); + } +} +class DataMap { + constructor( tableStart, p ) { + this.tableStart = tableStart; + this.parser = p; + this.tag = p.tag; + this.dataOffset = p.Offset32; + this.dataLength = p.uint32; + } + getData() { + this.parser.currentField = this.tableStart + this.dataOffset; + return this.parser.readBytes( this.dataLength ); + } +} +var meta$1 = Object.freeze( { __proto__: null, meta: meta } ); +class PCLT extends SimpleTable { + constructor( dict, dataview ) { + super( dict, dataview ); + console.warn( + `This font uses a PCLT table, which is currently not supported by this parser.` + ); + console.warn( + `If you need this table parsed, please file an issue, or better yet, a PR.` + ); + } +} +var PCLT$1 = Object.freeze( { __proto__: null, PCLT: PCLT } ); +class VDMX extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.uint16; + this.numRecs = p.uint16; + this.numRatios = p.uint16; + this.ratRanges = [ ...new Array( this.numRatios ) ].map( + ( _ ) => new RatioRange( p ) + ); + this.offsets = [ ...new Array( this.numRatios ) ].map( + ( _ ) => p.Offset16 + ); + this.VDMXGroups = [ ...new Array( this.numRecs ) ].map( + ( _ ) => new VDMXGroup( p ) + ); + } +} +class RatioRange { + constructor( p ) { + this.bCharSet = p.uint8; + this.xRatio = p.uint8; + this.yStartRatio = p.uint8; + this.yEndRatio = p.uint8; + } +} +class VDMXGroup { + constructor( p ) { + this.recs = p.uint16; + this.startsz = p.uint8; + this.endsz = p.uint8; + this.records = [ ...new Array( this.recs ) ].map( + ( _ ) => new vTable( p ) + ); + } +} +class vTable { + constructor( p ) { + this.yPelHeight = p.uint16; + this.yMax = p.int16; + this.yMin = p.int16; + } +} +var VDMX$1 = Object.freeze( { __proto__: null, VDMX: VDMX } ); +class vhea extends SimpleTable { + constructor( dict, dataview ) { + const { p: p } = super( dict, dataview ); + this.version = p.fixed; + this.ascent = this.vertTypoAscender = p.int16; + this.descent = this.vertTypoDescender = p.int16; + this.lineGap = this.vertTypoLineGap = p.int16; + this.advanceHeightMax = p.int16; + this.minTopSideBearing = p.int16; + this.minBottomSideBearing = p.int16; + this.yMaxExtent = p.int16; + this.caretSlopeRise = p.int16; + this.caretSlopeRun = p.int16; + this.caretOffset = p.int16; + this.reserved = p.int16; + this.reserved = p.int16; + this.reserved = p.int16; + this.reserved = p.int16; + this.metricDataFormat = p.int16; + this.numOfLongVerMetrics = p.uint16; + p.verifyLength(); + } +} +var vhea$1 = Object.freeze( { __proto__: null, vhea: vhea } ); +class vmtx extends SimpleTable { + constructor( dict, dataview, tables ) { + super( dict, dataview ); + const numOfLongVerMetrics = tables.vhea.numOfLongVerMetrics; + const numGlyphs = tables.maxp.numGlyphs; + const metricsStart = p.currentPosition; + lazy( this, `vMetrics`, () => { + p.currentPosition = metricsStart; + return [ ...new Array( numOfLongVerMetrics ) ].map( + ( _ ) => new LongVertMetric( p.uint16, p.int16 ) + ); + } ); + if ( numOfLongVerMetrics < numGlyphs ) { + const tsbStart = metricsStart + numOfLongVerMetrics * 4; + lazy( this, `topSideBearings`, () => { + p.currentPosition = tsbStart; + return [ ...new Array( numGlyphs - numOfLongVerMetrics ) ].map( + ( _ ) => p.int16 + ); + } ); + } + } +} +class LongVertMetric { + constructor( h, b ) { + this.advanceHeight = h; + this.topSideBearing = b; + } +} +var vmtx$1 = Object.freeze( { __proto__: null, vmtx: vmtx } ); +export { Font }; diff --git a/packages/edit-site/lib/unbrotli.js b/packages/edit-site/lib/unbrotli.js new file mode 100644 index 0000000000000..fd5775db2e48e --- /dev/null +++ b/packages/edit-site/lib/unbrotli.js @@ -0,0 +1,2006 @@ +(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.unbrotli = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i 0; +}; + +/* Fills up the input ringbuffer by calling the input callback. + + Does nothing if there are at least 32 bytes present after current position. + + Returns 0 if either: + - the input callback returned an error, or + - there is no more input and the position is past the end of the stream. + + After encountering the end of the input stream, 32 additional zero bytes are + copied to the ringbuffer, therefore it is safe to call this function after + every 32 bytes of input is read. +*/ +BrotliBitReader.prototype.readMoreInput = function() { + if (this.bit_end_pos_ > 256) { + return; + } else if (this.eos_) { + if (this.bit_pos_ > this.bit_end_pos_) + throw new Error('Unexpected end of input ' + this.bit_pos_ + ' ' + this.bit_end_pos_); + } else { + var dst = this.buf_ptr_; + var bytes_read = this.input_.read(this.buf_, dst, BROTLI_READ_SIZE); + if (bytes_read < 0) { + throw new Error('Unexpected end of input'); + } + + if (bytes_read < BROTLI_READ_SIZE) { + this.eos_ = 1; + /* Store 32 bytes of zero after the stream end. */ + for (var p = 0; p < 32; p++) + this.buf_[dst + bytes_read + p] = 0; + } + + if (dst === 0) { + /* Copy the head of the ringbuffer to the slack region. */ + for (var p = 0; p < 32; p++) + this.buf_[(BROTLI_READ_SIZE << 1) + p] = this.buf_[p]; + + this.buf_ptr_ = BROTLI_READ_SIZE; + } else { + this.buf_ptr_ = 0; + } + + this.bit_end_pos_ += bytes_read << 3; + } +}; + +/* Guarantees that there are at least 24 bits in the buffer. */ +BrotliBitReader.prototype.fillBitWindow = function() { + while (this.bit_pos_ >= 8) { + this.val_ >>>= 8; + this.val_ |= this.buf_[this.pos_ & BROTLI_IBUF_MASK] << 24; + ++this.pos_; + this.bit_pos_ = this.bit_pos_ - 8 >>> 0; + this.bit_end_pos_ = this.bit_end_pos_ - 8 >>> 0; + } +}; + +/* Reads the specified number of bits from Read Buffer. */ +BrotliBitReader.prototype.readBits = function(n_bits) { + if (32 - this.bit_pos_ < n_bits) { + this.fillBitWindow(); + } + + var val = ((this.val_ >>> this.bit_pos_) & kBitMask[n_bits]); + this.bit_pos_ += n_bits; + return val; +}; + +module.exports = BrotliBitReader; + +},{}],2:[function(require,module,exports){ +/* Copyright 2013 Google Inc. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Lookup table to map the previous two bytes to a context id. + + There are four different context modeling modes defined here: + CONTEXT_LSB6: context id is the least significant 6 bits of the last byte, + CONTEXT_MSB6: context id is the most significant 6 bits of the last byte, + CONTEXT_UTF8: second-order context model tuned for UTF8-encoded text, + CONTEXT_SIGNED: second-order context model tuned for signed integers. + + The context id for the UTF8 context model is calculated as follows. If p1 + and p2 are the previous two bytes, we calcualte the context as + + context = kContextLookup[p1] | kContextLookup[p2 + 256]. + + If the previous two bytes are ASCII characters (i.e. < 128), this will be + equivalent to + + context = 4 * context1(p1) + context2(p2), + + where context1 is based on the previous byte in the following way: + + 0 : non-ASCII control + 1 : \t, \n, \r + 2 : space + 3 : other punctuation + 4 : " ' + 5 : % + 6 : ( < [ { + 7 : ) > ] } + 8 : , ; : + 9 : . + 10 : = + 11 : number + 12 : upper-case vowel + 13 : upper-case consonant + 14 : lower-case vowel + 15 : lower-case consonant + + and context2 is based on the second last byte: + + 0 : control, space + 1 : punctuation + 2 : upper-case letter, number + 3 : lower-case letter + + If the last byte is ASCII, and the second last byte is not (in a valid UTF8 + stream it will be a continuation byte, value between 128 and 191), the + context is the same as if the second last byte was an ASCII control or space. + + If the last byte is a UTF8 lead byte (value >= 192), then the next byte will + be a continuation byte and the context id is 2 or 3 depending on the LSB of + the last byte and to a lesser extent on the second last byte if it is ASCII. + + If the last byte is a UTF8 continuation byte, the second last byte can be: + - continuation byte: the next byte is probably ASCII or lead byte (assuming + 4-byte UTF8 characters are rare) and the context id is 0 or 1. + - lead byte (192 - 207): next byte is ASCII or lead byte, context is 0 or 1 + - lead byte (208 - 255): next byte is continuation byte, context is 2 or 3 + + The possible value combinations of the previous two bytes, the range of + context ids and the type of the next byte is summarized in the table below: + + |--------\-----------------------------------------------------------------| + | \ Last byte | + | Second \---------------------------------------------------------------| + | last byte \ ASCII | cont. byte | lead byte | + | \ (0-127) | (128-191) | (192-) | + |=============|===================|=====================|==================| + | ASCII | next: ASCII/lead | not valid | next: cont. | + | (0-127) | context: 4 - 63 | | context: 2 - 3 | + |-------------|-------------------|---------------------|------------------| + | cont. byte | next: ASCII/lead | next: ASCII/lead | next: cont. | + | (128-191) | context: 4 - 63 | context: 0 - 1 | context: 2 - 3 | + |-------------|-------------------|---------------------|------------------| + | lead byte | not valid | next: ASCII/lead | not valid | + | (192-207) | | context: 0 - 1 | | + |-------------|-------------------|---------------------|------------------| + | lead byte | not valid | next: cont. | not valid | + | (208-) | | context: 2 - 3 | | + |-------------|-------------------|---------------------|------------------| + + The context id for the signed context mode is calculated as: + + context = (kContextLookup[512 + p1] << 3) | kContextLookup[512 + p2]. + + For any context modeling modes, the context ids can be calculated by |-ing + together two lookups from one table using context model dependent offsets: + + context = kContextLookup[offset1 + p1] | kContextLookup[offset2 + p2]. + + where offset1 and offset2 are dependent on the context mode. +*/ + +var CONTEXT_LSB6 = 0; +var CONTEXT_MSB6 = 1; +var CONTEXT_UTF8 = 2; +var CONTEXT_SIGNED = 3; + +/* Common context lookup table for all context modes. */ +exports.lookup = new Uint8Array([ + /* CONTEXT_UTF8, last byte. */ + /* ASCII range. */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 8, 12, 16, 12, 12, 20, 12, 16, 24, 28, 12, 12, 32, 12, 36, 12, + 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 32, 32, 24, 40, 28, 12, + 12, 48, 52, 52, 52, 48, 52, 52, 52, 48, 52, 52, 52, 52, 52, 48, + 52, 52, 52, 52, 52, 48, 52, 52, 52, 52, 52, 24, 12, 28, 12, 12, + 12, 56, 60, 60, 60, 56, 60, 60, 60, 56, 60, 60, 60, 60, 60, 56, + 60, 60, 60, 60, 60, 56, 60, 60, 60, 60, 60, 24, 12, 28, 12, 0, + /* UTF8 continuation byte range. */ + 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, + 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, + 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, + 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, + /* UTF8 lead byte range. */ + 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, + 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, + 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, + 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, + /* CONTEXT_UTF8 second last byte. */ + /* ASCII range. */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, + 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, + 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 0, + /* UTF8 continuation byte range. */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + /* UTF8 lead byte range. */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + /* CONTEXT_SIGNED, second last byte. */ + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, + /* CONTEXT_SIGNED, last byte, same as the above values shifted by 3 bits. */ + 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, + 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, + 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, + 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, + 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, + 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, + 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, + 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, + 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, + 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, + 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, + 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, + 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, + 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, + 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, + 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 56, + /* CONTEXT_LSB6, last byte. */ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + /* CONTEXT_MSB6, last byte. */ + 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, + 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, + 8, 8, 8, 8, 9, 9, 9, 9, 10, 10, 10, 10, 11, 11, 11, 11, + 12, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 14, 15, 15, 15, 15, + 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18, 19, 19, 19, 19, + 20, 20, 20, 20, 21, 21, 21, 21, 22, 22, 22, 22, 23, 23, 23, 23, + 24, 24, 24, 24, 25, 25, 25, 25, 26, 26, 26, 26, 27, 27, 27, 27, + 28, 28, 28, 28, 29, 29, 29, 29, 30, 30, 30, 30, 31, 31, 31, 31, + 32, 32, 32, 32, 33, 33, 33, 33, 34, 34, 34, 34, 35, 35, 35, 35, + 36, 36, 36, 36, 37, 37, 37, 37, 38, 38, 38, 38, 39, 39, 39, 39, + 40, 40, 40, 40, 41, 41, 41, 41, 42, 42, 42, 42, 43, 43, 43, 43, + 44, 44, 44, 44, 45, 45, 45, 45, 46, 46, 46, 46, 47, 47, 47, 47, + 48, 48, 48, 48, 49, 49, 49, 49, 50, 50, 50, 50, 51, 51, 51, 51, + 52, 52, 52, 52, 53, 53, 53, 53, 54, 54, 54, 54, 55, 55, 55, 55, + 56, 56, 56, 56, 57, 57, 57, 57, 58, 58, 58, 58, 59, 59, 59, 59, + 60, 60, 60, 60, 61, 61, 61, 61, 62, 62, 62, 62, 63, 63, 63, 63, + /* CONTEXT_{M,L}SB6, second last byte, */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +]); + +exports.lookupOffsets = new Uint16Array([ + /* CONTEXT_LSB6 */ + 1024, 1536, + /* CONTEXT_MSB6 */ + 1280, 1536, + /* CONTEXT_UTF8 */ + 0, 256, + /* CONTEXT_SIGNED */ + 768, 512, +]); + +},{}],3:[function(require,module,exports){ +/* Copyright 2013 Google Inc. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + +var BrotliInput = require('./streams').BrotliInput; +var BrotliOutput = require('./streams').BrotliOutput; +var BrotliBitReader = require('./bit_reader'); +var BrotliDictionary = require('./dictionary'); +var HuffmanCode = require('./huffman').HuffmanCode; +var BrotliBuildHuffmanTable = require('./huffman').BrotliBuildHuffmanTable; +var Context = require('./context'); +var Prefix = require('./prefix'); +var Transform = require('./transform'); + +var kDefaultCodeLength = 8; +var kCodeLengthRepeatCode = 16; +var kNumLiteralCodes = 256; +var kNumInsertAndCopyCodes = 704; +var kNumBlockLengthCodes = 26; +var kLiteralContextBits = 6; +var kDistanceContextBits = 2; + +var HUFFMAN_TABLE_BITS = 8; +var HUFFMAN_TABLE_MASK = 0xff; +/* Maximum possible Huffman table size for an alphabet size of 704, max code + * length 15 and root table bits 8. */ +var HUFFMAN_MAX_TABLE_SIZE = 1080; + +var CODE_LENGTH_CODES = 18; +var kCodeLengthCodeOrder = new Uint8Array([ + 1, 2, 3, 4, 0, 5, 17, 6, 16, 7, 8, 9, 10, 11, 12, 13, 14, 15, +]); + +var NUM_DISTANCE_SHORT_CODES = 16; +var kDistanceShortCodeIndexOffset = new Uint8Array([ + 3, 2, 1, 0, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2 +]); + +var kDistanceShortCodeValueOffset = new Int8Array([ + 0, 0, 0, 0, -1, 1, -2, 2, -3, 3, -1, 1, -2, 2, -3, 3 +]); + +var kMaxHuffmanTableSize = new Uint16Array([ + 256, 402, 436, 468, 500, 534, 566, 598, 630, 662, 694, 726, 758, 790, 822, + 854, 886, 920, 952, 984, 1016, 1048, 1080 +]); + +function DecodeWindowBits(br) { + var n; + if (br.readBits(1) === 0) { + return 16; + } + + n = br.readBits(3); + if (n > 0) { + return 17 + n; + } + + n = br.readBits(3); + if (n > 0) { + return 8 + n; + } + + return 17; +} + +/* Decodes a number in the range [0..255], by reading 1 - 11 bits. */ +function DecodeVarLenUint8(br) { + if (br.readBits(1)) { + var nbits = br.readBits(3); + if (nbits === 0) { + return 1; + } else { + return br.readBits(nbits) + (1 << nbits); + } + } + return 0; +} + +function MetaBlockLength() { + this.meta_block_length = 0; + this.input_end = 0; + this.is_uncompressed = 0; + this.is_metadata = false; +} + +function DecodeMetaBlockLength(br) { + var out = new MetaBlockLength; + var size_nibbles; + var size_bytes; + var i; + + out.input_end = br.readBits(1); + if (out.input_end && br.readBits(1)) { + return out; + } + + size_nibbles = br.readBits(2) + 4; + if (size_nibbles === 7) { + out.is_metadata = true; + + if (br.readBits(1) !== 0) + throw new Error('Invalid reserved bit'); + + size_bytes = br.readBits(2); + if (size_bytes === 0) + return out; + + for (i = 0; i < size_bytes; i++) { + var next_byte = br.readBits(8); + if (i + 1 === size_bytes && size_bytes > 1 && next_byte === 0) + throw new Error('Invalid size byte'); + + out.meta_block_length |= next_byte << (i * 8); + } + } else { + for (i = 0; i < size_nibbles; ++i) { + var next_nibble = br.readBits(4); + if (i + 1 === size_nibbles && size_nibbles > 4 && next_nibble === 0) + throw new Error('Invalid size nibble'); + + out.meta_block_length |= next_nibble << (i * 4); + } + } + + ++out.meta_block_length; + + if (!out.input_end && !out.is_metadata) { + out.is_uncompressed = br.readBits(1); + } + + return out; +} + +/* Decodes the next Huffman code from bit-stream. */ +function ReadSymbol(table, index, br) { + var start_index = index; + + var nbits; + br.fillBitWindow(); + index += (br.val_ >>> br.bit_pos_) & HUFFMAN_TABLE_MASK; + nbits = table[index].bits - HUFFMAN_TABLE_BITS; + if (nbits > 0) { + br.bit_pos_ += HUFFMAN_TABLE_BITS; + index += table[index].value; + index += (br.val_ >>> br.bit_pos_) & ((1 << nbits) - 1); + } + br.bit_pos_ += table[index].bits; + return table[index].value; +} + +function ReadHuffmanCodeLengths(code_length_code_lengths, num_symbols, code_lengths, br) { + var symbol = 0; + var prev_code_len = kDefaultCodeLength; + var repeat = 0; + var repeat_code_len = 0; + var space = 32768; + + var table = []; + for (var i = 0; i < 32; i++) + table.push(new HuffmanCode(0, 0)); + + BrotliBuildHuffmanTable(table, 0, 5, code_length_code_lengths, CODE_LENGTH_CODES); + + while (symbol < num_symbols && space > 0) { + var p = 0; + var code_len; + + br.readMoreInput(); + br.fillBitWindow(); + p += (br.val_ >>> br.bit_pos_) & 31; + br.bit_pos_ += table[p].bits; + code_len = table[p].value & 0xff; + if (code_len < kCodeLengthRepeatCode) { + repeat = 0; + code_lengths[symbol++] = code_len; + if (code_len !== 0) { + prev_code_len = code_len; + space -= 32768 >> code_len; + } + } else { + var extra_bits = code_len - 14; + var old_repeat; + var repeat_delta; + var new_len = 0; + if (code_len === kCodeLengthRepeatCode) { + new_len = prev_code_len; + } + if (repeat_code_len !== new_len) { + repeat = 0; + repeat_code_len = new_len; + } + old_repeat = repeat; + if (repeat > 0) { + repeat -= 2; + repeat <<= extra_bits; + } + repeat += br.readBits(extra_bits) + 3; + repeat_delta = repeat - old_repeat; + if (symbol + repeat_delta > num_symbols) { + throw new Error('[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols'); + } + + for (var x = 0; x < repeat_delta; x++) + code_lengths[symbol + x] = repeat_code_len; + + symbol += repeat_delta; + + if (repeat_code_len !== 0) { + space -= repeat_delta << (15 - repeat_code_len); + } + } + } + if (space !== 0) { + throw new Error("[ReadHuffmanCodeLengths] space = " + space); + } + + for (; symbol < num_symbols; symbol++) + code_lengths[symbol] = 0; +} + +function ReadHuffmanCode(alphabet_size, tables, table, br) { + var table_size = 0; + var simple_code_or_skip; + var code_lengths = new Uint8Array(alphabet_size); + + br.readMoreInput(); + + /* simple_code_or_skip is used as follows: + 1 for simple code; + 0 for no skipping, 2 skips 2 code lengths, 3 skips 3 code lengths */ + simple_code_or_skip = br.readBits(2); + if (simple_code_or_skip === 1) { + /* Read symbols, codes & code lengths directly. */ + var i; + var max_bits_counter = alphabet_size - 1; + var max_bits = 0; + var symbols = new Int32Array(4); + var num_symbols = br.readBits(2) + 1; + while (max_bits_counter) { + max_bits_counter >>= 1; + ++max_bits; + } + + for (i = 0; i < num_symbols; ++i) { + symbols[i] = br.readBits(max_bits) % alphabet_size; + code_lengths[symbols[i]] = 2; + } + code_lengths[symbols[0]] = 1; + switch (num_symbols) { + case 1: + break; + case 3: + if ((symbols[0] === symbols[1]) || + (symbols[0] === symbols[2]) || + (symbols[1] === symbols[2])) { + throw new Error('[ReadHuffmanCode] invalid symbols'); + } + break; + case 2: + if (symbols[0] === symbols[1]) { + throw new Error('[ReadHuffmanCode] invalid symbols'); + } + + code_lengths[symbols[1]] = 1; + break; + case 4: + if ((symbols[0] === symbols[1]) || + (symbols[0] === symbols[2]) || + (symbols[0] === symbols[3]) || + (symbols[1] === symbols[2]) || + (symbols[1] === symbols[3]) || + (symbols[2] === symbols[3])) { + throw new Error('[ReadHuffmanCode] invalid symbols'); + } + + if (br.readBits(1)) { + code_lengths[symbols[2]] = 3; + code_lengths[symbols[3]] = 3; + } else { + code_lengths[symbols[0]] = 2; + } + break; + } + } else { /* Decode Huffman-coded code lengths. */ + var i; + var code_length_code_lengths = new Uint8Array(CODE_LENGTH_CODES); + var space = 32; + var num_codes = 0; + /* Static Huffman code for the code length code lengths */ + var huff = [ + new HuffmanCode(2, 0), new HuffmanCode(2, 4), new HuffmanCode(2, 3), new HuffmanCode(3, 2), + new HuffmanCode(2, 0), new HuffmanCode(2, 4), new HuffmanCode(2, 3), new HuffmanCode(4, 1), + new HuffmanCode(2, 0), new HuffmanCode(2, 4), new HuffmanCode(2, 3), new HuffmanCode(3, 2), + new HuffmanCode(2, 0), new HuffmanCode(2, 4), new HuffmanCode(2, 3), new HuffmanCode(4, 5) + ]; + for (i = simple_code_or_skip; i < CODE_LENGTH_CODES && space > 0; ++i) { + var code_len_idx = kCodeLengthCodeOrder[i]; + var p = 0; + var v; + br.fillBitWindow(); + p += (br.val_ >>> br.bit_pos_) & 15; + br.bit_pos_ += huff[p].bits; + v = huff[p].value; + code_length_code_lengths[code_len_idx] = v; + if (v !== 0) { + space -= (32 >> v); + ++num_codes; + } + } + + if (!(num_codes === 1 || space === 0)) + throw new Error('[ReadHuffmanCode] invalid num_codes or space'); + + ReadHuffmanCodeLengths(code_length_code_lengths, alphabet_size, code_lengths, br); + } + + table_size = BrotliBuildHuffmanTable(tables, table, HUFFMAN_TABLE_BITS, code_lengths, alphabet_size); + + if (table_size === 0) { + throw new Error("[ReadHuffmanCode] BuildHuffmanTable failed: "); + } + + return table_size; +} + +function ReadBlockLength(table, index, br) { + var code; + var nbits; + code = ReadSymbol(table, index, br); + nbits = Prefix.kBlockLengthPrefixCode[code].nbits; + return Prefix.kBlockLengthPrefixCode[code].offset + br.readBits(nbits); +} + +function TranslateShortCodes(code, ringbuffer, index) { + var val; + if (code < NUM_DISTANCE_SHORT_CODES) { + index += kDistanceShortCodeIndexOffset[code]; + index &= 3; + val = ringbuffer[index] + kDistanceShortCodeValueOffset[code]; + } else { + val = code - NUM_DISTANCE_SHORT_CODES + 1; + } + return val; +} + +function MoveToFront(v, index) { + var value = v[index]; + var i = index; + for (; i; --i) v[i] = v[i - 1]; + v[0] = value; +} + +function InverseMoveToFrontTransform(v, v_len) { + var mtf = new Uint8Array(256); + var i; + for (i = 0; i < 256; ++i) { + mtf[i] = i; + } + for (i = 0; i < v_len; ++i) { + var index = v[i]; + v[i] = mtf[index]; + if (index) MoveToFront(mtf, index); + } +} + +/* Contains a collection of huffman trees with the same alphabet size. */ +function HuffmanTreeGroup(alphabet_size, num_htrees) { + this.alphabet_size = alphabet_size; + this.num_htrees = num_htrees; + this.codes = new Array(num_htrees + num_htrees * kMaxHuffmanTableSize[(alphabet_size + 31) >>> 5]); + this.htrees = new Uint32Array(num_htrees); +} + +HuffmanTreeGroup.prototype.decode = function(br) { + var i; + var table_size; + var next = 0; + for (i = 0; i < this.num_htrees; ++i) { + this.htrees[i] = next; + table_size = ReadHuffmanCode(this.alphabet_size, this.codes, next, br); + next += table_size; + } +}; + +function DecodeContextMap(context_map_size, br) { + var out = { num_htrees: null, context_map: null }; + var use_rle_for_zeros; + var max_run_length_prefix = 0; + var table; + var i; + + br.readMoreInput(); + var num_htrees = out.num_htrees = DecodeVarLenUint8(br) + 1; + + var context_map = out.context_map = new Uint8Array(context_map_size); + if (num_htrees <= 1) { + return out; + } + + use_rle_for_zeros = br.readBits(1); + if (use_rle_for_zeros) { + max_run_length_prefix = br.readBits(4) + 1; + } + + table = []; + for (i = 0; i < HUFFMAN_MAX_TABLE_SIZE; i++) { + table[i] = new HuffmanCode(0, 0); + } + + ReadHuffmanCode(num_htrees + max_run_length_prefix, table, 0, br); + + for (i = 0; i < context_map_size;) { + var code; + + br.readMoreInput(); + code = ReadSymbol(table, 0, br); + if (code === 0) { + context_map[i] = 0; + ++i; + } else if (code <= max_run_length_prefix) { + var reps = 1 + (1 << code) + br.readBits(code); + while (--reps) { + if (i >= context_map_size) { + throw new Error("[DecodeContextMap] i >= context_map_size"); + } + context_map[i] = 0; + ++i; + } + } else { + context_map[i] = code - max_run_length_prefix; + ++i; + } + } + if (br.readBits(1)) { + InverseMoveToFrontTransform(context_map, context_map_size); + } + + return out; +} + +function DecodeBlockType(max_block_type, trees, tree_type, block_types, ringbuffers, indexes, br) { + var ringbuffer = tree_type * 2; + var index = tree_type; + var type_code = ReadSymbol(trees, tree_type * HUFFMAN_MAX_TABLE_SIZE, br); + var block_type; + if (type_code === 0) { + block_type = ringbuffers[ringbuffer + (indexes[index] & 1)]; + } else if (type_code === 1) { + block_type = ringbuffers[ringbuffer + ((indexes[index] - 1) & 1)] + 1; + } else { + block_type = type_code - 2; + } + if (block_type >= max_block_type) { + block_type -= max_block_type; + } + block_types[tree_type] = block_type; + ringbuffers[ringbuffer + (indexes[index] & 1)] = block_type; + ++indexes[index]; +} + +function CopyUncompressedBlockToOutput(output, len, pos, ringbuffer, ringbuffer_mask, br) { + var rb_size = ringbuffer_mask + 1; + var rb_pos = pos & ringbuffer_mask; + var br_pos = br.pos_ & BrotliBitReader.IBUF_MASK; + var nbytes; + + /* For short lengths copy byte-by-byte */ + if (len < 8 || br.bit_pos_ + (len << 3) < br.bit_end_pos_) { + while (len-- > 0) { + br.readMoreInput(); + ringbuffer[rb_pos++] = br.readBits(8); + if (rb_pos === rb_size) { + output.write(ringbuffer, rb_size); + rb_pos = 0; + } + } + return; + } + + if (br.bit_end_pos_ < 32) { + throw new Error('[CopyUncompressedBlockToOutput] br.bit_end_pos_ < 32'); + } + + /* Copy remaining 0-4 bytes from br.val_ to ringbuffer. */ + while (br.bit_pos_ < 32) { + ringbuffer[rb_pos] = (br.val_ >>> br.bit_pos_); + br.bit_pos_ += 8; + ++rb_pos; + --len; + } + + /* Copy remaining bytes from br.buf_ to ringbuffer. */ + nbytes = (br.bit_end_pos_ - br.bit_pos_) >> 3; + if (br_pos + nbytes > BrotliBitReader.IBUF_MASK) { + var tail = BrotliBitReader.IBUF_MASK + 1 - br_pos; + for (var x = 0; x < tail; x++) + ringbuffer[rb_pos + x] = br.buf_[br_pos + x]; + + nbytes -= tail; + rb_pos += tail; + len -= tail; + br_pos = 0; + } + + for (var x = 0; x < nbytes; x++) + ringbuffer[rb_pos + x] = br.buf_[br_pos + x]; + + rb_pos += nbytes; + len -= nbytes; + + /* If we wrote past the logical end of the ringbuffer, copy the tail of the + ringbuffer to its beginning and flush the ringbuffer to the output. */ + if (rb_pos >= rb_size) { + output.write(ringbuffer, rb_size); + rb_pos -= rb_size; + for (var x = 0; x < rb_pos; x++) + ringbuffer[x] = ringbuffer[rb_size + x]; + } + + /* If we have more to copy than the remaining size of the ringbuffer, then we + first fill the ringbuffer from the input and then flush the ringbuffer to + the output */ + while (rb_pos + len >= rb_size) { + nbytes = rb_size - rb_pos; + if (br.input_.read(ringbuffer, rb_pos, nbytes) < nbytes) { + throw new Error('[CopyUncompressedBlockToOutput] not enough bytes'); + } + output.write(ringbuffer, rb_size); + len -= nbytes; + rb_pos = 0; + } + + /* Copy straight from the input onto the ringbuffer. The ringbuffer will be + flushed to the output at a later time. */ + if (br.input_.read(ringbuffer, rb_pos, len) < len) { + throw new Error('[CopyUncompressedBlockToOutput] not enough bytes'); + } + + /* Restore the state of the bit reader. */ + br.reset(); +} + +/* Advances the bit reader position to the next byte boundary and verifies + that any skipped bits are set to zero. */ +function JumpToByteBoundary(br) { + var new_bit_pos = (br.bit_pos_ + 7) & ~7; + var pad_bits = br.readBits(new_bit_pos - br.bit_pos_); + return pad_bits == 0; +} + +function BrotliDecompressedSize(buffer) { + var input = new BrotliInput(buffer); + var br = new BrotliBitReader(input); + DecodeWindowBits(br); + var out = DecodeMetaBlockLength(br); + return out.meta_block_length; +} + +exports.BrotliDecompressedSize = BrotliDecompressedSize; + +function BrotliDecompressBuffer(buffer, output_size) { + var input = new BrotliInput(buffer); + + if (output_size == null) { + output_size = BrotliDecompressedSize(buffer); + } + + var output_buffer = new Uint8Array(output_size); + var output = new BrotliOutput(output_buffer); + + BrotliDecompress(input, output); + + if (output.pos < output.buffer.length) { + output.buffer = output.buffer.subarray(0, output.pos); + } + + return output.buffer; +} + +exports.BrotliDecompressBuffer = BrotliDecompressBuffer; + +function BrotliDecompress(input, output) { + var i; + var pos = 0; + var input_end = 0; + var window_bits = 0; + var max_backward_distance; + var max_distance = 0; + var ringbuffer_size; + var ringbuffer_mask; + var ringbuffer; + var ringbuffer_end; + /* This ring buffer holds a few past copy distances that will be used by */ + /* some special distance codes. */ + var dist_rb = [ 16, 15, 11, 4 ]; + var dist_rb_idx = 0; + /* The previous 2 bytes used for context. */ + var prev_byte1 = 0; + var prev_byte2 = 0; + var hgroup = [new HuffmanTreeGroup(0, 0), new HuffmanTreeGroup(0, 0), new HuffmanTreeGroup(0, 0)]; + var block_type_trees; + var block_len_trees; + var br; + + /* We need the slack region for the following reasons: + - always doing two 8-byte copies for fast backward copying + - transforms + - flushing the input ringbuffer when decoding uncompressed blocks */ + var kRingBufferWriteAheadSlack = 128 + BrotliBitReader.READ_SIZE; + + br = new BrotliBitReader(input); + + /* Decode window size. */ + window_bits = DecodeWindowBits(br); + max_backward_distance = (1 << window_bits) - 16; + + ringbuffer_size = 1 << window_bits; + ringbuffer_mask = ringbuffer_size - 1; + ringbuffer = new Uint8Array(ringbuffer_size + kRingBufferWriteAheadSlack + BrotliDictionary.maxDictionaryWordLength); + ringbuffer_end = ringbuffer_size; + + block_type_trees = []; + block_len_trees = []; + for (var x = 0; x < 3 * HUFFMAN_MAX_TABLE_SIZE; x++) { + block_type_trees[x] = new HuffmanCode(0, 0); + block_len_trees[x] = new HuffmanCode(0, 0); + } + + while (!input_end) { + var meta_block_remaining_len = 0; + var is_uncompressed; + var block_length = [ 1 << 28, 1 << 28, 1 << 28 ]; + var block_type = [ 0 ]; + var num_block_types = [ 1, 1, 1 ]; + var block_type_rb = [ 0, 1, 0, 1, 0, 1 ]; + var block_type_rb_index = [ 0 ]; + var distance_postfix_bits; + var num_direct_distance_codes; + var distance_postfix_mask; + var num_distance_codes; + var context_map = null; + var context_modes = null; + var num_literal_htrees; + var dist_context_map = null; + var num_dist_htrees; + var context_offset = 0; + var context_map_slice = null; + var literal_htree_index = 0; + var dist_context_offset = 0; + var dist_context_map_slice = null; + var dist_htree_index = 0; + var context_lookup_offset1 = 0; + var context_lookup_offset2 = 0; + var context_mode; + var htree_command; + + for (i = 0; i < 3; ++i) { + hgroup[i].codes = null; + hgroup[i].htrees = null; + } + + br.readMoreInput(); + + var _out = DecodeMetaBlockLength(br); + meta_block_remaining_len = _out.meta_block_length; + if (pos + meta_block_remaining_len > output.buffer.length) { + /* We need to grow the output buffer to fit the additional data. */ + var tmp = new Uint8Array( pos + meta_block_remaining_len ); + tmp.set( output.buffer ); + output.buffer = tmp; + } + input_end = _out.input_end; + is_uncompressed = _out.is_uncompressed; + + if (_out.is_metadata) { + JumpToByteBoundary(br); + + for (; meta_block_remaining_len > 0; --meta_block_remaining_len) { + br.readMoreInput(); + /* Read one byte and ignore it. */ + br.readBits(8); + } + + continue; + } + + if (meta_block_remaining_len === 0) { + continue; + } + + if (is_uncompressed) { + br.bit_pos_ = (br.bit_pos_ + 7) & ~7; + CopyUncompressedBlockToOutput(output, meta_block_remaining_len, pos, + ringbuffer, ringbuffer_mask, br); + pos += meta_block_remaining_len; + continue; + } + + for (i = 0; i < 3; ++i) { + num_block_types[i] = DecodeVarLenUint8(br) + 1; + if (num_block_types[i] >= 2) { + ReadHuffmanCode(num_block_types[i] + 2, block_type_trees, i * HUFFMAN_MAX_TABLE_SIZE, br); + ReadHuffmanCode(kNumBlockLengthCodes, block_len_trees, i * HUFFMAN_MAX_TABLE_SIZE, br); + block_length[i] = ReadBlockLength(block_len_trees, i * HUFFMAN_MAX_TABLE_SIZE, br); + block_type_rb_index[i] = 1; + } + } + + br.readMoreInput(); + + distance_postfix_bits = br.readBits(2); + num_direct_distance_codes = NUM_DISTANCE_SHORT_CODES + (br.readBits(4) << distance_postfix_bits); + distance_postfix_mask = (1 << distance_postfix_bits) - 1; + num_distance_codes = (num_direct_distance_codes + (48 << distance_postfix_bits)); + context_modes = new Uint8Array(num_block_types[0]); + + for (i = 0; i < num_block_types[0]; ++i) { + br.readMoreInput(); + context_modes[i] = (br.readBits(2) << 1); + } + + var _o1 = DecodeContextMap(num_block_types[0] << kLiteralContextBits, br); + num_literal_htrees = _o1.num_htrees; + context_map = _o1.context_map; + + var _o2 = DecodeContextMap(num_block_types[2] << kDistanceContextBits, br); + num_dist_htrees = _o2.num_htrees; + dist_context_map = _o2.context_map; + + hgroup[0] = new HuffmanTreeGroup(kNumLiteralCodes, num_literal_htrees); + hgroup[1] = new HuffmanTreeGroup(kNumInsertAndCopyCodes, num_block_types[1]); + hgroup[2] = new HuffmanTreeGroup(num_distance_codes, num_dist_htrees); + + for (i = 0; i < 3; ++i) { + hgroup[i].decode(br); + } + + context_map_slice = 0; + dist_context_map_slice = 0; + context_mode = context_modes[block_type[0]]; + context_lookup_offset1 = Context.lookupOffsets[context_mode]; + context_lookup_offset2 = Context.lookupOffsets[context_mode + 1]; + htree_command = hgroup[1].htrees[0]; + + while (meta_block_remaining_len > 0) { + var cmd_code; + var range_idx; + var insert_code; + var copy_code; + var insert_length; + var copy_length; + var distance_code; + var distance; + var context; + var j; + var copy_dst; + + br.readMoreInput(); + + if (block_length[1] === 0) { + DecodeBlockType(num_block_types[1], + block_type_trees, 1, block_type, block_type_rb, + block_type_rb_index, br); + block_length[1] = ReadBlockLength(block_len_trees, HUFFMAN_MAX_TABLE_SIZE, br); + htree_command = hgroup[1].htrees[block_type[1]]; + } + --block_length[1]; + cmd_code = ReadSymbol(hgroup[1].codes, htree_command, br); + range_idx = cmd_code >> 6; + if (range_idx >= 2) { + range_idx -= 2; + distance_code = -1; + } else { + distance_code = 0; + } + insert_code = Prefix.kInsertRangeLut[range_idx] + ((cmd_code >> 3) & 7); + copy_code = Prefix.kCopyRangeLut[range_idx] + (cmd_code & 7); + insert_length = Prefix.kInsertLengthPrefixCode[insert_code].offset + + br.readBits(Prefix.kInsertLengthPrefixCode[insert_code].nbits); + copy_length = Prefix.kCopyLengthPrefixCode[copy_code].offset + + br.readBits(Prefix.kCopyLengthPrefixCode[copy_code].nbits); + prev_byte1 = ringbuffer[pos-1 & ringbuffer_mask]; + prev_byte2 = ringbuffer[pos-2 & ringbuffer_mask]; + for (j = 0; j < insert_length; ++j) { + br.readMoreInput(); + + if (block_length[0] === 0) { + DecodeBlockType(num_block_types[0], + block_type_trees, 0, block_type, block_type_rb, + block_type_rb_index, br); + block_length[0] = ReadBlockLength(block_len_trees, 0, br); + context_offset = block_type[0] << kLiteralContextBits; + context_map_slice = context_offset; + context_mode = context_modes[block_type[0]]; + context_lookup_offset1 = Context.lookupOffsets[context_mode]; + context_lookup_offset2 = Context.lookupOffsets[context_mode + 1]; + } + context = (Context.lookup[context_lookup_offset1 + prev_byte1] | + Context.lookup[context_lookup_offset2 + prev_byte2]); + literal_htree_index = context_map[context_map_slice + context]; + --block_length[0]; + prev_byte2 = prev_byte1; + prev_byte1 = ReadSymbol(hgroup[0].codes, hgroup[0].htrees[literal_htree_index], br); + ringbuffer[pos & ringbuffer_mask] = prev_byte1; + if ((pos & ringbuffer_mask) === ringbuffer_mask) { + output.write(ringbuffer, ringbuffer_size); + } + ++pos; + } + meta_block_remaining_len -= insert_length; + if (meta_block_remaining_len <= 0) break; + + if (distance_code < 0) { + var context; + + br.readMoreInput(); + if (block_length[2] === 0) { + DecodeBlockType(num_block_types[2], + block_type_trees, 2, block_type, block_type_rb, + block_type_rb_index, br); + block_length[2] = ReadBlockLength(block_len_trees, 2 * HUFFMAN_MAX_TABLE_SIZE, br); + dist_context_offset = block_type[2] << kDistanceContextBits; + dist_context_map_slice = dist_context_offset; + } + --block_length[2]; + context = (copy_length > 4 ? 3 : copy_length - 2) & 0xff; + dist_htree_index = dist_context_map[dist_context_map_slice + context]; + distance_code = ReadSymbol(hgroup[2].codes, hgroup[2].htrees[dist_htree_index], br); + if (distance_code >= num_direct_distance_codes) { + var nbits; + var postfix; + var offset; + distance_code -= num_direct_distance_codes; + postfix = distance_code & distance_postfix_mask; + distance_code >>= distance_postfix_bits; + nbits = (distance_code >> 1) + 1; + offset = ((2 + (distance_code & 1)) << nbits) - 4; + distance_code = num_direct_distance_codes + + ((offset + br.readBits(nbits)) << + distance_postfix_bits) + postfix; + } + } + + /* Convert the distance code to the actual distance by possibly looking */ + /* up past distnaces from the ringbuffer. */ + distance = TranslateShortCodes(distance_code, dist_rb, dist_rb_idx); + if (distance < 0) { + throw new Error('[BrotliDecompress] invalid distance'); + } + + if (pos < max_backward_distance && + max_distance !== max_backward_distance) { + max_distance = pos; + } else { + max_distance = max_backward_distance; + } + + copy_dst = pos & ringbuffer_mask; + + if (distance > max_distance) { + if (copy_length >= BrotliDictionary.minDictionaryWordLength && + copy_length <= BrotliDictionary.maxDictionaryWordLength) { + var offset = BrotliDictionary.offsetsByLength[copy_length]; + var word_id = distance - max_distance - 1; + var shift = BrotliDictionary.sizeBitsByLength[copy_length]; + var mask = (1 << shift) - 1; + var word_idx = word_id & mask; + var transform_idx = word_id >> shift; + offset += word_idx * copy_length; + if (transform_idx < Transform.kNumTransforms) { + var len = Transform.transformDictionaryWord(ringbuffer, copy_dst, offset, copy_length, transform_idx); + copy_dst += len; + pos += len; + meta_block_remaining_len -= len; + if (copy_dst >= ringbuffer_end) { + output.write(ringbuffer, ringbuffer_size); + + for (var _x = 0; _x < (copy_dst - ringbuffer_end); _x++) + ringbuffer[_x] = ringbuffer[ringbuffer_end + _x]; + } + } else { + throw new Error("Invalid backward reference. pos: " + pos + " distance: " + distance + + " len: " + copy_length + " bytes left: " + meta_block_remaining_len); + } + } else { + throw new Error("Invalid backward reference. pos: " + pos + " distance: " + distance + + " len: " + copy_length + " bytes left: " + meta_block_remaining_len); + } + } else { + if (distance_code > 0) { + dist_rb[dist_rb_idx & 3] = distance; + ++dist_rb_idx; + } + + if (copy_length > meta_block_remaining_len) { + throw new Error("Invalid backward reference. pos: " + pos + " distance: " + distance + + " len: " + copy_length + " bytes left: " + meta_block_remaining_len); + } + + for (j = 0; j < copy_length; ++j) { + ringbuffer[pos & ringbuffer_mask] = ringbuffer[(pos - distance) & ringbuffer_mask]; + if ((pos & ringbuffer_mask) === ringbuffer_mask) { + output.write(ringbuffer, ringbuffer_size); + } + ++pos; + --meta_block_remaining_len; + } + } + + /* When we get here, we must have inserted at least one literal and */ + /* made a copy of at least length two, therefore accessing the last 2 */ + /* bytes is valid. */ + prev_byte1 = ringbuffer[(pos - 1) & ringbuffer_mask]; + prev_byte2 = ringbuffer[(pos - 2) & ringbuffer_mask]; + } + + /* Protect pos from overflow, wrap it around at every GB of input data */ + pos &= 0x3fffffff; + } + + output.write(ringbuffer, pos & ringbuffer_mask); +} + +exports.BrotliDecompress = BrotliDecompress; + +BrotliDictionary.init(); + +},{"./bit_reader":1,"./context":2,"./dictionary":6,"./huffman":7,"./prefix":9,"./streams":10,"./transform":11}],4:[function(require,module,exports){ +var base64 = require('base64-js'); +//var fs = require('fs'); + +/** + * The normal dictionary-data.js is quite large, which makes it + * unsuitable for browser usage. In order to make it smaller, + * we read dictionary.bin, which is a compressed version of + * the dictionary, and on initial load, Brotli decompresses + * it's own dictionary. 😜 + */ +exports.init = function() { + var BrotliDecompressBuffer = require('./decode').BrotliDecompressBuffer; + var compressed = base64.toByteArray(require('./dictionary.bin.js')); + return BrotliDecompressBuffer(compressed); +}; + +},{"./decode":3,"./dictionary.bin.js":5,"base64-js":8}],5:[function(require,module,exports){ +module.exports="W5/fcQLn5gKf2XUbAiQ1XULX+TZz6ADToDsgqk6qVfeC0e4m6OO2wcQ1J76ZBVRV1fRkEsdu//62zQsFEZWSTCnMhcsQKlS2qOhuVYYMGCkV0fXWEoMFbESXrKEZ9wdUEsyw9g4bJlEt1Y6oVMxMRTEVbCIwZzJzboK5j8m4YH02qgXYhv1V+PM435sLVxyHJihaJREEhZGqL03txGFQLm76caGO/ovxKvzCby/3vMTtX/459f0igi7WutnKiMQ6wODSoRh/8Lx1V3Q99MvKtwB6bHdERYRY0hStJoMjNeTsNX7bn+Y7e4EQ3bf8xBc7L0BsyfFPK43dGSXpL6clYC/I328h54/VYrQ5i0648FgbGtl837svJ35L3Mot/+nPlNpWgKx1gGXQYqX6n+bbZ7wuyCHKcUok12Xjqub7NXZGzqBx0SD+uziNf87t7ve42jxSKQoW3nyxVrWIGlFShhCKxjpZZ5MeGna0+lBkk+kaN8F9qFBAFgEogyMBdcX/T1W/WnMOi/7ycWUQloEBKGeC48MkiwqJkJO+12eQiOFHMmck6q/IjWW3RZlany23TBm+cNr/84/oi5GGmGBZWrZ6j+zykVozz5fT/QH/Da6WTbZYYPynVNO7kxzuNN2kxKKWche5WveitPKAecB8YcAHz/+zXLjcLzkdDSktNIDwZE9J9X+tto43oJy65wApM3mDzYtCwX9lM+N5VR3kXYo0Z3t0TtXfgBFg7gU8oN0Dgl7fZlUbhNll+0uuohRVKjrEd8egrSndy5/Tgd2gqjA4CAVuC7ESUmL3DZoGnfhQV8uwnpi8EGvAVVsowNRxPudck7+oqAUDkwZopWqFnW1riss0t1z6iCISVKreYGNvQcXv+1L9+jbP8cd/dPUiqBso2q+7ZyFBvENCkkVr44iyPbtOoOoCecWsiuqMSML5lv+vN5MzUr+Dnh73G7Q1YnRYJVYXHRJaNAOByiaK6CusgFdBPE40r0rvqXV7tksKO2DrHYXBTv8P5ysqxEx8VDXUDDqkPH6NNOV/a2WH8zlkXRELSa8P+heNyJBBP7PgsG1EtWtNef6/i+lcayzQwQCsduidpbKfhWUDgAEmyhGu/zVTacI6RS0zTABrOYueemnVa19u9fT23N/Ta6RvTpof5DWygqreCqrDAgM4LID1+1T/taU6yTFVLqXOv+/MuQOFnaF8vLMKD7tKWDoBdALgxF33zQccCcdHx8fKIVdW69O7qHtXpeGr9jbbpFA+qRMWr5hp0s67FPc7HAiLV0g0/peZlW7hJPYEhZyhpSwahnf93/tZgfqZWXFdmdXBzqxGHLrQKxoAY6fRoBhgCRPmmGueYZ5JexTVDKUIXzkG/fqp/0U3hAgQdJ9zumutK6nqWbaqvm1pgu03IYR+G+8s0jDBBz8cApZFSBeuWasyqo2OMDKAZCozS+GWSvL/HsE9rHxooe17U3s/lTE+VZAk4j3dp6uIGaC0JMiqR5CUsabPyM0dOYDR7Ea7ip4USZlya38YfPtvrX/tBlhHilj55nZ1nfN24AOAi9BVtz/Mbn8AEDJCqJgsVUa6nQnSxv2Fs7l/NlCzpfYEjmPrNyib/+t0ei2eEMjvNhLkHCZlci4WhBe7ePZTmzYqlY9+1pxtS4GB+5lM1BHT9tS270EWUDYFq1I0yY/fNiAk4bk9yBgmef/f2k6AlYQZHsNFnW8wBQxCd68iWv7/35bXfz3JZmfGligWAKRjIs3IpzxQ27vAglHSiOzCYzJ9L9A1CdiyFvyR66ucA4jKifu5ehwER26yV7HjKqn5Mfozo7Coxxt8LWWPT47BeMxX8p0Pjb7hZn+6bw7z3Lw+7653j5sI8CLu5kThpMlj1m4c2ch3jGcP1FsT13vuK3qjecKTZk2kHcOZY40UX+qdaxstZqsqQqgXz+QGF99ZJLqr3VYu4aecl1Ab5GmqS8k/GV5b95zxQ5d4EfXUJ6kTS/CXF/aiqKDOT1T7Jz5z0PwDUcwr9clLN1OJGCiKfqvah+h3XzrBOiLOW8wvn8gW6qE8vPxi+Efv+UH55T7PQFVMh6cZ1pZQlzJpKZ7P7uWvwPGJ6DTlR6wbyj3Iv2HyefnRo/dv7dNx+qaa0N38iBsR++Uil7Wd4afwDNsrzDAK4fXZwvEY/jdKuIKXlfrQd2C39dW7ntnRbIp9OtGy9pPBn/V2ASoi/2UJZfS+xuGLH8bnLuPlzdTNS6zdyk8Dt/h6sfOW5myxh1f+zf3zZ3MX/mO9cQPp5pOx967ZA6/pqHvclNfnUFF+rq+Vd7alKr6KWPcIDhpn6v2K6NlUu6LrKo8b/pYpU/Gazfvtwhn7tEOUuXht5rUJdSf6sLjYf0VTYDgwJ81yaqKTUYej/tbHckSRb/HZicwGJqh1mAHB/IuNs9dc9yuvF3D5Xocm3elWFdq5oEy70dYFit79yaLiNjPj5UUcVmZUVhQEhW5V2Z6Cm4HVH/R8qlamRYwBileuh07CbEce3TXa2JmXWBf+ozt319psboobeZhVnwhMZzOeQJzhpTDbP71Tv8HuZxxUI/+ma3XW6DFDDs4+qmpERwHGBd2edxwUKlODRdUWZ/g0GOezrbzOZauFMai4QU6GVHV6aPNBiBndHSsV4IzpvUiiYyg6OyyrL4Dj5q/Lw3N5kAwftEVl9rNd7Jk5PDij2hTH6wIXnsyXkKePxbmHYgC8A6an5Fob/KH5GtC0l4eFso+VpxedtJHdHpNm+Bvy4C79yVOkrZsLrQ3OHCeB0Ra+kBIRldUGlDCEmq2RwXnfyh6Dz+alk6eftI2n6sastRrGwbwszBeDRS/Fa/KwRJkCzTsLr/JCs5hOPE/MPLYdZ1F1fv7D+VmysX6NpOC8aU9F4Qs6HvDyUy9PvFGDKZ/P5101TYHFl8pjj6wm/qyS75etZhhfg0UEL4OYmHk6m6dO192AzoIyPSV9QedDA4Ml23rRbqxMPMxf7FJnDc5FTElVS/PyqgePzmwVZ26NWhRDQ+oaT7ly7ell4s3DypS1s0g+tOr7XHrrkZj9+x/mJBttrLx98lFIaRZzHz4aC7r52/JQ4VjHahY2/YVXZn/QC2ztQb/sY3uRlyc5vQS8nLPGT/n27495i8HPA152z7Fh5aFpyn1GPJKHuPL8Iw94DuW3KjkURAWZXn4EQy89xiKEHN1mk/tkM4gYDBxwNoYvRfE6LFqsxWJtPrDGbsnLMap3Ka3MUoytW0cvieozOmdERmhcqzG+3HmZv2yZeiIeQTKGdRT4HHNxekm1tY+/n06rGmFleqLscSERzctTKM6G9P0Pc1RmVvrascIxaO1CQCiYPE15bD7c3xSeW7gXxYjgxcrUlcbIvO0r+Yplhx0kTt3qafDOmFyMjgGxXu73rddMHpV1wMubyAGcf/v5dLr5P72Ta9lBF+fzMJrMycwv+9vnU3ANIl1cH9tfW7af8u0/HG0vV47jNFXzFTtaha1xvze/s8KMtCYucXc1nzfd/MQydUXn/b72RBt5wO/3jRcMH9BdhC/yctKBIveRYPrNpDWqBsO8VMmP+WvRaOcA4zRMR1PvSoO92rS7pYEv+fZfEfTMzEdM+6X5tLlyxExhqLRkms5EuLovLfx66de5fL2/yX02H52FPVwahrPqmN/E0oVXnsCKhbi/yRxX83nRbUKWhzYceXOntfuXn51NszJ6MO73pQf5Pl4in3ec4JU8hF7ppV34+mm9r1LY0ee/i1O1wpd8+zfLztE0cqBxggiBi5Bu95v9l3r9r/U5hweLn+TbfxowrWDqdJauKd8+q/dH8sbPkc9ttuyO94f7/XK/nHX46MPFLEb5qQlNPvhJ50/59t9ft3LXu7uVaWaO2bDrDCnRSzZyWvFKxO1+vT8MwwunR3bX0CkfPjqb4K9O19tn5X50PvmYpEwHtiW9WtzuV/s76B1zvLLNkViNd8ySxIl/3orfqP90TyTGaf7/rx8jQzeHJXdmh/N6YDvbvmTBwCdxfEQ1NcL6wNMdSIXNq7b1EUzRy1/Axsyk5p22GMG1b+GxFgbHErZh92wuvco0AuOLXct9hvw2nw/LqIcDRRmJmmZzcgUa7JpM/WV/S9IUfbF56TL2orzqwebdRD8nIYNJ41D/hz37Fo11p2Y21wzPcn713qVGhqtevStYfGH4n69OEJtPvbbLYWvscDqc3Hgnu166+tAyLnxrX0Y5zoYjV++1sI7t5kMr02KT/+uwtkc+rZLOf/qn/s3nYCf13Dg8/sB2diJgjGqjQ+TLhxbzyue2Ob7X6/9lUwW7a+lbznHzOYy8LKW1C/uRPbQY3KW/0gO9LXunHLvPL97afba9bFtc9hmz7GAttjVYlCvQAiOwAk/gC5+hkLEs6tr3AZKxLJtOEwk2dLxTYWsIB/j/ToWtIWzo906FrSG8iaqqqqqqiIiIiAgzMzMzNz+AyK+01/zi8n8S+Y1MjoRaQ80WU/G8MBlO+53VPXANrWm4wzGUVZUjjBJZVdhpcfkjsmcWaO+UEldXi1e+zq+HOsCpknYshuh8pOLISJun7TN0EIGW2xTnlOImeecnoGW4raxe2G1T3HEvfYUYMhG+gAFOAwh5nK8mZhwJMmN7r224QVsNFvZ87Z0qatvknklyPDK3Hy45PgVKXji52Wen4d4PlFVVYGnNap+fSpFbK90rYnhUc6n91Q3AY9E0tJOFrcfZtm/491XbcG/jsViUPPX76qmeuiz+qY1Hk7/1VPM405zWVuoheLUimpWYdVzCmUdKHebMdzgrYrb8mL2eeLSnRWHdonfZa8RsOU9F37w+591l5FLYHiOqWeHtE/lWrBHcRKp3uhtr8yXm8LU/5ms+NM6ZKsqu90cFZ4o58+k4rdrtB97NADFbwmEG7lXqvirhOTOqU14xuUF2myIjURcPHrPOQ4lmM3PeMg7bUuk0nnZi67bXsU6H8lhqIo8TaOrEafCO1ARK9PjC0QOoq2BxmMdgYB9G/lIb9++fqNJ2s7BHGFyBNmZAR8J3KCo012ikaSP8BCrf6VI0X5xdnbhHIO+B5rbOyB54zXkzfObyJ4ecwxfqBJMLFc7m59rNcw7hoHnFZ0b00zee+gTqvjm61Pb4xn0kcDX4jvHM0rBXZypG3DCKnD/Waa/ZtHmtFPgO5eETx+k7RrVg3aSwm2YoNXnCs3XPQDhNn+Fia6IlOOuIG6VJH7TP6ava26ehKHQa2T4N0tcZ9dPCGo3ZdnNltsHQbeYt5vPnJezV/cAeNypdml1vCHI8M81nSRP5Qi2+mI8v/sxiZru9187nRtp3f/42NemcONa+4eVC3PCZzc88aZh851CqSsshe70uPxeN/dmYwlwb3trwMrN1Gq8jbnApcVDx/yDPeYs5/7r62tsQ6lLg+DiFXTEhzR9dHqv0iT4tgj825W+H3XiRUNUZT2kR9Ri0+lp+UM3iQtS8uOE23Ly4KYtvqH13jghUntJRAewuzNLDXp8RxdcaA3cMY6TO2IeSFRXezeWIjCqyhsUdMYuCgYTZSKpBype1zRfq8FshvfBPc6BAQWl7/QxIDp3VGo1J3vn42OEs3qznws+YLRXbymyB19a9XBx6n/owcyxlEYyFWCi+kG9F+EyD/4yn80+agaZ9P7ay2Dny99aK2o91FkfEOY8hBwyfi5uwx2y5SaHmG+oq/zl1FX/8irOf8Y3vAcX/6uLP6A6nvMO24edSGPjQc827Rw2atX+z2bKq0CmW9mOtYnr5/AfDa1ZfPaXnKtlWborup7QYx+Or2uWb+N3N//2+yDcXMqIJdf55xl7/vsj4WoPPlxLxtVrkJ4w/tTe3mLdATOOYwxcq52w5Wxz5MbPdVs5O8/lhfE7dPj0bIiPQ3QV0iqm4m3YX8hRfc6jQ3fWepevMqUDJd86Z4vwM40CWHnn+WphsGHfieF02D3tmZvpWD+kBpNCFcLnZhcmmrhpGzzbdA+sQ1ar18OJD87IOKOFoRNznaHPNHUfUNhvY1iU+uhvEvpKHaUn3qK3exVVyX4joipp3um7FmYJWmA+WbIDshRpbVRx5/nqstCgy87FGbfVB8yDGCqS+2qCsnRwnSAN6zgzxfdB2nBT/vZ4/6uxb6oH8b4VBRxiIB93wLa47hG3w2SL/2Z27yOXJFwZpSJaBYyvajA7vRRYNKqljXKpt/CFD/tSMr18DKKbwB0xggBePatl1nki0yvqW5zchlyZmJ0OTxJ3D+fsYJs/mxYN5+Le5oagtcl+YsVvy8kSjI2YGvGjvmpkRS9W2dtXqWnVuxUhURm1lKtou/hdEq19VBp9OjGvHEQSmrpuf2R24mXGheil8KeiANY8fW1VERUfBImb64j12caBZmRViZHbeVMjCrPDg9A90IXrtnsYCuZtRQ0PyrKDjBNOsPfKsg1pA02gHlVr0OXiFhtp6nJqXVzcbfM0KnzC3ggOENPE9VBdmHKN6LYaijb4wXxJn5A0FSDF5j+h1ooZx885Jt3ZKzO5n7Z5WfNEOtyyPqQEnn7WLv5Fis3PdgMshjF1FRydbNyeBbyKI1oN1TRVrVK7kgsb/zjX4NDPIRMctVeaxVB38Vh1x5KbeJbU138AM5KzmZu3uny0ErygxiJF7GVXUrPzFxrlx1uFdAaZFDN9cvIb74qD9tzBMo7L7WIEYK+sla1DVMHpF0F7b3+Y6S+zjvLeDMCpapmJo1weBWuxKF3rOocih1gun4BoJh1kWnV/Jmiq6uOhK3VfKxEHEkafjLgK3oujaPzY6SXg8phhL4TNR1xvJd1Wa0aYFfPUMLrNBDCh4AuGRTbtKMc6Z1Udj8evY/ZpCuMAUefdo69DZUngoqE1P9A3PJfOf7WixCEj+Y6t7fYeHbbxUAoFV3M89cCKfma3fc1+jKRe7MFWEbQqEfyzO2x/wrO2VYH7iYdQ9BkPyI8/3kXBpLaCpU7eC0Yv/am/tEDu7HZpqg0EvHo0nf/R/gRzUWy33/HXMJQeu1GylKmOkXzlCfGFruAcPPhaGqZOtu19zsJ1SO2Jz4Ztth5cBX6mRQwWmDwryG9FUMlZzNckMdK+IoMJv1rOWnBamS2w2KHiaPMPLC15hCZm4KTpoZyj4E2TqC/P6r7/EhnDMhKicZZ1ZwxuC7DPzDGs53q8gXaI9kFTK+2LTq7bhwsTbrMV8Rsfua5lMS0FwbTitUVnVa1yTb5IX51mmYnUcP9wPr8Ji1tiYJeJV9GZTrQhF7vvdU2OTU42ogJ9FDwhmycI2LIg++03C6scYhUyUuMV5tkw6kGUoL+mjNC38+wMdWNljn6tGPpRES7veqrSn5TRuv+dh6JVL/iDHU1db4c9WK3++OrH3PqziF916UMUKn8G67nN60GfWiHrXYhUG3yVWmyYak59NHj8t1smG4UDiWz2rPHNrKnN4Zo1LBbr2/eF9YZ0n0blx2nG4X+EKFxvS3W28JESD+FWk61VCD3z/URGHiJl++7TdBwkCj6tGOH3qDb0QqcOF9Kzpj0HUb/KyFW3Yhj2VMKJqGZleFBH7vqvf7WqLC3XMuHV8q8a4sTFuxUtkD/6JIBvKaVjv96ndgruKZ1k/BHzqf2K9fLk7HGXANyLDd1vxkK/i055pnzl+zw6zLnwXlVYVtfmacJgEpRP1hbGgrYPVN6v2lG+idQNGmwcKXu/8xEj/P6qe/sB2WmwNp6pp8jaISMkwdleFXYK55NHWLTTbutSUqjBfDGWo/Yg918qQ+8BRZSAHZbfuNZz2O0sov1Ue4CWlVg3rFhM3Kljj9ksGd/NUhk4nH+a5UN2+1i8+NM3vRNp7uQ6sqexSCukEVlVZriHNqFi5rLm9TMWa4qm3idJqppQACol2l4VSuvWLfta4JcXy3bROPNbXOgdOhG47LC0CwW/dMlSx4Jf17aEU3yA1x9p+Yc0jupXgcMuYNku64iYOkGToVDuJvlbEKlJqsmiHbvNrIVZEH+yFdF8DbleZ6iNiWwMqvtMp/mSpwx5KxRrT9p3MAPTHGtMbfvdFhyj9vhaKcn3At8Lc16Ai+vBcSp1ztXi7rCJZx/ql7TXcclq6Q76UeKWDy9boS0WHIjUuWhPG8LBmW5y2rhuTpM5vsLt+HOLh1Yf0DqXa9tsfC+kaKt2htA0ai/L2i7RKoNjEwztkmRU0GfgW1TxUvPFhg0V7DdfWJk5gfrccpYv+MA9M0dkGTLECeYwUixRzjRFdmjG7zdZIl3XKB9YliNKI31lfa7i2JG5C8Ss+rHe0D7Z696/V3DEAOWHnQ9yNahMUl5kENWS6pHKKp2D1BaSrrHdE1w2qNxIztpXgUIrF0bm15YML4b6V1k+GpNysTahKMVrrS85lTVo9OGJ96I47eAy5rYWpRf/mIzeoYU1DKaQCTUVwrhHeyNoDqHel+lLxr9WKzhSYw7vrR6+V5q0pfi2k3L1zqkubY6rrd9ZLvSuWNf0uqnkY+FpTvFzSW9Fp0b9l8JA7THV9eCi/PY/SCZIUYx3BU2alj7Cm3VV6eYpios4b6WuNOJdYXUK3zTqj5CVG2FqYM4Z7CuIU0qO05XR0d71FHM0YhZmJmTRfLlXEumN82BGtzdX0S19t1e+bUieK8zRmqpa4Qc5TSjifmaQsY2ETLjhI36gMR1+7qpjdXXHiceUekfBaucHShAOiFXmv3sNmGQyU5iVgnoocuonQXEPTFwslHtS8R+A47StI9wj0iSrtbi5rMysczFiImsQ+bdFClnFjjpXXwMy6O7qfjOr8Fb0a7ODItisjnn3EQO16+ypd1cwyaAW5Yzxz5QknfMO7643fXW/I9y3U2xH27Oapqr56Z/tEzglj6IbT6HEHjopiXqeRbe5mQQvxtcbDOVverN0ZgMdzqRYRjaXtMRd56Q4cZSmdPvZJdSrhJ1D9zNXPqAEqPIavPdfubt5oke2kmv0dztIszSv2VYuoyf1UuopbsYb+uX9h6WpwjpgtZ6fNNawNJ4q8O3CFoSbioAaOSZMx2GYaPYB+rEb6qjQiNRFQ76TvwNFVKD+BhH9VhcKGsXzmMI7BptU/CNWolM7YzROvpFAntsiWJp6eR2d3GarcYShVYSUqhmYOWj5E96NK2WvmYNTeY7Zs4RUEdv9h9QT4EseKt6LzLrqEOs3hxAY1MaNWpSa6zZx8F3YOVeCYMS88W+CYHDuWe4yoc6YK+djDuEOrBR5lvh0r+Q9uM88lrjx9x9AtgpQVNE8r+3O6Gvw59D+kBF/UMXyhliYUtPjmvXGY6Dk3x+kEOW+GtdMVC4EZTqoS/jmR0P0LS75DOc/w2vnri97M4SdbZ8qeU7gg8DVbERkU5geaMQO3mYrSYyAngeUQqrN0C0/vsFmcgWNXNeidsTAj7/4MncJR0caaBUpbLK1yBCBNRjEv6KvuVSdpPnEMJdsRRtqJ+U8tN1gXA4ePHc6ZT0eviI73UOJF0fEZ8YaneAQqQdGphNvwM4nIqPnXxV0xA0fnCT+oAhJuyw/q8jO0y8CjSteZExwBpIN6SvNp6A5G/abi6egeND/1GTguhuNjaUbbnSbGd4L8937Ezm34Eyi6n1maeOBxh3PI0jzJDf5mh/BsLD7F2GOKvlA/5gtvxI3/eV4sLfKW5Wy+oio+es/u6T8UU+nsofy57Icb/JlZHPFtCgd/x+bwt3ZT+xXTtTtTrGAb4QehC6X9G+8YT+ozcLxDsdCjsuOqwPFnrdLYaFc92Ui0m4fr39lYmlCaqTit7G6O/3kWDkgtXjNH4BiEm/+jegQnihOtfffn33WxsFjhfMd48HT+f6o6X65j7XR8WLSHMFkxbvOYsrRsF1bowDuSQ18Mkxk4qz2zoGPL5fu9h2Hqmt1asl3Q3Yu3szOc+spiCmX4AETBM3pLoTYSp3sVxahyhL8eC4mPN9k2x3o0xkiixIzM3CZFzf5oR4mecQ5+ax2wCah3/crmnHoqR0+KMaOPxRif1oEFRFOO/kTPPmtww+NfMXxEK6gn6iU32U6fFruIz8Q4WgljtnaCVTBgWx7diUdshC9ZEa5yKpRBBeW12r/iNc/+EgNqmhswNB8SBoihHXeDF7rrWDLcmt3V8GYYN7pXRy4DZjj4DJuUBL5iC3DQAaoo4vkftqVTYRGLS3mHZ7gdmdTTqbgNN/PTdTCOTgXolc88MhXAEUMdX0iy1JMuk5wLsgeu0QUYlz2S4skTWwJz6pOm/8ihrmgGfFgri+ZWUK2gAPHgbWa8jaocdSuM4FJYoKicYX/ZSENkg9Q1ZzJfwScfVnR2DegOGwCvmogaWJCLQepv9WNlU6QgsmOwICquU28Mlk3d9W5E81lU/5Ez0LcX6lwKMWDNluNKfBDUy/phJgBcMnfkh9iRxrdOzgs08JdPB85Lwo+GUSb4t3nC+0byqMZtO2fQJ4U2zGIr49t/28qmmGv2RanDD7a3FEcdtutkW8twwwlUSpb8QalodddbBfNHKDQ828BdE7OBgFdiKYohLawFYqpybQoxATZrheLhdI7+0Zlu9Q1myRcd15r9UIm8K2LGJxqTegntqNVMKnf1a8zQiyUR1rxoqjiFxeHxqFcYUTHfDu7rhbWng6qOxOsI+5A1p9mRyEPdVkTlE24vY54W7bWc6jMgZvNXdfC9/9q7408KDsbdL7Utz7QFSDetz2picArzrdpL8OaCHC9V26RroemtDZ5yNM/KGkWMyTmfnInEvwtSD23UcFcjhaE3VKzkoaEMKGBft4XbIO6forTY1lmGQwVmKicBCiArDzE+1oIxE08fWeviIOD5TznqH+OoHadvoOP20drMPe5Irg3XBQziW2XDuHYzjqQQ4wySssjXUs5H+t3FWYMHppUnBHMx/nYIT5d7OmjDbgD9F6na3m4l7KdkeSO3kTEPXafiWinogag7b52taiZhL1TSvBFmEZafFq2H8khQaZXuitCewT5FBgVtPK0j4xUHPfUz3Q28eac1Z139DAP23dgki94EC8vbDPTQC97HPPSWjUNG5tWKMsaxAEMKC0665Xvo1Ntd07wCLNf8Q56mrEPVpCxlIMVlQlWRxM3oAfpgIc+8KC3rEXUog5g06vt7zgXY8grH7hhwVSaeuvC06YYRAwpbyk/Unzj9hLEZNs2oxPQB9yc+GnL6zTgq7rI++KDJwX2SP8Sd6YzTuw5lV/kU6eQxRD12omfQAW6caTR4LikYkBB1CMOrvgRr/VY75+NSB40Cni6bADAtaK+vyxVWpf9NeKJxN2KYQ8Q2xPB3K1s7fuhvWbr2XpgW044VD6DRs0qXoqKf1NFsaGvKJc47leUV3pppP/5VTKFhaGuol4Esfjf5zyCyUHmHthChcYh4hYLQF+AFWsuq4t0wJyWgdwQVOZiV0efRHPoK5+E1vjz9wTJmVkITC9oEstAsyZSgE/dbicwKr89YUxKZI+owD205Tm5lnnmDRuP/JnzxX3gMtlrcX0UesZdxyQqYQuEW4R51vmQ5xOZteUd8SJruMlTUzhtVw/Nq7eUBcqN2/HVotgfngif60yKEtoUx3WYOZlVJuJOh8u59fzSDPFYtQgqDUAGyGhQOAvKroXMcOYY0qjnStJR/G3aP+Jt1sLVlGV8POwr/6OGsqetnyF3TmTqZjENfnXh51oxe9qVUw2M78EzAJ+IM8lZ1MBPQ9ZWSVc4J3mWSrLKrMHReA5qdGoz0ODRsaA+vwxXA2cAM4qlfzBJA6581m4hzxItQw5dxrrBL3Y6kCbUcFxo1S8jyV44q//+7ASNNudZ6xeaNOSIUffqMn4A9lIjFctYn2gpEPAb3f7p3iIBN8H14FUGQ9ct2hPsL+cEsTgUrR47uJVN4n4wt/wgfwwHuOnLd4yobkofy8JvxSQTA7rMpDIc608SlZFJfZYcmbT0tAHpPE8MrtQ42siTUNWxqvWZOmvu9f0JPoQmg+6l7sZWwyfi6PXkxJnwBraUG0MYG4zYHQz3igy/XsFkx5tNQxw43qvI9dU3f0DdhOUlHKjmi1VAr2Kiy0HZwD8VeEbhh0OiDdMYspolQsYdSwjCcjeowIXNZVUPmL2wwIkYhmXKhGozdCJ4lRKbsf4NBh/XnQoS92NJEWOVOFs2YhN8c5QZFeK0pRdAG40hqvLbmoSA8xQmzOOEc7wLcme9JOsjPCEgpCwUs9E2DohMHRhUeyGIN6TFvrbny8nDuilsDpzrH5mS76APoIEJmItS67sQJ+nfwddzmjPxcBEBBCw0kWDwd0EZCkNeOD7NNQhtBm7KHL9mRxj6U1yWU2puzlIDtpYxdH4ZPeXBJkTGAJfUr/oTCz/iypY6uXaR2V1doPxJYlrw2ghH0D5gbrhFcIxzYwi4a/4hqVdf2DdxBp6vGYDjavxMAAoy+1+3aiO6S3W/QAKNVXagDtvsNtx7Ks+HKgo6U21B+QSZgIogV5Bt+BnXisdVfy9VyXV+2P5fMuvdpAjM1o/K9Z+XnE4EOCrue+kcdYHqAQ0/Y/OmNlQ6OI33jH/uD1RalPaHpJAm2av0/xtpqdXVKNDrc9F2izo23Wu7firgbURFDNX9eGGeYBhiypyXZft2j3hTvzE6PMWKsod//rEILDkzBXfi7xh0eFkfb3/1zzPK/PI5Nk3FbZyTl4mq5BfBoVoqiPHO4Q4QKZAlrQ3MdNfi3oxIjvsM3kAFv3fdufurqYR3PSwX/mpGy/GFI/B2MNPiNdOppWVbs/gjF3YH+QA9jMhlAbhvasAHstB0IJew09iAkmXHl1/TEj+jvHOpOGrPRQXbPADM+Ig2/OEcUcpgPTItMtW4DdqgfYVI/+4hAFWYjUGpOP/UwNuB7+BbKOcALbjobdgzeBQfjgNSp2GOpxzGLj70Vvq5cw2AoYENwKLUtJUX8sGRox4dVa/TN4xKwaKcl9XawQR/uNus700Hf17pyNnezrUgaY9e4MADhEDBpsJT6y1gDJs1q6wlwGhuUzGR7C8kgpjPyHWwsvrf3yn1zJEIRa5eSxoLAZOCR9xbuztxFRJW9ZmMYfCFJ0evm9F2fVnuje92Rc4Pl6A8bluN8MZyyJGZ0+sNSb//DvAFxC2BqlEsFwccWeAl6CyBcQV1bx4mQMBP1Jxqk1EUADNLeieS2dUFbQ/c/kvwItbZ7tx0st16viqd53WsRmPTKv2AD8CUnhtPWg5aUegNpsYgasaw2+EVooeNKmrW3MFtj76bYHJm5K9gpAXZXsE5U8DM8XmVOSJ1F1WnLy6nQup+jx52bAb+rCq6y9WXl2B2oZDhfDkW7H3oYfT/4xx5VncBuxMXP2lNfhUVQjSSzSRbuZFE4vFawlzveXxaYKVs8LpvAb8IRYF3ZHiRnm0ADeNPWocwxSzNseG7NrSEVZoHdKWqaGEBz1N8Pt7kFbqh3LYmAbm9i1IChIpLpM5AS6mr6OAPHMwwznVy61YpBYX8xZDN/a+lt7n+x5j4bNOVteZ8lj3hpAHSx1VR8vZHec4AHO9XFCdjZ9eRkSV65ljMmZVzaej2qFn/qt1lvWzNZEfHxK3qOJrHL6crr0CRzMox5f2e8ALBB4UGFZKA3tN6F6IXd32GTJXGQ7DTi9j/dNcLF9jCbDcWGKxoKTYblIwbLDReL00LRcDPMcQuXLMh5YzgtfjkFK1DP1iDzzYYVZz5M/kWYRlRpig1htVRjVCknm+h1M5LiEDXOyHREhvzCGpFZjHS0RsK27o2avgdilrJkalWqPW3D9gmwV37HKmfM3F8YZj2ar+vHFvf3B8CRoH4kDHIK9mrAg+owiEwNjjd9V+FsQKYR8czJrUkf7Qoi2YaW6EVDZp5zYlqiYtuXOTHk4fAcZ7qBbdLDiJq0WNV1l2+Hntk1mMWvxrYmc8kIx8G3rW36J6Ra4lLrTOCgiOihmow+YnzUT19jbV2B3RWqSHyxkhmgsBqMYWvOcUom1jDQ436+fcbu3xf2bbeqU/ca+C4DOKE+e3qvmeMqW3AxejfzBRFVcwVYPq4L0APSWWoJu+5UYX4qg5U6YTioqQGPG9XrnuZ/BkxuYpe6Li87+18EskyQW/uA+uk2rpHpr6hut2TlVbKgWkFpx+AZffweiw2+VittkEyf/ifinS/0ItRL2Jq3tQOcxPaWO2xrG68GdFoUpZgFXaP2wYVtRc6xYCfI1CaBqyWpg4bx8OHBQwsV4XWMibZZ0LYjWEy2IxQ1mZrf1/UNbYCJplWu3nZ4WpodIGVA05d+RWSS+ET9tH3RfGGmNI1cIY7evZZq7o+a0bjjygpmR3mVfalkT/SZGT27Q8QGalwGlDOS9VHCyFAIL0a1Q7JiW3saz9gqY8lqKynFrPCzxkU4SIfLc9VfCI5edgRhDXs0edO992nhTKHriREP1NJC6SROMgQ0xO5kNNZOhMOIT99AUElbxqeZF8A3xrfDJsWtDnUenAHdYWSwAbYjFqQZ+D5gi3hNK8CSxU9i6f6ClL9IGlj1OPMQAsr84YG6ijsJpCaGWj75c3yOZKBB9mNpQNPUKkK0D6wgLH8MGoyRxTX6Y05Q4AnYNXMZwXM4eij/9WpsM/9CoRnFQXGR6MEaY+FXvXEO3RO0JaStk6OXuHVATHJE+1W+TU3bSZ2ksMtqjO0zfSJCdBv7y2d8DMx6TfVme3q0ZpTKMMu4YL/t7ciTNtdDkwPogh3Cnjx7qk08SHwf+dksZ7M2vCOlfsF0hQ6J4ehPCaHTNrM/zBSOqD83dBEBCW/F/LEmeh0nOHd7oVl3/Qo/9GUDkkbj7yz+9cvvu+dDAtx8NzCDTP4iKdZvk9MWiizvtILLepysflSvTLFBZ37RLwiriqyRxYv/zrgFd/9XVHh/OmzBvDX4mitMR/lUavs2Vx6cR94lzAkplm3IRNy4TFfu47tuYs9EQPIPVta4P64tV+sZ7n3ued3cgEx2YK+QL5+xms6osk8qQbTyuKVGdaX9FQqk6qfDnT5ykxk0VK7KZ62b6DNDUfQlqGHxSMKv1P0XN5BqMeKG1P4Wp5QfZDUCEldppoX0U6ss2jIko2XpURKCIhfaOqLPfShdtS37ZrT+jFRSH2xYVV1rmT/MBtRQhxiO4MQ3iAGlaZi+9PWBEIXOVnu9jN1f921lWLZky9bqbM3J2MAAI9jmuAx3gyoEUa6P2ivs0EeNv/OR+AX6q5SW6l5HaoFuS6jr6yg9limu+P0KYKzfMXWcQSfTXzpOzKEKpwI3YGXZpSSy2LTlMgfmFA3CF6R5c9xWEtRuCg2ZPUQ2Nb6dRFTNd4TfGHrnEWSKHPuRyiJSDAZ+KX0VxmSHjGPbQTLVpqixia2uyhQ394gBMt7C3ZAmxn/DJS+l1fBsAo2Eir/C0jG9csd4+/tp12pPc/BVJGaK9mfvr7M/CeztrmCO5qY06Edi4xAGtiEhnWAbzLy2VEyazE1J5nPmgU4RpW4Sa0TnOT6w5lgt3/tMpROigHHmexBGAMY0mdcDbDxWIz41NgdD6oxgHsJRgr5RnT6wZAkTOcStU4NMOQNemSO7gxGahdEsC+NRVGxMUhQmmM0llWRbbmFGHzEqLM4Iw0H7577Kyo+Zf+2cUFIOw93gEY171vQaM0HLwpjpdRR6Jz7V0ckE7XzYJ0TmY9znLdzkva0vNrAGGT5SUZ5uaHDkcGvI0ySpwkasEgZPMseYcu85w8HPdSNi+4T6A83iAwDbxgeFcB1ZM2iGXzFcEOUlYVrEckaOyodfvaYSQ7GuB4ISE0nYJc15X/1ciDTPbPCgYJK55VkEor4LvzL9S2WDy4xj+6FOqVyTAC2ZNowheeeSI5hA/02l8UYkv4nk9iaVn+kCVEUstgk5Hyq+gJm6R9vG3rhuM904he/hFmNQaUIATB1y3vw+OmxP4X5Yi6A5I5jJufHCjF9+AGNwnEllZjUco6XhsO5T5+R3yxz5yLVOnAn0zuS+6zdj0nTJbEZCbXJdtpfYZfCeCOqJHoE2vPPFS6eRLjIJlG69X93nfR0mxSFXzp1Zc0lt/VafDaImhUMtbnqWVb9M4nGNQLN68BHP7AR8Il9dkcxzmBv8PCZlw9guY0lurbBsmNYlwJZsA/B15/HfkbjbwPddaVecls/elmDHNW2r4crAx43feNkfRwsaNq/yyJ0d/p5hZ6AZajz7DBfUok0ZU62gCzz7x8eVfJTKA8IWn45vINLSM1q+HF9CV9qF3zP6Ml21kPPL3CXzkuYUlnSqT+Ij4tI/od5KwIs+tDajDs64owN7tOAd6eucGz+KfO26iNcBFpbWA5732bBNWO4kHNpr9D955L61bvHCF/mwSrz6eQaDjfDEANqGMkFc+NGxpKZzCD2sj/JrHd+zlPQ8Iz7Q+2JVIiVCuCKoK/hlAEHzvk/Piq3mRL1rT/fEh9hoT5GJmeYswg1otiKydizJ/fS2SeKHVu6Z3JEHjiW8NaTQgP5xdBli8nC57XiN9hrquBu99hn9zqwo92+PM2JXtpeVZS0PdqR5mDyDreMMtEws+CpwaRyyzoYtfcvt9PJIW0fJVNNi/FFyRsea7peLvJrL+5b4GOXJ8tAr+ATk9f8KmiIsRhqRy0vFzwRV3Z5dZ3QqIU8JQ/uQpkJbjMUMFj2F9sCFeaBjI4+fL/oN3+LQgjI4zuAfQ+3IPIPFQBccf0clJpsfpnBxD84atwtupkGqKvrH7cGNl/QcWcSi6wcVDML6ljOgYbo+2BOAWNNjlUBPiyitUAwbnhFvLbnqw42kR3Yp2kv2dMeDdcGOX5kT4S6M44KHEB/SpCfl7xgsUvs+JNY9G3O2X/6FEt9FyAn57lrbiu+tl83sCymSvq9eZbe9mchL7MTf/Ta78e80zSf0hYY5eUU7+ff14jv7Xy8qjzfzzzvaJnrIdvFb5BLWKcWGy5/w7+vV2cvIfwHqdTB+RuJK5oj9mbt0Hy94AmjMjjwYNZlNS6uiyxNnwNyt3gdreLb64p/3+08nXkb92LTkkRgFOwk1oGEVllcOj5lv1hfAZywDows0944U8vUFw+A/nuVq/UCygsrmWIBnHyU01d0XJPwriEOvx/ISK6Pk4y2w0gmojZs7lU8TtakBAdne4v/aNxmMpK4VcGMp7si0yqsiolXRuOi1Z1P7SqD3Zmp0CWcyK4Ubmp2SXiXuI5nGLCieFHKHNRIlcY3Pys2dwMTYCaqlyWSITwr2oGXvyU3h1Pf8eQ3w1bnD7ilocVjYDkcXR3Oo1BXgMLTUjNw2xMVwjtp99NhSVc5aIWrDQT5DHPKtCtheBP4zHcw4dz2eRdTMamhlHhtfgqJJHI7NGDUw1XL8vsSeSHyKqDtqoAmrQqsYwvwi7HW3ojWyhIa5oz5xJTaq14NAzFLjVLR12rRNUQ6xohDnrWFb5bG9yf8aCD8d5phoackcNJp+Dw3Due3RM+5Rid7EuIgsnwgpX0rUWh/nqPtByMhMZZ69NpgvRTKZ62ViZ+Q7Dp5r4K0d7EfJuiy06KuIYauRh5Ecrhdt2QpTS1k1AscEHvapNbU3HL1F2TFyR33Wxb5MvH5iZsrn3SDcsxlnnshO8PLwmdGN+paWnQuORtZGX37uhFT64SeuPsx8UOokY6ON85WdQ1dki5zErsJGazcBOddWJEKqNPiJpsMD1GrVLrVY+AOdPWQneTyyP1hRX/lMM4ZogGGOhYuAdr7F/DOiAoc++cn5vlf0zkMUJ40Z1rlgv9BelPqVOpxKeOpzKdF8maK+1Vv23MO9k/8+qpLoxrIGH2EDQlnGmH8CD31G8QqlyQIcpmR5bwmSVw9/Ns6IHgulCRehvZ/+VrM60Cu/r3AontFfrljew74skYe2uyn7JKQtFQBQRJ9ryGic/zQOsbS4scUBctA8cPToQ3x6ZBQu6DPu5m1bnCtP8TllLYA0UTQNVqza5nfew3Mopy1GPUwG5jsl0OVXniPmAcmLqO5HG8Hv3nSLecE9oOjPDXcsTxoCBxYyzBdj4wmnyEV4kvFDunipS8SSkvdaMnTBN9brHUR8xdmmEAp/Pdqk9uextp1t+JrtXwpN/MG2w/qhRMpSNxQ1uhg/kKO30eQ/FyHUDkWHT8V6gGRU4DhDMxZu7xXij9Ui6jlpWmQCqJg3FkOTq3WKneCRYZxBXMNAVLQgHXSCGSqNdjebY94oyIpVjMYehAiFx/tqzBXFHZaL5PeeD74rW5OysFoUXY8sebUZleFTUa/+zBKVTFDopTReXNuZq47QjkWnxjirCommO4L/GrFtVV21EpMyw8wyThL5Y59d88xtlx1g1ttSICDwnof6lt/6zliPzgVUL8jWBjC0o2D6Kg+jNuThkAlaDJsq/AG2aKA//A76avw2KNqtv223P+Wq3StRDDNKFFgtsFukYt1GFDWooFVXitaNhb3RCyJi4cMeNjROiPEDb4k+G3+hD8tsg+5hhmSc/8t2JTSwYoCzAI75doq8QTHe+E/Tw0RQSUDlU+6uBeNN3h6jJGX/mH8oj0i3caCNsjvTnoh73BtyZpsflHLq6AfwJNCDX4S98h4+pCOhGKDhV3rtkKHMa3EG4J9y8zFWI4UsfNzC/Rl5midNn7gwoN9j23HGCQQ+OAZpTTPMdiVow740gIyuEtd0qVxMyNXhHcnuXRKdw5wDUSL358ktjMXmAkvIB73BLa1vfF9BAUZInPYJiwxqFWQQBVk7gQH4ojfUQ/KEjn+A/WR6EEe4CtbpoLe1mzHkajgTIoE0SLDHVauKhrq12zrAXBGbPPWKCt4DGedq3JyGRbmPFW32bE7T20+73BatV/qQhhBWfWBFHfhYWXjALts38FemnoT+9bn1jDBMcUMmYgSc0e7GQjv2MUBwLU8ionCpgV+Qrhg7iUIfUY6JFxR0Y+ZTCPM+rVuq0GNLyJXX6nrUTt8HzFBRY1E/FIm2EeVA9NcXrj7S6YYIChVQCWr/m2fYUjC4j0XLkzZ8GCSLfmkW3PB/xq+nlXsKVBOj7vTvqKCOMq7Ztqr3cQ+N8gBnPaAps+oGwWOkbuxnRYj/x/WjiDclVrs22xMK4qArE1Ztk1456kiJriw6abkNeRHogaPRBgbgF9Z8i/tbzWELN4CvbqtrqV9TtGSnmPS2F9kqOIBaazHYaJ9bi3AoDBvlZasMluxt0BDXfhp02Jn411aVt6S4TUB8ZgFDkI6TP6gwPY85w+oUQSsjIeXVminrwIdK2ZAawb8Se6XOJbOaliQxHSrnAeONDLuCnFejIbp4YDtBcQCwMsYiRZfHefuEJqJcwKTTJ8sx5hjHmJI1sPFHOr6W9AhZ2NAod38mnLQk1gOz2LCAohoQbgMbUK9RMEA3LkiF7Sr9tLZp6lkciIGhE2V546w3Mam53VtVkGbB9w0Yk2XiRnCmbpxmHr2k4eSC0RuNbjNsUfDIfc8DZvRvgUDe1IlKdZTzcT4ZGEb53dp8VtsoZlyXzLHOdAbsp1LPTVaHvLA0GYDFMbAW/WUBfUAdHwqLFAV+3uHvYWrCfhUOR2i89qvCBoOb48usAGdcF2M4aKn79k/43WzBZ+xR1L0uZfia70XP9soQReeuhZiUnXFDG1T8/OXNmssTSnYO+3kVLAgeiY719uDwL9FQycgLPessNihMZbAKG7qwPZyG11G1+ZA3jAX2yddpYfmaKBlmfcK/V0mwIRUDC0nJSOPUl2KB8h13F4dlVZiRhdGY5farwN+f9hEb1cRi41ZcGDn6Xe9MMSTOY81ULJyXIHSWFIQHstVYLiJEiUjktlHiGjntN5/btB8Fu+vp28zl2fZXN+dJDyN6EXhS+0yzqpl/LSJNEUVxmu7BsNdjAY0jVsAhkNuuY0E1G48ej25mSt+00yPbQ4SRCVkIwb6ISvYtmJRPz9Zt5dk76blf+lJwAPH5KDF+vHAmACLoCdG2Adii6dOHnNJnTmZtoOGO8Q1jy1veMw6gbLFToQmfJa7nT7Al89mRbRkZZQxJTKgK5Kc9INzmTJFp0tpAPzNmyL/F08bX3nhCumM/cR/2RPn9emZ3VljokttZD1zVWXlUIqEU7SLk5I0lFRU0AcENXBYazNaVzsVHA/sD3o9hm42wbHIRb/BBQTKzAi8s3+bMtpOOZgLdQzCYPfX3UUxKd1WYVkGH7lh/RBBgMZZwXzU9+GYxdBqlGs0LP+DZ5g2BWNh6FAcR944B+K/JTWI3t9YyVyRhlP4CCoUk/mmF7+r2pilVBjxXBHFaBfBtr9hbVn2zDuI0kEOG3kBx8CGdPOjX1ph1POOZJUO1JEGG0jzUy2tK4X0CgVNYhmkqqQysRNtKuPdCJqK3WW57kaV17vXgiyPrl4KEEWgiGF1euI4QkSFHFf0TDroQiLNKJiLbdhH0YBhriRNCHPxSqJmNNoketaioohqMglh6wLtEGWSM1EZbQg72h0UJAIPVFCAJOThpQGGdKfFovcwEeiBuZHN2Ob4uVM7+gwZLz1D9E7ta4RmMZ24OBBAg7Eh6dLXGofZ4U2TFOCQMKjwhVckjrydRS+YaqCw1kYt6UexuzbNEDyYLTZnrY1PzsHZJT4U+awO2xlqTSYu6n/U29O2wPXgGOEKDMSq+zTUtyc8+6iLp0ivav4FKx+xxVy4FxhIF/pucVDqpsVe2jFOfdZhTzLz2QjtzvsTCvDPU7bzDH2eXVKUV9TZ+qFtaSSxnYgYdXKwVreIgvWhT9eGDB2OvnWyPLfIIIfNnfIxU8nW7MbcH05nhlsYtaW9EZRsxWcKdEqInq1DiZPKCz7iGmAU9/ccnnQud2pNgIGFYOTAWjhIrd63aPDgfj8/sdlD4l+UTlcxTI9jbaMqqN0gQxSHs60IAcW3cH4p3V1aSciTKB29L1tz2eUQhRiTgTvmqc+sGtBNh4ky0mQJGsdycBREP+fAaSs1EREDVo5gvgi5+aCN7NECw30owbCc1mSpjiahyNVwJd1jiGgzSwfTpzf2c5XJvG/g1n0fH88KHNnf+u7ZiRMlXueSIsloJBUtW9ezvsx9grfsX/FNxnbxU1Lvg0hLxixypHKGFAaPu0xCD8oDTeFSyfRT6s8109GMUZL8m2xXp8X2dpPCWWdX84iga4BrTlOfqox4shqEgh/Ht4qRst52cA1xOIUuOxgfUivp6v5f8IVyaryEdpVk72ERAwdT4aoY1usBgmP+0m06Q216H/nubtNYxHaOIYjcach3A8Ez/zc0KcShhel0HCYjFsA0FjYqyJ5ZUH1aZw3+zWC0hLpM6GDfcAdn9fq2orPmZbW6XXrf+Krc9RtvII5jeD3dFoT1KwZJwxfUMvc5KLfn8rROW23Jw89sJ2a5dpB3qWDUBWF2iX8OCuKprHosJ2mflBR+Wqs86VvgI/XMnsqb97+VlKdPVysczPj8Jhzf+WCvGBHijAqYlavbF60soMWlHbvKT+ScvhprgeTln51xX0sF+Eadc/l2s2a5BgkVbHYyz0E85p0LstqH+gEGiR84nBRRFIn8hLSZrGwqjZ3E29cuGi+5Z5bp7EM8MWFa9ssS/vy4VrDfECSv7DSU84DaP0sXI3Ap4lWznQ65nQoTKRWU30gd7Nn8ZowUvGIx4aqyXGwmA/PB4qN8msJUODezUHEl0VP9uo+cZ8vPFodSIB4C7lQYjEFj8yu49C2KIV3qxMFYTevG8KqAr0TPlkbzHHnTpDpvpzziAiNFh8xiT7C/TiyH0EguUw4vxAgpnE27WIypV+uFN2zW7xniF/n75trs9IJ5amB1zXXZ1LFkJ6GbS/dFokzl4cc2mamVwhL4XU0Av5gDWAl+aEWhAP7t2VIwU+EpvfOPDcLASX7H7lZpXA2XQfbSlD4qU18NffNPoAKMNSccBfO9YVVgmlW4RydBqfHAV7+hrZ84WJGho6bNT0YMhxxLdOx/dwGj0oyak9aAkNJ8lRJzUuA8sR+fPyiyTgUHio5+Pp+YaKlHrhR41jY5NESPS3x+zTMe0S2HnLOKCOQPpdxKyviBvdHrCDRqO+l96HhhNBLXWv4yEMuEUYo8kXnYJM8oIgVM4XJ+xXOev4YbWeqsvgq0lmw4/PiYr9sYLt+W5EAuYSFnJEan8CwJwbtASBfLBBpJZiRPor/aCJBZsM+MhvS7ZepyHvU8m5WSmaZnxuLts8ojl6KkS8oSAHkq5GWlCB/NgJ5W3rO2Cj1MK7ahxsCrbTT3a0V/QQH+sErxV4XUWDHx0kkFy25bPmBMBQ6BU3HoHhhYcJB9JhP6NXUWKxnE0raXHB6U9KHpWdQCQI72qevp5fMzcm+AvC85rsynVQhruDA9fp9COe7N56cg1UKGSas89vrN+WlGLYTwi5W+0xYdKEGtGCeNJwXKDU0XqU5uQYnWsMwTENLGtbQMvoGjIFIEMzCRal4rnBAg7D/CSn8MsCvS+FDJJAzoiioJEhZJgAp9n2+1Yznr7H+6eT4YkJ9Mpj60ImcW4i4iHDLn9RydB8dx3QYm3rsX6n4VRrZDsYK6DCGwkwd5n3/INFEpk16fYpP6JtMQpqEMzcOfQGAHXBTEGzuLJ03GYQL9bmV2/7ExDlRf+Uvf1sM2frRtCWmal12pMgtonvSCtR4n1CLUZRdTHDHP1Otwqd+rcdlavnKjUB/OYXQHUJzpNyFoKpQK+2OgrEKpGyIgIBgn2y9QHnTJihZOpEvOKIoHAMGAXHmj21Lym39Mbiow4IF+77xNuewziNVBxr6KD5e+9HzZSBIlUa/AmsDFJFXeyrQakR3FwowTGcADJHcEfhGkXYNGSYo4dh4bxwLM+28xjiqkdn0/3R4UEkvcBrBfn/SzBc1XhKM2VPlJgKSorjDac96V2UnQYXl1/yZPT4DVelgO+soMjexXwYO58VLl5xInQUZI8jc3H2CPnCNb9X05nOxIy4MlecasTqGK6s2az4RjpF2cQP2G28R+7wDPsZDZC/kWtjdoHC7SpdPmqQrUAhMwKVuxCmYTiD9q/O7GHtZvPSN0CAUQN/rymXZNniYLlJDE70bsk6Xxsh4kDOdxe7A2wo7P9F5YvqqRDI6brf79yPCSp4I0jVoO4YnLYtX5nzspR5WB4AKOYtR1ujXbOQpPyYDvfRE3FN5zw0i7reehdi7yV0YDRKRllGCGRk5Yz+Uv1fYl2ZwrnGsqsjgAVo0xEUba8ohjaNMJNwTwZA/wBDWFSCpg1eUH8MYL2zdioxRTqgGQrDZxQyNzyBJPXZF0+oxITJAbj7oNC5JwgDMUJaM5GqlGCWc//KCIrI+aclEe4IA0uzv7cuj6GCdaJONpi13O544vbtIHBF+A+JeDFUQNy61Gki3rtyQ4aUywn6ru314/dkGiP8Iwjo0J/2Txs49ZkwEl4mx+iYUUO55I6pJzU4P+7RRs+DXZkyKUYZqVWrPF4I94m4Wx1tXeE74o9GuX977yvJ/jkdak8+AmoHVjI15V+WwBdARFV2IPirJgVMdsg1Pez2VNHqa7EHWdTkl3XTcyjG9BiueWFvQfXI8aWSkuuRmqi/HUuzqyvLJfNfs0txMqldYYflWB1BS31WkuPJGGwXUCpjiQSktkuBMWwHjSkQxeehqw1Kgz0Trzm7QbtgxiEPDVmWCNCAeCfROTphd1ZNOhzLy6XfJyG6Xgd5MCAZw4xie0Sj5AnY1/akDgNS9YFl3Y06vd6FAsg2gVQJtzG7LVq1OH2frbXNHWH/NY89NNZ4QUSJqL2yEcGADbT38X0bGdukqYlSoliKOcsSTuqhcaemUeYLLoI8+MZor2RxXTRThF1LrHfqf/5LcLAjdl4EERgUysYS2geE+yFdasU91UgUDsc2cSQ1ZoT9+uLOwdgAmifwQqF028INc2IQEDfTmUw3eZxvz7Ud1z3xc1PQfeCvfKsB9jOhRj7rFyb9XcDWLcYj0bByosychMezMLVkFiYcdBBQtvI6K0KRuOZQH2kBsYHJaXTkup8F0eIhO1/GcIwWKpr2mouB7g5TUDJNvORXPXa/mU8bh27TAZYBe2sKx4NSv5OjnHIWD2RuysCzBlUfeNXhDd2jxnHoUlheJ3jBApzURy0fwm2FwwsSU0caQGl0Kv8hopRQE211NnvtLRsmCNrhhpEDoNiZEzD2QdJWKbRRWnaFedXHAELSN0t0bfsCsMf0ktfBoXBoNA+nZN9+pSlmuzspFevmsqqcMllzzvkyXrzoA+Ryo1ePXpdGOoJvhyru+EBRsmOp7MXZ0vNUMUqHLUoKglg1p73sWeZmPc+KAw0pE2zIsFFE5H4192KwDvDxdxEYoDBDNZjbg2bmADTeUKK57IPD4fTYF4c6EnXx/teYMORBDtIhPJneiZny7Nv/zG+YmekIKCoxr6kauE2bZtBLufetNG0BtBY7f+/ImUypMBvdWu/Q7vTMRzw5aQGZWuc1V0HEsItFYMIBnoKGZ0xcarba/TYZq50kCaflFysYjA4EDKHqGdpYWdKYmm+a7TADmW35yfnOYpZYrkpVEtiqF0EujI00aeplNs2k+qyFZNeE3CDPL9P6b4PQ/kataHkVpLSEVGK7EX6rAa7IVNrvZtFvOA6okKvBgMtFDAGZOx88MeBcJ8AR3AgUUeIznAN6tjCUipGDZONm1FjWJp4A3QIzSaIOmZ7DvF/ysYYbM/fFDOV0jntAjRdapxJxL0eThpEhKOjCDDq2ks+3GrwxqIFKLe1WdOzII8XIOPGnwy6LKXVfpSDOTEfaRsGujhpS4hBIsMOqHbl16PJxc4EkaVu9wpEYlF/84NSv5Zum4drMfp9yXbzzAOJqqS4YkI4cBrFrC7bMPiCfgI3nNZAqkk3QOZqR+yyqx+nDQKBBBZ7QKrfGMCL+XpqFaBJU0wpkBdAhbR4hJsmT5aynlvkouoxm/NjD5oe6BzVIO9uktM+/5dEC5P7vZvarmuO/lKXz4sBabVPIATuKTrwbJP8XUkdM6uEctHKXICUJGjaZIWRbZp8czquQYfY6ynBUCfIU+gG6wqSIBmYIm9pZpXdaL121V7q0VjDjmQnXvMe7ysoEZnZL15B0SpxS1jjd83uNIOKZwu5MPzg2NhOx3xMOPYwEn2CUzbSrwAs5OAtrz3GAaUkJOU74XwjaYUmGJdZBS1NJVkGYrToINLKDjxcuIlyfVsKQSG/G4DyiO2SlQvJ0d0Ot1uOG5IFSAkq+PRVMgVMDvOIJMdqjeCFKUGRWBW9wigYvcbU7CQL/7meF2KZAaWl+4y9uhowAX7elogAvItAAxo2+SFxGRsHGEW9BnhlTuWigYxRcnVUBRQHV41LV+Fr5CJYV7sHfeywswx4XMtUx6EkBhR+q8AXXUA8uPJ73Pb49i9KG9fOljvXeyFj9ixgbo6CcbAJ7WHWqKHy/h+YjBwp6VcN7M89FGzQ04qbrQtgrOFybg3gQRTYG5xn73ArkfQWjCJROwy3J38Dx/D7jOa6BBNsitEw1wGq780EEioOeD+ZGp2J66ADiVGMayiHYucMk8nTK2zzT9CnEraAk95kQjy4k0GRElLL5YAKLQErJ5rp1eay9O4Fb6yJGm9U4FaMwPGxtKD6odIIHKoWnhKo1U8KIpFC+MVn59ZXmc7ZTBZfsg6FQ8W10YfTr4u0nYrpHZbZ1jXiLmooF0cOm0+mPnJBXQtepc7n0BqOipNCqI6yyloTeRShNKH04FIo0gcMk0H/xThyN4pPAWjDDkEp3lNNPRNVfpMI44CWRlRgViP64eK0JSRp0WUvCWYumlW/c58Vcz/yMwVcW5oYb9+26TEhwvbxiNg48hl1VI1UXTU//Eta+BMKnGUivctfL5wINDD0giQL1ipt6U7C9cd4+lgqY2lMUZ02Uv6Prs+ZEZer7ZfWBXVghlfOOrClwsoOFKzWEfz6RZu1eCs+K8fLvkts5+BX0gyrFYve0C3qHrn5U/Oh6D/CihmWIrY7HUZRhJaxde+tldu6adYJ+LeXupQw0XExC36RETdNFxcq9glMu4cNQSX9cqR/GQYp+IxUkIcNGWVU7ZtGa6P3XAyodRt0XeS3Tp01AnCh0ZbUh4VrSZeV9RWfSoWyxnY3hzcZ30G/InDq4wxRrEejreBxnhIQbkxenxkaxl+k7eLUQkUR6vKJ2iDFNGX3WmVA1yaOH+mvhBd+sE6vacQzFobwY5BqEAFmejwW5ne7HtVNolOUgJc8CsUxmc/LBi8N5mu9VsIA5HyErnS6zeCz7VLI9+n/hbT6hTokMXTVyXJRKSG2hd2labXTbtmK4fNH3IZBPreSA4FMeVouVN3zG5x9CiGpLw/3pceo4qGqp+rVp+z+7yQ98oEf+nyH4F3+J9IheDBa94Wi63zJbLBCIZm7P0asHGpIJt3PzE3m0S4YIWyXBCVXGikj8MudDPB/6Nm2v4IxJ5gU0ii0guy5SUHqGUYzTP0jIJU5E82RHUXtX4lDdrihBLdP1YaG1AGUC12rQKuIaGvCpMjZC9bWSCYnjDlvpWbkdXMTNeBHLKiuoozMGIvkczmP0aRJSJ8PYnLCVNhKHXBNckH79e8Z8Kc2wUej4sQZoH8qDRGkg86maW/ZQWGNnLcXmq3FlXM6ssR/3P6E/bHMvm6HLrv1yRixit25JsH3/IOr2UV4BWJhxXW5BJ6Xdr07n9kF3ZNAk6/Xpc5MSFmYJ2R7bdL8Kk7q1OU9Elg/tCxJ8giT27wSTySF0GOxg4PbYJdi/Nyia9Nn89CGDulfJemm1aiEr/eleGSN+5MRrVJ4K6lgyTTIW3i9cQ0dAi6FHt0YMbH3wDSAtGLSAccezzxHitt1QdhW36CQgPcA8vIIBh3/JNjf/Obmc2yzpk8edSlS4lVdwgW5vzbYEyFoF4GCBBby1keVNueHAH+evi+H7oOVfS3XuPQSNTXOONAbzJeSb5stwdQHl1ZjrGoE49I8+A9j3t+ahhQj74FCSWpZrj7wRSFJJnnwi1T9HL5qrCFW/JZq6P62XkMWTb+u4lGpKfmmwiJWx178GOG7KbrZGqyWwmuyKWPkNswkZ1q8uptUlviIi+AXh2bOOTOLsrtNkfqbQJeh24reebkINLkjut5r4d9GR/r8CBa9SU0UQhsnZp5cP+RqWCixRm7i4YRFbtZ4EAkhtNa6jHb6gPYQv7MKqkPLRmX3dFsK8XsRLVZ6IEVrCbmNDc8o5mqsogjAQfoC9Bc7R6gfw03m+lQpv6kTfhxscDIX6s0w+fBxtkhjXAXr10UouWCx3C/p/FYwJRS/AXRKkjOb5CLmK4XRe0+xeDDwVkJPZau52bzLEDHCqV0f44pPgKOkYKgTZJ33fmk3Tu8SdxJ02SHM8Fem5SMsWqRyi2F1ynfRJszcFKykdWlNqgDA/L9lKYBmc7Zu/q9ii1FPF47VJkqhirUob53zoiJtVVRVwMR34gV9iqcBaHbRu9kkvqk3yMpfRFG49pKKjIiq7h/VpRwPGTHoY4cg05X5028iHsLvUW/uz+kjPyIEhhcKUwCkJAwbR9pIEGOn8z6svAO8i89sJ3dL5qDWFYbS+HGPRMxYwJItFQN86YESeJQhn2urGiLRffQeLptDl8dAgb+Tp47UQPxWOw17OeChLN1WnzlkPL1T5O+O3Menpn4C3IY5LEepHpnPeZHbvuWfeVtPlkH4LZjPbBrkJT3NoRJzBt86CO0Xq59oQ+8dsm0ymRcmQyn8w71mhmcuEI5byuF+C88VPYly2sEzjlzAQ3vdn/1+Hzguw6qFNNbqenhZGbdiG6RwZaTG7jTA2X9RdXjDN9yj1uQpyO4Lx8KRAcZcbZMafp4wPOd5MdXoFY52V1A8M9hi3sso93+uprE0qYNMjkE22CvK4HuUxqN7oIz5pWuETq1lQAjqlSlqdD2Rnr/ggp/TVkQYjn9lMfYelk2sH5HPdopYo7MHwlV1or9Bxf+QCyLzm92vzG2wjiIjC/ZHEJzeroJl6bdFPTpZho5MV2U86fLQqxNlGIMqCGy+9WYhJ8ob1r0+Whxde9L2PdysETv97O+xVw+VNN1TZSQN5I6l9m5Ip6pLIqLm4a1B1ffH6gHyqT9p82NOjntRWGIofO3bJz5GhkvSWbsXueTAMaJDou99kGLqDlhwBZNEQ4mKPuDvVwSK4WmLluHyhA97pZiVe8g+JxmnJF8IkV/tCs4Jq/HgOoAEGR9tCDsDbDmi3OviUQpG5D8XmKcSAUaFLRXb2lmJTNYdhtYyfjBYZQmN5qT5CNuaD3BVnlkCk7bsMW3AtXkNMMTuW4HjUERSJnVQ0vsBGa1wo3Qh7115XGeTF3NTz8w0440AgU7c3bSXO/KMINaIWXd0oLpoq/0/QJxCQSJ9XnYy1W7TYLBJpHsVWD1ahsA7FjNvRd6mxCiHsm8g6Z0pnzqIpF1dHUtP2ITU5Z1hZHbu+L3BEEStBbL9XYvGfEakv1bmf+bOZGnoiuHEdlBnaChxYKNzB23b8sw8YyT7Ajxfk49eJIAvdbVkdFCe2J0gMefhQ0bIZxhx3fzMIysQNiN8PgOUKxOMur10LduigREDRMZyP4oGWrP1GFY4t6groASsZ421os48wAdnrbovNhLt7ScNULkwZ5AIZJTrbaKYTLjA1oJ3sIuN/aYocm/9uoQHEIlacF1s/TM1fLcPTL38O9fOsjMEIwoPKfvt7opuI9G2Hf/PR4aCLDQ7wNmIdEuXJ/QNL72k5q4NejAldPfe3UVVqzkys8YZ/jYOGOp6c+YzRCrCuq0M11y7TiN6qk7YXRMn/gukxrEimbMQjr3jwRM6dKVZ4RUfWQr8noPXLJq6yh5R3EH1IVOHESst/LItbG2D2vRsZRkAObzvQAAD3mb3/G4NzopI0FAiHfbpq0X72adg6SRj+8OHMShtFxxLZlf/nLgRLbClwl5WmaYSs+yEjkq48tY7Z2bE0N91mJwt+ua0NlRJIDh0HikF4UvSVorFj2YVu9YeS5tfvlVjPSoNu/Zu6dEUfBOT555hahBdN3Sa5Xuj2Rvau1lQNIaC944y0RWj9UiNDskAK1WoL+EfXcC6IbBXFRyVfX/WKXxPAwUyIAGW8ggZ08hcijKTt1YKnUO6QPvcrmDVAb0FCLIXn5id4fD/Jx4tw/gbXs7WF9b2RgXtPhLBG9vF5FEkdHAKrQHZAJC/HWvk7nvzzDzIXZlfFTJoC3JpGgLPBY7SQTjGlUvG577yNutZ1hTfs9/1nkSXK9zzKLRZ3VODeKUovJe0WCq1zVMYxCJMenmNzPIU2S8TA4E7wWmbNkxq9rI2dd6v0VpcAPVMxnDsvWTWFayyqvKZO7Z08a62i/oH2/jxf8rpmfO64in3FLiL1GX8IGtVE9M23yGsIqJbxDTy+LtaMWDaPqkymb5VrQdzOvqldeU0SUi6IirG8UZ3jcpRbwHa1C0Dww9G/SFX3gPvTJQE+kyz+g1BeMILKKO+olcHzctOWgzxYHnOD7dpCRtuZEXACjgqesZMasoPgnuDC4nUviAAxDc5pngjoAITIkvhKwg5d608pdrZcA+qn5TMT6Uo/QzBaOxBCLTJX3Mgk85rMfsnWx86oLxf7p2PX5ONqieTa/qM3tPw4ZXvlAp83NSD8F7+ZgctK1TpoYwtiU2h02HCGioH5tkVCqNVTMH5p00sRy2JU1qyDBP2CII/Dg4WDsIl+zgeX7589srx6YORRQMBfKbodbB743Tl4WLKOEnwWUVBsm94SOlCracU72MSyj068wdpYjyz1FwC2bjQnxnB6Mp/pZ+yyZXtguEaYB+kqhjQ6UUmwSFazOb+rhYjLaoiM+aN9/8KKn0zaCTFpN9eKwWy7/u4EHzO46TdFSNjMfn2iPSJwDPCFHc0I1+vjdAZw5ZjqR/uzi9Zn20oAa5JnLEk/EA3VRWE7J/XrupfFJPtCUuqHPpnlL7ISJtRpSVcB8qsZCm2QEkWoROtCKKxUh3yEcMbWYJwk6DlEBG0bZP6eg06FL3v6RPb7odGuwm7FN8fG4woqtB8e7M5klPpo97GoObNwt+ludTAmxyC5hmcFx+dIvEZKI6igFKHqLH01iY1o7903VzG9QGetyVx5RNmBYUU+zIuSva/yIcECUi4pRmE3VkF2avqulQEUY4yZ/wmNboBzPmAPey3+dSYtBZUjeWWT0pPwCz4Vozxp9xeClIU60qvEFMQCaPvPaA70WlOP9f/ey39macvpGCVa+zfa8gO44wbxpJUlC8GN/pRMTQtzY8Z8/hiNrU+Zq64ZfFGIkdj7m7abcK1EBtws1X4J/hnqvasPvvDSDYWN+QcQVGMqXalkDtTad5rYY0TIR1Eqox3czwPMjKPvF5sFv17Thujr1IZ1Ytl4VX1J0vjXKmLY4lmXipRAro0qVGEcXxEVMMEl54jQMd4J7RjgomU0j1ptjyxY+cLiSyXPfiEcIS2lWDK3ISAy6UZ3Hb5vnPncA94411jcy75ay6B6DSTzK6UTCZR9uDANtPBrvIDgjsfarMiwoax2OlLxaSoYn4iRgkpEGqEkwox5tyI8aKkLlfZ12lO11TxsqRMY89j5JaO55XfPJPDL1LGSnC88Re9Ai+Nu5bZjtwRrvFITUFHPR4ZmxGslQMecgbZO7nHk32qHxYkdvWpup07ojcMCaVrpFAyFZJJbNvBpZfdf39Hdo2kPtT7v0/f8R/B5Nz4f1t9/3zNM/7n6SUHfcWk5dfQFJvcJMgPolGCpOFb/WC0FGWU2asuQyT+rm88ZKZ78Cei/CAh939CH0JYbpZIPtxc2ufXqjS3pHH9lnWK4iJ7OjR/EESpCo2R3MYKyE7rHfhTvWho4cL1QdN4jFTyR6syMwFm124TVDDRXMNveI1Dp/ntwdz8k8kxw7iFSx6+Yx6O+1LzMVrN0BBzziZi9kneZSzgollBnVwBh6oSOPHXrglrOj+QmR/AESrhDpKrWT+8/AiMDxS/5wwRNuGQPLlJ9ovomhJWn8sMLVItQ8N/7IXvtD8kdOoHaw+vBSbFImQsv/OCAIui99E+YSIOMlMvBXkAt+NAZK8wB9Jf8CPtB+TOUOR+z71d/AFXpPBT6+A5FLjxMjLIEoJzrQfquvxEIi+WoUzGR1IzQFNvbYOnxb2PyQ0kGdyXKzW2axQL8lNAXPk6NEjqrRD1oZtKLlFoofrXw0dCNWASHzy+7PSzOUJ3XtaPZsxLDjr+o41fKuKWNmjiZtfkOzItvlV2MDGSheGF0ma04qE3TUEfqJMrXFm7DpK+27DSvCUVf7rbNoljPhha5W7KBqVq0ShUSTbRmuqPtQreVWH4JET5yMhuqMoSd4r/N8sDmeQiQQvi1tcZv7Moc7dT5X5AtCD6kNEGZOzVcNYlpX4AbTsLgSYYliiPyVoniuYYySxsBy5cgb3pD+EK0Gpb0wJg031dPgaL8JZt6sIvzNPEHfVPOjXmaXj4bd4voXzpZ5GApMhILgMbCEWZ2zwgdeQgjNHLbPIt+KqxRwWPLTN6HwZ0Ouijj4UF+Sg0Au8XuIKW0WxlexdrFrDcZJ8Shauat3X0XmHygqgL1nAu2hrJFb4wZXkcS+i36KMyU1yFvYv23bQUJi/3yQpqr/naUOoiEWOxckyq/gq43dFou1DVDaYMZK9tho7+IXXokBCs5GRfOcBK7g3A+jXQ39K4YA8PBRW4m5+yR0ZAxWJncjRVbITvIAPHYRt1EJ3YLiUbqIvoKHtzHKtUy1ddRUQ0AUO41vonZDUOW+mrszw+SW/6Q/IUgNpcXFjkM7F4CSSQ2ExZg85otsMs7kqsQD4OxYeBNDcSpifjMoLb7GEbGWTwasVObmB/bfPcUlq0wYhXCYEDWRW02TP5bBrYsKTGWjnWDDJ1F7zWai0zW/2XsCuvBQjPFcTYaQX3tSXRSm8hsAoDdjArK/OFp6vcWYOE7lizP0Yc+8p16i7/NiXIiiQTp7c7Xus925VEtlKAjUdFhyaiLT7VxDagprMFwix4wZ05u0qj7cDWFd0W9OYHIu3JbJKMXRJ1aYNovugg+QqRN7fNHSi26VSgBpn+JfMuPo3aeqPWik/wI5Rz3BWarPQX4i5+dM0npwVOsX+KsOhC7vDg+OJsz4Q5zlnIeflUWL6QYMbf9WDfLmosLF4Qev3mJiOuHjoor/dMeBpA9iKDkMjYBNbRo414HCxjsHrB4EXNbHzNMDHCLuNBG6Sf+J4MZ/ElVsDSLxjIiGsTPhw8BPjxbfQtskj+dyNMKOOcUYIRBEIqbazz3lmjlRQhplxq673VklMMY6597vu+d89ec/zq7Mi4gQvh87ehYbpOuZEXj5g/Q7S7BFDAAB9DzG35SC853xtWVcnZQoH54jeOqYLR9NDuwxsVthTV7V99n/B7HSbAytbEyVTz/5NhJ8gGIjG0E5j3griULUd5Rg7tQR+90hJgNQKQH2btbSfPcaTOfIexc1db1BxUOhM1vWCpLaYuKr3FdNTt/T3PWCpEUWDKEtzYrjpzlL/wri3MITKsFvtF8QVV/NhVo97aKIBgdliNc10dWdXVDpVtsNn+2UIolrgqdWA4EY8so0YvB4a+aLzMXiMAuOHQrXY0tr+CL10JbvZzgjJJuB1cRkdT7DUqTvnswVUp5kkUSFVtIIFYK05+tQxT6992HHNWVhWxUsD1PkceIrlXuUVRogwmfdhyrf6zzaL8+c0L7GXMZOteAhAVQVwdJh+7nrX7x4LaIIfz2F2v7Dg/uDfz2Fa+4gFm2zHAor8UqimJG3VTJtZEoFXhnDYXvxMJFc6ku2bhbCxzij2z5UNuK0jmp1mnvkVNUfR+SEmj1Lr94Lym75PO7Fs0MIr3GdsWXRXSfgLTVY0FLqba97u1In8NAcY7IC6TjWLigwKEIm43NxTdaVTv9mcKkzuzBkKd8x/xt1p/9BbP7Wyb4bpo1K1gnOpbLvKz58pWl3B55RJ/Z5mRDLPtNQg14jdOEs9+h/V5UVpwrAI8kGbX8KPVPDIMfIqKDjJD9UyDOPhjZ3vFAyecwyq4akUE9mDOtJEK1hpDyi6Ae87sWAClXGTiwPwN7PXWwjxaR79ArHRIPeYKTunVW24sPr/3HPz2IwH8oKH4OlWEmt4BLM6W5g4kMcYbLwj2usodD1088stZA7VOsUSpEVl4w7NMb1EUHMRxAxLF0CIV+0L3iZb+ekB1vSDSFjAZ3hfLJf7gFaXrOKn+mhR+rWw/eTXIcAgl4HvFuBg1LOmOAwJH3eoVEjjwheKA4icbrQCmvAtpQ0mXG0agYp5mj4Rb6mdQ+RV4QBPbxMqh9C7o8nP0Wko2ocnCHeRGhN1XVyT2b9ACsL+6ylUy+yC3QEnaKRIJK91YtaoSrcWZMMwxuM0E9J68Z+YyjA0g8p1PfHAAIROy6Sa04VXOuT6A351FOWhKfTGsFJ3RTJGWYPoLk5FVK4OaYR9hkJvezwF9vQN1126r6isMGXWTqFW+3HL3I/jurlIdDWIVvYY+s6yq7lrFSPAGRdnU7PVwY/SvWbZGpXzy3BQ2LmAJlrONUsZs4oGkly0V267xbD5KMY8woNNsmWG1VVgLCra8aQBBcI4DP2BlNwxhiCtHlaz6OWFoCW0vMR3ErrG7JyMjTSCnvRcsEHgmPnwA6iNpJ2DrFb4gLlhKJyZGaWkA97H6FFdwEcLT6DRQQL++fOkVC4cYGW1TG/3iK5dShRSuiBulmihqgjR45Vi03o2RbQbP3sxt90VxQ6vzdlGfkXmmKmjOi080JSHkLntjvsBJnv7gKscOaTOkEaRQqAnCA4HWtB4XnMtOhpRmH2FH8tTXrIjAGNWEmudQLCkcVlGTQ965Kh0H6ixXbgImQP6b42B49sO5C8pc7iRlgyvSYvcnH9FgQ3azLbQG2cUW96SDojTQStxkOJyOuDGTHAnnWkz29aEwN9FT8EJ4yhXOg+jLTrCPKeEoJ9a7lDXOjEr8AgX4BmnMQ668oW0zYPyQiVMPxKRHtpfnEEyaKhdzNVThlxxDQNdrHeZiUFb6NoY2KwvSb7BnRcpJy+/g/zAYx3fYSN5QEaVD2Y1VsNWxB0BSO12MRsRY8JLfAezRMz5lURuLUnG1ToKk6Q30FughqWN6gBNcFxP/nY/iv+iaUQOa+2Nuym46wtI/DvSfzSp1jEi4SdYBE7YhTiVV5cX9gwboVDMVgZp5YBQlHOQvaDNfcCoCJuYhf5kz5kwiIKPjzgpcRJHPbOhJajeoeRL53cuMahhV8Z7IRr6M4hW0JzT7mzaMUzQpm866zwM7Cs07fJYXuWvjAMkbe5O6V4bu71sOG6JQ4oL8zIeXHheFVavzxmlIyBkgc9IZlEDplMPr8xlcyss4pVUdwK1e7CK2kTsSdq7g5SHRAl3pYUB9Ko4fsh4qleOyJv1z3KFSTSvwEcRO/Ew8ozEDYZSqpfoVW9uhJfYrNAXR0Z3VmeoAD+rVWtwP/13sE/3ICX3HhDG3CMc476dEEC0K3umSAD4j+ZQLVdFOsWL2C1TH5+4KiSWH+lMibo+B55hR3Gq40G1n25sGcN0mEcoU2wN9FCVyQLBhYOu9aHVLWjEKx2JIUZi5ySoHUAI9b8hGzaLMxCZDMLhv8MkcpTqEwz9KFDpCpqQhVmsGQN8m24wyB82FAKNmjgfKRsXRmsSESovAwXjBIoMKSG51p6Um8b3i7GISs7kjTq/PZoioCfJzfKdJTN0Q45kQEQuh9H88M3yEs3DbtRTKALraM0YC8laiMiOOe6ADmTcCiREeAWZelBaEXRaSuj2lx0xHaRYqF65O0Lo5OCFU18A8cMDE4MLYm9w2QSr9NgQAIcRxZsNpA7UJR0e71JL+VU+ISWFk5I97lra8uGg7GlQYhGd4Gc6rxsLFRiIeGO4abP4S4ekQ1fiqDCy87GZHd52fn5aaDGuvOmIofrzpVwMvtbreZ/855OaXTRcNiNE0wzGZSxbjg26v8ko8L537v/XCCWP2MFaArJpvnkep0pA+O86MWjRAZPQRfznZiSIaTppy6m3p6HrNSsY7fDtz7Cl4V/DJAjQDoyiL2uwf1UHVd2AIrzBUSlJaTj4k6NL97a/GqhWKU9RUmjnYKpm2r+JYUcrkCuZKvcYvrg8pDoUKQywY9GDWg03DUFSirlUXBS5SWn/KAntnf0IdHGL/7mwXqDG+LZYjbEdQmqUqq4y54TNmWUP7IgcAw5816YBzwiNIJiE9M4lPCzeI/FGBeYy3p6IAmH4AjXXmvQ4Iy0Y82NTobcAggT2Cdqz6Mx4TdGoq9fn2etrWKUNFyatAHydQTVUQ2S5OWVUlugcNvoUrlA8cJJz9MqOa/W3iVno4zDHfE7zhoY5f5lRTVZDhrQbR8LS4eRLz8iPMyBL6o4PiLlp89FjdokQLaSBmKHUwWp0na5fE3v9zny2YcDXG/jfI9sctulHRbdkI5a4GOPJx4oAJQzVZ/yYAado8KNZUdEFs9ZPiBsausotXMNebEgr0dyopuqfScFJ3ODNPHgclACPdccwv0YJGQdsN2lhoV4HVGBxcEUeUX/alr4nqpcc1CCR3vR7g40zteQg/JvWmFlUE4mAiTpHlYGrB7w+U2KdSwQz2QJKBe/5eiixWipmfP15AFWrK8Sh1GBBYLgzki1wTMhGQmagXqJ2+FuqJ8f0XzXCVJFHQdMAw8xco11HhM347alrAu+wmX3pDFABOvkC+WPX0Uhg1Z5MVHKNROxaR84YV3s12UcM+70cJ460SzEaKLyh472vOMD3XnaK7zxZcXlWqenEvcjmgGNR2OKbI1s8U+iwiW+HotHalp3e1MGDy6BMVIvajnAzkFHbeVsgjmJUkrP9OAwnEHYXVBqYx3q7LvXjoVR0mY8h+ZaOnh053pdsGkmbqhyryN01eVHySr+CkDYkSMeZ1xjPNVM+gVLTDKu2VGsMUJqWO4TwPDP0VOg2/8ITbAUaMGb4LjL7L+Pi11lEVMXTYIlAZ/QHmTENjyx3kDkBdfcvvQt6tKk6jYFM4EG5UXDTaF5+1ZjRz6W7MdJPC+wTkbDUim4p5QQH3b9kGk2Bkilyeur8Bc20wm5uJSBO95GfYDI1EZipoRaH7uVveneqz43tlTZGRQ4a7CNmMHgXyOQQOL6WQkgMUTQDT8vh21aSdz7ERiZT1jK9F+v6wgFvuEmGngSvIUR2CJkc5tx1QygfZnAruONobB1idCLB1FCfO7N1ZdRocT8/Wye+EnDiO9pzqIpnLDl4bkaRKW+ekBVwHn46Shw1X0tclt/0ROijuUB4kIInrVJU4buWf4YITJtjOJ6iKdr1u+flgQeFH70GxKjhdgt/MrwfB4K/sXczQ+9zYcrD4dhY6qZhZ010rrxggWA8JaZyg2pYij8ieYEg1aZJkZK9O1Re7sB0iouf60rK0Gd+AYlp7soqCBCDGwfKeUQhCBn0E0o0GS6PdmjLi0TtCYZeqazqwN+yNINIA8Lk3iPDnWUiIPLGNcHmZDxfeK0iAdxm/T7LnN+gemRL61hHIc0NCAZaiYJR+OHnLWSe8sLrK905B5eEJHNlWq4RmEXIaFTmo49f8w61+NwfEUyuJAwVqZCLFcyHBKAcIVj3sNzfEOXzVKIndxHw+AR93owhbCxUZf6Gs8cz6/1VdrFEPrv330+9s6BtMVPJ3zl/Uf9rUi0Z/opexfdL3ykF76e999GPfVv8fJv/Y/+/5hEMon1tqNFyVRevV9y9/uIvsG3dbB8GRRrgaEXfhx+2xeOFt+cEn3RZanNxdEe2+B6MHpNbrRE53PlDifPvFcp4kO78ILR0T4xyW/WGPyBsqGdoA7zJJCu1TKbGfhnqgnRbxbB2B3UZoeQ2bz2sTVnUwokTcTU21RxN1PYPS3Sar7T0eRIsyCNowr9amwoMU/od9s2APtiKNL6ENOlyKADstAEWKA+sdKDhrJ6BOhRJmZ+QJbAaZ3/5Fq0/lumCgEzGEbu3yi0Y4I4EgVAjqxh4HbuQn0GrRhOWyAfsglQJAVL1y/6yezS2k8RE2MstJLh92NOB3GCYgFXznF4d25qiP4ZCyI4RYGesut6FXK6GwPpKK8WHEkhYui0AyEmr5Ml3uBFtPFdnioI8RiCooa7Z1G1WuyIi3nSNglutc+xY8BkeW3JJXPK6jd2VIMpaSxpVtFq+R+ySK9J6WG5Qvt+C+QH1hyYUOVK7857nFmyDBYgZ/o+AnibzNVqyYCJQvyDXDTK+iXdkA71bY7TL3bvuLxLBQ8kbTvTEY9aqkQ3+MiLWbEgjLzOH+lXgco1ERgzd80rDCymlpaRQbOYnKG/ODoFl46lzT0cjM5FYVvv0qLUbD5lyJtMUaC1pFlTkNONx6lliaX9o0i/1vws5bNKn5OuENQEKmLlcP4o2ZmJjD4zzd3Fk32uQ4uRWkPSUqb4LBe3EXHdORNB2BWsws5daRnMfNVX7isPSb1hMQdAJi1/qmDMfRUlCU74pmnzjbXfL8PVG8NsW6IQM2Ne23iCPIpryJjYbVnm5hCvKpMa7HLViNiNc+xTfDIaKm3jctViD8A1M9YPJNk003VVr4Zo2MuGW8vil8SLaGpPXqG7I4DLdtl8a4Rbx1Lt4w5Huqaa1XzZBtj208EJVGcmKYEuaeN27zT9EE6a09JerXdEbpaNgNqYJdhP1NdqiPKsbDRUi86XvvNC7rME5mrSQtrzAZVndtSjCMqd8BmaeGR4l4YFULGRBeXIV9Y4yxLFdyoUNpiy2IhePSWzBofYPP0eIa2q5JP4j9G8at/AqoSsLAUuRXtvgsqX/zYwsE+of6oSDbUOo4RMJw+DOUTJq+hnqwKim9Yy/napyZNTc2rCq6V9jHtJbxGPDwlzWj/Sk3zF/BHOlT/fSjSq7FqlPI1q6J+ru8Aku008SFINXZfOfnZNOvGPMtEmn2gLPt+H4QLA+/SYe4j398auzhKIp2Pok3mPC5q1IN1HgR+mnEfc4NeeHYwd2/kpszR3cBn7ni9NbIqhtSWFW8xbUJuUPVOeeXu3j0IGZmFNiwaNZ6rH4/zQ2ODz6tFxRLsUYZu1bfd1uIvfQDt4YD/efKYv8VF8bHGDgK22w2Wqwpi43vNCOXFJZCGMqWiPbL8mil6tsmOTXAWCyMCw73e2rADZj2IK6rqksM3EXF2cbLb4vjB14wa/yXK5vwU+05MzERJ5nXsXsW21o7M+gO0js2OyKciP5uF2iXyb2DiptwQeHeqygkrNsqVCSlldxBMpwHi1vfc8RKpP/4L3Lmpq6DZcvhDDfxTCE3splacTcOtXdK2g303dIWBVe2wD/Gvja1cClFQ67gw0t1ZUttsUgQ1Veky8oOpS6ksYEc4bqseCbZy766SvL3FodmnahlWJRgVCNjPxhL/fk2wyvlKhITH/VQCipOI0dNcRa5B1M5HmOBjTLeZQJy237e2mobwmDyJNHePhdDmiknvLKaDbShL+Is1XTCJuLQd2wmdJL7+mKvs294whXQD+vtd88KKk0DXP8B1Xu9J+xo69VOuFgexgTrcvI6SyltuLix9OPuE6/iRJYoBMEXxU4shQMf4Fjqwf1PtnJ/wWSZd29rhZjRmTGgiGTAUQqRz+nCdjeMfYhsBD5Lv60KILWEvNEHfmsDs2L0A252351eUoYxAysVaCJVLdH9QFWAmqJDCODUcdoo12+gd6bW2boY0pBVHWL6LQDK5bYWh1V8vFvi0cRpfwv7cJiMX3AZNJuTddHehTIdU0YQ/sQ1dLoF2xQPcCuHKiuCWOY30DHe1OwcClLAhqAKyqlnIbH/8u9ScJpcS4kgp6HKDUdiOgRaRGSiUCRBjzI5gSksMZKqy7Sd51aeg0tgJ+x0TH9YH2Mgsap9N7ENZdEB0bey2DMTrBA1hn56SErNHf3tKtqyL9b6yXEP97/rc+jgD2N1LNUH6RM9AzP3kSipr06RkKOolR7HO768jjWiH1X92jA7dkg7gcNcjqsZCgfqWw0tPXdLg20cF6vnQypg7gLtkazrHAodyYfENPQZsdfnjMZiNu4nJO97D1/sQE+3vNFzrSDOKw+keLECYf7RJwVHeP/j79833oZ0egonYB2FlFE5qj02B/LVOMJQlsB8uNg3Leg4qtZwntsOSNidR0abbZmAK4sCzvt8Yiuz2yrNCJoH5O8XvX/vLeR/BBYTWj0sOPYM/jyxRd5+/JziKAABaPcw/34UA3aj/gLZxZgRCWN6m4m3demanNgsx0P237/Q+Ew5VYnJPkyCY0cIVHoFn2Ay/e7U4P19APbPFXEHX94N6KhEMPG7iwB3+I+O1jd5n6VSgHegxgaSawO6iQCYFgDsPSMsNOcUj4q3sF6KzGaH/0u5PQoAj/8zq6Uc9MoNrGqhYeb2jQo0WlGlXjxtanZLS24/OIN5Gx/2g684BPDQpwlqnkFcxpmP/osnOXrFuu4PqifouQH0eF5qCkvITQbJw/Zvy5mAHWC9oU+cTiYhJmSfKsCyt1cGVxisKu+NymEQIAyaCgud/V09qT3nk/9s/SWsYtha7yNpzBIMM40rCSGaJ9u6lEkl00vXBiEt7p9P5IBCiavynEOv7FgLqPdeqxRiCwuFVMolSIUBcoyfUC2e2FJSAUgYdVGFf0b0Kn2EZlK97yyxrT2MVgvtRikfdaAW8RwEEfN+B7/eK8bBdp7URpbqn1xcrC6d2UjdsKbzCjBFqkKkoZt7Mrhg6YagE7spkqj0jOrWM+UGQ0MUlG2evP1uE1p2xSv4dMK0dna6ENcNUF+xkaJ7B764NdxLCpuvhblltVRAf7vK5qPttJ/9RYFUUSGcLdibnz6mf7WkPO3MkUUhR2mAOuGv8IWw5XG1ZvoVMnjSAZe6T7WYA99GENxoHkMiKxHlCuK5Gd0INrISImHQrQmv6F4mqU/TTQ8nHMDzCRivKySQ8dqkpQgnUMnwIkaAuc6/FGq1hw3b2Sba398BhUwUZSAIO8XZvnuLdY2n6hOXws+gq9BHUKcKFA6kz6FDnpxLPICa3qGhnc97bo1FT/XJk48LrkHJ2CAtBv0RtN97N21plfpXHvZ8gMJb7Zc4cfI6MbPwsW7AilCSXMFIEUEmir8XLEklA0ztYbGpTTGqttp5hpFTTIqUyaAIqvMT9A/x+Ji5ejA4Bhxb/cl1pUdOD6epd3yilIdO6j297xInoiBPuEDW2/UfslDyhGkQs7Wy253bVnlT+SWg89zYIK/9KXFl5fe+jow2rd5FXv8zDPrmfMXiUPt9QBO/iK4QGbX5j/7Rx1c1vzsY8ONbP3lVIaPrhL4+1QrECTN3nyKavGG0gBBtHvTKhGoBHgMXHStFowN+HKrPriYu+OZ05Frn8okQrPaaxoKP1ULCS/cmKFN3gcH7HQlVjraCeQmtjg1pSQxeuqXiSKgLpxc/1OiZsU4+n4lz4hpahGyWBURLi4642n1gn9qz9bIsaCeEPJ0uJmenMWp2tJmIwLQ6VSgDYErOeBCfSj9P4G/vI7oIF+l/n5fp956QgxGvur77ynawAu3G9MdFbJbu49NZnWnnFcQHjxRuhUYvg1U/e84N4JTecciDAKb/KYIFXzloyuE1eYXf54MmhjTq7B/yBToDzzpx3tJCTo3HCmVPYfmtBRe3mPYEE/6RlTIxbf4fSOcaKFGk4gbaUWe44hVk9SZzhW80yfW5QWBHxmtUzvMhfVQli4gZTktIOZd9mjJ5hsbmzttaHQB29Am3dZkmx3g/qvYocyhZ2PXAWsNQiIaf+Q8W/MWPIK7/TjvCx5q2XRp4lVWydMc2wIQkhadDB0xsnw/kSEyGjLKjI4coVIwtubTF3E7MJ6LS6UOsJKj82XVAVPJJcepfewbzE91ivXZvOvYfsmMevwtPpfMzGmC7WJlyW2j0jh7AF1JLmwEJSKYwIvu6DHc3YnyLH9ZdIBnQ+nOVDRiP+REpqv++typYHIvoJyICGA40d8bR7HR2k7do6UQTHF4oriYeIQbxKe4Th6+/l1BjUtS9hqORh3MbgvYrStXTfSwaBOmAVQZzpYNqsAmQyjY56MUqty3c/xH6GuhNvNaG9vGbG6cPtBM8UA3e8r51D0AR9kozKuGGSMgLz3nAHxDNnc7GTwpLj7/6HeWp1iksDeTjwCLpxejuMtpMnGJgsiku1sOACwQ9ukzESiDRN77YNESxR5LphOlcASXA5uIts1LnBIcn1J7BLWs49DMALSnuz95gdOrTZr0u1SeYHinno/pE58xYoXbVO/S+FEMMs5qyWkMnp8Q3ClyTlZP52Y9nq7b8fITPuVXUk9ohG5EFHw4gAEcjFxfKb3xuAsEjx2z1wxNbSZMcgS9GKyW3R6KwJONgtA64LTyxWm8Bvudp0M1FdJPEGopM4Fvg7G/hsptkhCfHFegv4ENwxPeXmYhxwZy7js+BeM27t9ODBMynVCLJ7RWcBMteZJtvjOYHb5lOnCLYWNEMKC59BA7covu1cANa2PXL05iGdufOzkgFqqHBOrgQVUmLEc+Mkz4Rq8O6WkNr7atNkH4M8d+SD1t/tSzt3oFql+neVs+AwEI5JaBJaxARtY2Z4mKoUqxds4UpZ0sv3zIbNoo0J4fihldQTX3XNcuNcZmcrB5LTWMdzeRuAtBk3cZHYQF6gTi3PNuDJ0nmR+4LPLoHvxQIxRgJ9iNNXqf2SYJhcvCtJiVWo85TsyFOuq7EyBPJrAdhEgE0cTq16FQXhYPJFqSfiVn0IQnPOy0LbU4BeG94QjdYNB0CiQ3QaxQqD2ebSMiNjaVaw8WaM4Z5WnzcVDsr4eGweSLa2DE3BWViaxhZFIcSTjgxNCAfelg+hznVOYoe5VqTYs1g7WtfTm3e4/WduC6p+qqAM8H4ZyrJCGpewThTDPe6H7CzX/zQ8Tm+r65HeZn+MsmxUciEWPlAVaK/VBaQBWfoG/aRL/jSZIQfep/89GjasWmbaWzeEZ2R1FOjvyJT37O9B8046SRSKVEnXWlBqbkb5XCS3qFeuE9xb9+frEknxWB5h1D/hruz2iVDEAS7+qkEz5Ot5agHJc7WCdY94Ws61sURcX5nG8UELGBAHZ3i+3VulAyT0nKNNz4K2LBHBWJcTBX1wzf+//u/j/9+//v87+9/l9Lbh/L/uyNYiTsWV2LwsjaA6MxTuzFMqmxW8Jw/+IppdX8t/Clgi1rI1SN0UC/r6tX/4lUc2VV1OQReSeCsjUpKZchw4XUcjHfw6ryCV3R8s6VXm67vp4n+lcPV9gJwmbKQEsmrJi9c2vkwrm8HFbVYNTaRGq8D91t9n5+U+aD/hNtN3HjC/nC/vUoGFSCkXP+NlRcmLUqLbiUBl4LYf1U/CCvwtd3ryCH8gUmGITAxiH1O5rnGTz7y1LuFjmnFGQ1UWuM7HwfXtWl2fPFKklYwNUpF2IL/TmaRETjQiM5SJacI+3Gv5MBU8lP5Io6gWkawpyzNEVGqOdx4YlO1dCvjbWFZWbCmeiFKPSlMKtKcMFLs/KQxtgAHi7NZNCQ32bBAW2mbHflVZ8wXKi1JKVHkW20bnYnl3dKWJeWJOiX3oKPBD6Zbi0ZvSIuWktUHB8qDR8DMMh1ZfkBL9FS9x5r0hBGLJ8pUCJv3NYH+Ae8p40mZWd5m5fhobFjQeQvqTT4VKWIYfRL0tfaXKiVl75hHReuTJEcqVlug+eOIIc4bdIydtn2K0iNZPsYWQvQio2qbO3OqAlPHDDOB7DfjGEfVF51FqqNacd6QmgFKJpMfLp5DHTv4wXlONKVXF9zTJpDV4m1sYZqJPhotcsliZM8yksKkCkzpiXt+EcRQvSQqmBS9WdWkxMTJXPSw94jqI3varCjQxTazjlMH8jTS8ilaW8014/vwA/LNa+YiFoyyx3s/KswP3O8QW1jtq45yTM/DX9a8M4voTVaO2ebvw1EooDw/yg6Y1faY+WwrdVs5Yt0hQ5EwRfYXSFxray1YvSM+kYmlpLG2/9mm1MfmbKHXr44Ih8nVKb1M537ZANUkCtdsPZ80JVKVKabVHCadaLXg+IV8i5GSwpZti0h6diTaKs9sdpUKEpd7jDUpYmHtiX33SKiO3tuydkaxA7pEc9XIQEOfWJlszj5YpL5bKeQyT7aZSBOamvSHl8xsWvgo26IP/bqk+0EJUz+gkkcvlUlyPp2kdKFtt7y5aCdks9ZJJcFp5ZWeaWKgtnXMN3ORwGLBE0PtkEIek5FY2aVssUZHtsWIvnljMVJtuVIjpZup/5VL1yPOHWWHkOMc6YySWMckczD5jUj2mlLVquFaMU8leGVaqeXis+aRRL8zm4WuBk6cyWfGMxgtr8useQEx7k/PvRoZyd9nde1GUCV84gMX8Ogu/BWezYPSR27llzQnA97oo0pYyxobYUJfsj+ysTm9zJ+S4pk0TGo9VTG0KjqYhTmALfoDZVKla2b5yhv241PxFaLJs3i05K0AAIdcGxCJZmT3ZdT7CliR7q+kur7WdQjygYtOWRL9B8E4s4LI8KpAj7bE0dg7DLOaX+MGeAi0hMMSSWZEz+RudXbZCsGYS0QqiXjH9XQbd8sCB+nIVTq7/T/FDS+zWY9q7Z2fdq1tdLb6v3hKKVDAw5gjj6o9r1wHFROdHc18MJp4SJ2Ucvu+iQ9EgkekW8VCM+psM6y+/2SBy8tNN4a3L1MzP+OLsyvESo5gS7IQOnIqMmviJBVc6zbVG1n8eXiA3j46kmvvtJlewwNDrxk4SbJOtP/TV/lIVK9ueShNbbMHfwnLTLLhbZuO79ec5XvfgRwLFK+w1r5ZWW15rVFZrE+wKqNRv5KqsLNfpGgnoUU6Y71NxEmN7MyqwqAQqoIULOw/LbuUB2+uE75gJt+kq1qY4LoxV+qR/zalupea3D5+WMeaRIn0sAI6DDWDh158fqUb4YhAxhREbUN0qyyJYkBU4V2KARXDT65gW3gRsiv7xSPYEKLwzgriWcWgPr0sbZnv7m1XHNFW6xPdGNZUdxFiUYlmXNjDVWuu7LCkX/nVkrXaJhiYktBISC2xgBXQnNEP+cptWl1eG62a7CPXrnrkTQ5BQASbEqUZWMDiZUisKyHDeLFOaJILUo5f6iDt4ZO8MlqaKLto0AmTHVVbkGuyPa1R/ywZsWRoRDoRdNMMHwYTsklMVnlAd2S0282bgMI8fiJpDh69OSL6K3qbo20KfpNMurnYGQSr/stFqZ7hYsxKlLnKAKhsmB8AIpEQ4bd/NrTLTXefsE6ChRmKWjXKVgpGoPs8GAicgKVw4K0qgDgy1A6hFq1WRat3fHF+FkU+b6H4NWpOU3KXTxrIb2qSHAb+qhm8hiSROi/9ofapjxhyKxxntPpge6KL5Z4+WBMYkAcE6+0Hd3Yh2zBsK2MV3iW0Y6cvOCroXlRb2MMJtdWx+3dkFzGh2Pe3DZ9QpSqpaR/rE1ImOrHqYYyccpiLC22amJIjRWVAherTfpQLmo6/K2pna85GrDuQPlH1Tsar8isAJbXLafSwOof4gg9RkAGm/oYpBQQiPUoyDk2BCQ1k+KILq48ErFo4WSRhHLq/y7mgw3+L85PpP6xWr6cgp9sOjYjKagOrxF148uhuaWtjet953fh1IQiEzgC+d2IgBCcUZqgTAICm2bR8oCjDLBsmg+ThyhfD+zBalsKBY1Ce54Y/t9cwfbLu9SFwEgphfopNA3yNxgyDafUM3mYTovZNgPGdd4ZFFOj1vtfFW3u7N+iHEN1HkeesDMXKPyoCDCGVMo4GCCD6PBhQ3dRZIHy0Y/3MaE5zU9mTCrwwnZojtE+qNpMSkJSpmGe0EzLyFelMJqhfFQ7a50uXxZ8pCc2wxtAKWgHoeamR2O7R+bq7IbPYItO0esdRgoTaY38hZLJ5y02oIVwoPokGIzxAMDuanQ1vn2WDQ00Rh6o5QOaCRu99fwDbQcN0XAuqkFpxT/cfz3slGRVokrNU0iqiMAJFEbKScZdmSkTUznC0U+MfwFOGdLgsewRyPKwBZYSmy6U325iUhBQNxbAC3FLKDV9VSOuQpOOukJ/GAmu/tyEbX9DgEp6dv1zoU0IqzpG6gssSjIYRVPGgU1QAQYRgIT8gEV0EXr1sqeh2I6rXjtmoCYyEDCe/PkFEi/Q48FuT29p557iN+LCwk5CK/CZ2WdAdfQZh2Z9QGrzPLSNRj5igUWzl9Vi0rCqH8G1Kp4QMLkuwMCAypdviDXyOIk0AHTM8HBYKh3b0/F+DxoNj4ZdoZfCpQVdnZarqoMaHWnMLNVcyevytGsrXQEoIbubqWYNo7NRHzdc0zvT21fWVirj7g36iy6pxogfvgHp1xH1Turbz8QyyHnXeBJicpYUctbzApwzZ1HT+FPEXMAgUZetgeGMwt4G+DHiDT2Lu+PT21fjJCAfV16a/Wu1PqOkUHSTKYhWW6PhhHUlNtWzFnA7MbY+r64vkwdpfNB2JfWgWXAvkzd42K4lN9x7Wrg4kIKgXCb4mcW595MCPJ/cTfPAMQMFWwnqwde4w8HZYJFpQwcSMhjVz4B8p6ncSCN1X4klxoIH4BN2J6taBMj6lHkAOs8JJAmXq5xsQtrPIPIIp/HG6i21xMGcFgqDXSRF0xQg14d2uy6HgKE13LSvQe52oShF5Jx1R6avyL4thhXQZHfC94oZzuPUBKFYf1VvDaxIrtV6dNGSx7DO0i1p6CzBkuAmEqyWceQY7F9+U0ObYDzoa1iKao/cOD/v6Q9gHrrr1uCeOk8fST9MG23Ul0KmM3r+Wn6Hi6WAcL7gEeaykicvgjzkjSwFsAXIR81Zx4QJ6oosVyJkCcT+4xAldCcihqvTf94HHUPXYp3REIaR4dhpQF6+FK1H0i9i7Pvh8owu3lO4PT1iuqu+DkL2Bj9+kdfGAg2TXw03iNHyobxofLE2ibjsYDPgeEQlRMR7afXbSGQcnPjI2D+sdtmuQ771dbASUsDndU7t58jrrNGRzISvwioAlHs5FA+cBE5Ccznkd8NMV6BR6ksnKLPZnMUawRDU1MZ/ib3xCdkTblHKu4blNiylH5n213yM0zubEie0o4JhzcfAy3H5qh2l17uLooBNLaO+gzonTH2uF8PQu9EyH+pjGsACTMy4cHzsPdymUSXYJOMP3yTkXqvO/lpvt0cX5ekDEu9PUfBeZODkFuAjXCaGdi6ew4qxJ8PmFfwmPpkgQjQlWqomFY6UkjmcnAtJG75EVR+NpzGpP1Ef5qUUbfowrC3zcSLX3BxgWEgEx/v9cP8H8u1Mvt9/rMDYf6sjwU1xSOPBgzFEeJLMRVFtKo5QHsUYT8ZRLCah27599EuqoC9PYjYO6aoAMHB8X1OHwEAYouHfHB3nyb2B+SnZxM/vw/bCtORjLMSy5aZoEpvgdGvlJfNPFUu/p7Z4VVK1hiI0/UTuB3ZPq4ohEbm7Mntgc1evEtknaosgZSwnDC2BdMmibpeg48X8Ixl+/8+xXdbshQXUPPvx8jT3fkELivHSmqbhblfNFShWAyQnJ3WBU6SMYSIpTDmHjdLVAdlADdz9gCplZw6mTiHqDwIsxbm9ErGusiVpg2w8Q3khKV/R9Oj8PFeF43hmW/nSd99nZzhyjCX3QOZkkB6BsH4H866WGyv9E0hVAzPYah2tkRfQZMmP2rinfOeQalge0ovhduBjJs9a1GBwReerceify49ctOh5/65ATYuMsAkVltmvTLBk4oHpdl6i+p8DoNj4Fb2vhdFYer2JSEilEwPd5n5zNoGBXEjreg/wh2NFnNRaIUHSOXa4eJRwygZoX6vnWnqVdCRT1ARxeFrNBJ+tsdooMwqnYhE7zIxnD8pZH+P0Nu1wWxCPTADfNWmqx626IBJJq6NeapcGeOmbtXvl0TeWG0Y7OGGV4+EHTtNBIT5Wd0Bujl7inXgZgfXTM5efD3qDTJ54O9v3Bkv+tdIRlq1kXcVD0BEMirmFxglNPt5pedb1AnxuCYMChUykwsTIWqT23XDpvTiKEru1cTcEMeniB+HQDehxPXNmkotFdwUPnilB/u4Nx5Xc6l8J9jH1EgKZUUt8t8cyoZleDBEt8oibDmJRAoMKJ5Oe9CSWS5ZMEJvacsGVdXDWjp/Ype5x0p9PXB2PAwt2LRD3d+ftNgpuyvxlP8pB84oB1i73vAVpwyrmXW72hfW6Dzn9Jkj4++0VQ4d0KSx1AsDA4OtXXDo63/w+GD+zC7w5SJaxsmnlYRQ4dgdjA7tTl2KNLnpJ+mvkoDxtt1a4oPaX3EVqj96o9sRKBQqU7ZOiupeAIyLMD+Y3YwHx30XWHB5CQiw7q3mj1EDlP2eBsZbz79ayUMbyHQ7s8gu4Lgip1LiGJj7NQj905/+rgUYKAA5qdrlHKIknWmqfuR+PB8RdBkDg/NgnlT89G72h2NvySnj7UyBwD+mi/IWs1xWbxuVwUIVXun5cMqBtFbrccI+DILjsVQg6eeq0itiRfedn89CvyFtpkxaauEvSANuZmB1p8FGPbU94J9medwsZ9HkUYjmI7OH5HuxendLbxTaYrPuIfE2ffXFKhoNBUp33HsFAXmCV/Vxpq5AYgFoRr5Ay93ZLRlgaIPjhZjXZZChT+aE5iWAXMX0oSFQEtwjiuhQQItTQX5IYrKfKB+queTNplR1Hoflo5/I6aPPmACwQCE2jTOYo5Dz1cs7Sod0KTG/3kEDGk3kUaUCON19xSJCab3kNpWZhSWkO8l+SpW70Wn3g0ciOIJO5JXma6dbos6jyisuxXwUUhj2+1uGhcvuliKtWwsUTw4gi1c/diEEpZHoKoxTBeMDmhPhKTx7TXWRakV8imJR355DcIHkR9IREHxohP4TbyR5LtFU24umRPRmEYHbpe1LghyxPx7YgUHjNbbQFRQhh4KeU1EabXx8FS3JAxp2rwRDoeWkJgWRUSKw6gGP5U2PuO9V4ZuiKXGGzFQuRuf+tkSSsbBtRJKhCi3ENuLlXhPbjTKD4djXVnfXFds6Zb+1XiUrRfyayGxJq1+SYBEfbKlgjiSmk0orgTqzSS+DZ5rTqsJbttiNtp+KMqGE2AHGFw6jQqM5vD6vMptmXV9OAjq49Uf/Lx9Opam+Hn5O9p8qoBBAQixzQZ4eNVkO9sPzJAMyR1y4/RCQQ1s0pV5KAU5sKLw3tkcFbI/JqrjCsK4Mw+W8aod4lioYuawUiCyVWBE/qPaFi5bnkgpfu/ae47174rI1fqQoTbW0HrU6FAejq7ByM0V4zkZTg02/YJK2N7hUQRCeZ4BIgSEqgD8XsjzG6LIsSbuHoIdz/LhFzbNn1clci1NHWJ0/6/O8HJMdIpEZbqi1RrrFfoo/rI/7ufm2MPG5lUI0IYJ4MAiHRTSOFJ2oTverFHYXThkYFIoyFx6rMYFgaOKM4xNWdlOnIcKb/suptptgTOTdVIf4YgdaAjJnIAm4qNNHNQqqAzvi53GkyRCEoseUBrHohZsjUbkR8gfKtc/+Oa72lwxJ8Mq6HDfDATbfbJhzeIuFQJSiw1uZprHlzUf90WgqG76zO0eCB1WdPv1IT6sNxxh91GEL2YpgC97ikFHyoaH92ndwduqZ6IYjkg20DX33MWdoZk7QkcKUCgisIYslOaaLyvIIqRKWQj16jE1DlQWJJaPopWTJjXfixEjRJJo8g4++wuQjbq+WVYjsqCuNIQW3YjnxKe2M5ZKEqq+cX7ZVgnkbsU3RWIyXA1rxv4kGersYJjD//auldXGmcEbcfTeF16Y1708FB1HIfmWv6dSFi6oD4E+RIjCsEZ+kY7dKnwReJJw3xCjKvi3kGN42rvyhUlIz0Bp+fNSV5xwFiuBzG296e5s/oHoFtUyUplmPulIPl+e1CQIQVtjlzLzzzbV+D/OVQtYzo5ixtMi5BmHuG4N/uKfJk5UIREp7+12oZlKtPBomXSzAY0KgtbPzzZoHQxujnREUgBU+O/jKKhgxVhRPtbqyHiUaRwRpHv7pgRPyUrnE7fYkVblGmfTY28tFCvlILC04Tz3ivkNWVazA+OsYrxvRM/hiNn8Fc4bQBeUZABGx5S/xFf9Lbbmk298X7iFg2yeimvsQqqJ+hYbt6uq+Zf9jC+Jcwiccd61NKQtFvGWrgJiHB5lwi6fR8KzYS7EaEHf/ka9EC7H8D+WEa3TEACHBkNSj/cXxFeq4RllC+fUFm2xtstYLL2nos1DfzsC9vqDDdRVcPA3Ho95aEQHvExVThXPqym65llkKlfRXbPTRiDepdylHjmV9YTWAEjlD9DdQnCem7Aj/ml58On366392214B5zrmQz/9ySG2mFqEwjq5sFl5tYJPw5hNz8lyZPUTsr5E0F2C9VMPnZckWP7+mbwp/BiN7f4kf7vtGnZF2JGvjK/sDX1RtcFY5oPQnE4lIAYV49U3C9SP0LCY/9i/WIFK9ORjzM9kG/KGrAuwFmgdEpdLaiqQNpCTGZVuAO65afkY1h33hrqyLjZy92JK3/twdj9pafFcwfXONmPQWldPlMe7jlP24Js0v9m8bIJ9TgS2IuRvE9ZVRaCwSJYOtAfL5H/YS4FfzKWKbek+GFulheyKtDNlBtrdmr+KU+ibHTdalzFUmMfxw3f36x+3cQbJLItSilW9cuvZEMjKw987jykZRlsH/UI+HlKfo2tLwemBEeBFtmxF2xmItA/dAIfQ+rXnm88dqvXa+GapOYVt/2waFimXFx3TC2MUiOi5/Ml+3rj/YU6Ihx2hXgiDXFsUeQkRAD6wF3SCPi2flk7XwKAA4zboqynuELD312EJ88lmDEVOMa1W/K/a8tGylZRMrMoILyoMQzzbDJHNZrhH77L9qSC42HVmKiZ5S0016UTp83gOhCwz9XItK9fgXfK3F5d7nZCBUekoLxrutQaPHa16Rjsa0gTrzyjqTnmcIcrxg6X6dkKiucudc0DD5W4pJPf0vuDW8r5/uw24YfMuxFRpD2ovT2mFX79xH6Jf+MVdv2TYqR6/955QgVPe3JCD/WjAYcLA9tpXgFiEjge2J5ljeI/iUzg91KQuHkII4mmHZxC3XQORLAC6G7uFn5LOmlnXkjFdoO976moNTxElS8HdxWoPAkjjocDR136m2l+f5t6xaaNgdodOvTu0rievnhNAB79WNrVs6EsPgkgfahF9gSFzzAd+rJSraw5Mllit7vUP5YxA843lUpu6/5jAR0RvH4rRXkSg3nE+O5GFyfe+L0s5r3k05FyghSFnKo4TTgs07qj4nTLqOYj6qaW9knJTDkF5OFMYbmCP+8H16Ty482OjvERV6OFyw043L9w3hoJi408sR+SGo1WviXUu8d7qS+ehKjpKwxeCthsm2LBFSFeetx0x4AaKPxtp3CxdWqCsLrB1s/j5TAhc1jNZsXWl6tjo/WDoewxzg8T8NnhZ1niUwL/nhfygLanCnRwaFGDyLw+sfZhyZ1UtYTp8TYB6dE7R3VsKKH95CUxJ8u8N+9u2/9HUNKHW3x3w5GQrfOPafk2w5qZq8MaHT0ebeY3wIsp3rN9lrpIsW9c1ws3VNV+JwNz0Lo9+V7zZr6GD56We6gWVIvtmam5GPPkVAbr74r6SwhuL+TRXtW/0pgyX16VNl4/EAD50TnUPuwrW6OcUO2VlWXS0inq872kk7GUlW6o/ozFKq+Sip6LcTtSDfDrPTcCHhx75H8BeRon+KG2wRwzfDgWhALmiWOMO6h3pm1UCZEPEjScyk7tdLx6WrdA2N1QTPENvNnhCQjW6kl057/qv7IwRryHrZBCwVSbLLnFRiHdTwk8mlYixFt1slEcPD7FVht13HyqVeyD55HOXrh2ElAxJyinGeoFzwKA91zfrdLvDxJSjzmImfvTisreI25EDcVfGsmxLVbfU8PGe/7NmWWKjXcdTJ11jAlVIY/Bv/mcxg/Q10vCHwKG1GW/XbJq5nxDhyLqiorn7Wd7VEVL8UgVzpHMjQ+Z8DUgSukiVwWAKkeTlVVeZ7t1DGnCgJVIdBPZAEK5f8CDyDNo7tK4/5DBjdD5MPV86TaEhGsLVFPQSI68KlBYy84FievdU9gWh6XZrugvtCZmi9vfd6db6V7FmoEcRHnG36VZH8N4aZaldq9zZawt1uBFgxYYx+Gs/qW1jwANeFy+LCoymyM6zgG7j8bGzUyLhvrbJkTYAEdICEb4kMKusKT9V3eIwMLsjdUdgijMc+7iKrr+TxrVWG0U+W95SGrxnxGrE4eaJFfgvAjUM4SAy8UaRwE9j6ZQH5qYAWGtXByvDiLSDfOD0yFA3UCMKSyQ30fyy1mIRg4ZcgZHLNHWl+c9SeijOvbOJxoQy7lTN2r3Y8p6ovxvUY74aOYbuVezryqXA6U+fcp6wSV9X5/OZKP18tB56Ua0gMyxJI7XyNT7IrqN8GsB9rL/kP5KMrjXxgqKLDa+V5OCH6a5hmOWemMUsea9vQl9t5Oce76PrTyTv50ExOqngE3PHPfSL//AItPdB7kGnyTRhVUUFNdJJ2z7RtktZwgmQzhBG/G7QsjZmJfCE7k75EmdIKH7xlnmDrNM/XbTT6FzldcH/rcRGxlPrv4qDScqE7JSmQABJWqRT/TUcJSwoQM+1jvDigvrjjH8oeK2in1S+/yO1j8xAws/T5u0VnIvAPqaE1atNuN0cuRliLcH2j0nTL4JpcR7w9Qya0JoaHgsOiALLCCzRkl1UUESz+ze/gIXHGtDwgYrK6pCFKJ1webSDog4zTlPkgXZqxlQDiYMjhDpwTtBW2WxthWbov9dt2X9XFLFmcF+eEc1UaQ74gqZiZsdj63pH1qcv3Vy8JYciogIVKsJ8Yy3J9w/GhjWVSQAmrS0BPOWK+RKV+0lWqXgYMnIFwpcZVD7zPSp547i9HlflB8gVnSTGmmq1ClO081OW/UH11pEQMfkEdDFzjLC1Cdo/BdL3s7cXb8J++Hzz1rhOUVZFIPehRiZ8VYu6+7Er7j5PSZu9g/GBdmNzJmyCD9wiswj9BZw+T3iBrg81re36ihMLjoVLoWc+62a1U/7qVX5CpvTVF7rocSAKwv4cBVqZm7lLDS/qoXs4fMs/VQi6BtVbNA3uSzKpQfjH1o3x4LrvkOn40zhm6hjduDglzJUwA0POabgdXIndp9fzhOo23Pe+Rk9GSLX0d71Poqry8NQDTzNlsa+JTNG9+UrEf+ngxCjGEsDCc0bz+udVRyHQI1jmEO3S+IOQycEq7XwB6z3wfMfa73m8PVRp+iOgtZfeSBl01xn03vMaQJkyj7vnhGCklsCWVRUl4y+5oNUzQ63B2dbjDF3vikd/3RUMifPYnX5Glfuk2FsV/7RqjI9yKTbE8wJY+74p7qXO8+dIYgjtLD/N8TJtRh04N9tXJA4H59IkMmLElgvr0Q5OCeVfdAt+5hkh4pQgfRMHpL74XatLQpPiOyHRs/OdmHtBf8nOZcxVKzdGclIN16lE7kJ+pVMjspOI+5+TqLRO6m0ZpNXJoZRv9MPDRcAfJUtNZHyig/s2wwReakFgPPJwCQmu1I30/tcBbji+Na53i1W1N+BqoY7Zxo+U/M9XyJ4Ok2SSkBtoOrwuhAY3a03Eu6l8wFdIG1cN+e8hopTkiKF093KuH/BcB39rMiGDLn6XVhGKEaaT/vqb/lufuAdpGExevF1+J9itkFhCfymWr9vGb3BTK4j598zRH7+e+MU9maruZqb0pkGxRDRE1CD4Z8LV4vhgPidk5w2Bq816g3nHw1//j3JStz7NR9HIWELO8TMn3QrP/zZp//+Dv9p429/ogv+GATR+n/UdF+ns9xNkXZQJXY4t9jMkJNUFygAtzndXwjss+yWH9HAnLQQfhAskdZS2l01HLWv7L7us5uTH409pqitvfSOQg/c+Zt7k879P3K9+WV68n7+3cZfuRd/dDPP/03rn+d+/nBvWfgDlt8+LzjqJ/vx3CnNOwiXhho778C96iD+1TBvRZYeP+EH81LE0vVwOOrmCLB3iKzI1x+vJEsrPH4uF0UB4TJ4X3uDfOCo3PYpYe0MF4bouh0DQ/l43fxUF7Y+dpWuvTSffB0yO2UQUETI/LwCZE3BvnevJ7c9zUlY3H58xzke6DNFDQG8n0WtDN4LAYN4nogKav1ezOfK/z+t6tsCTp+dhx4ymjWuCJk1dEUifDP+HyS4iP/Vg9B2jTo9L4NbiBuDS4nuuHW6H+JDQn2JtqRKGkEQPEYE7uzazXIkcxIAqUq1esasZBETlEZY7y7Jo+RoV/IsjY9eIMkUvr42Hc0xqtsavZvhz1OLwSxMOTuqzlhb0WbdOwBH9EYiyBjatz40bUxTHbiWxqJ0uma19qhPruvcWJlbiSSH48OLDDpaHPszvyct41ZfTu10+vjox6kOqK6v0K/gEPphEvMl/vwSv+A4Hhm36JSP9IXTyCZDm4kKsqD5ay8b1Sad/vaiyO5N/sDfEV6Z4q95E+yfjxpqBoBETW2C7xl4pIO2bDODDFurUPwE7EWC2Uplq+AHmBHvir2PSgkR12/Ry65O0aZtQPeXi9mTlF/Wj5GQ+vFkYyhXsLTjrBSP9hwk4GPqDP5rBn5/l8b0mLRAvRSzXHc293bs3s8EsdE3m2exxidWVB4joHR+S+dz5/W+v00K3TqN14CDBth8eWcsTbiwXPsygHdGid0PEdy6HHm2v/IUuV5RVapYmzGsX90mpnIdNGcOOq64Dbc5GUbYpD9M7S+6cLY//QmjxFLP5cuTFRm3vA5rkFZroFnO3bjHF35uU3s8mvL7Tp9nyTc4mymTJ5sLIp7umSnGkO23faehtz3mmTS7fbVx5rP7x3HXIjRNeq/A3xCs9JNB08c9S9BF2O3bOur0ItslFxXgRPdaapBIi4dRpKGxVz7ir69t/bc9qTxjvtOyGOfiLGDhR4fYywHv1WdOplxIV87TpLBy3Wc0QP0P9s4G7FBNOdITS/tep3o3h1TEa5XDDii7fWtqRzUEReP2fbxz7bHWWJdbIOxOUJZtItNZpTFRfj6vm9sYjRxQVO+WTdiOhdPeTJ+8YirPvoeL88l5iLYOHd3b/Imkq+1ZN1El3UikhftuteEYxf1Wujof8Pr4ICTu5ezZyZ4tHQMxlzUHLYO2VMOoNMGL/20S5i2o2obfk+8qqdR7xzbRDbgU0lnuIgz4LelQ5XS7xbLuSQtNS95v3ZUOdaUx/Qd8qxCt6xf2E62yb/HukLO6RyorV8KgYl5YNc75y+KvefrxY+lc/64y9kvWP0a0bDz/rojq+RWjO06WeruWqNFU7r3HPIcLWRql8ICZsz2Ls/qOm/CLn6++X+Qf7mGspYCrZod/lpl6Rw4xN/yuq8gqV4B6aHk1hVE1SfILxWu5gvXqbfARYQpspcxKp1F/c8XOPzkZvmoSw+vEqBLdrq1fr3wAPv5NnM9i8F+jdAuxkP5Z71c6uhK3enlnGymr7UsWZKC12qgUiG8XXGQ9mxnqz4GSIlybF9eXmbqj2sHX+a1jf0gRoONHRdRSrIq03Ty89eQ1GbV/Bk+du4+V15zls+vvERvZ4E7ZbnxWTVjDjb4o/k8jlw44pTIrUGxxuJvBeO+heuhOjpFsO6lVJ/aXnJDa/bM0Ql1cLbXE/Pbv3EZ3vj3iVrB5irjupZTzlnv677NrI9UNYNqbPgp/HZXS+lJmk87wec+7YOxTDo2aw2l3NfDr34VNlvqWJBknuK7oSlZ6/T10zuOoPZOeoIk81N+sL843WJ2Q4Z0fZ3scsqC/JV2fuhWi1jGURSKZV637lf53Xnnx16/vKEXY89aVJ0fv91jGdfG+G4+sniwHes4hS+udOr4RfhFhG/F5gUG35QaU+McuLmclb5ZWmR+sG5V6nf+PxYzlrnFGxpZaK8eqqVo0NfmAWoGfXDiT/FnUbWvzGDOTr8aktOZWg4BYvz5YH12ZbfCcGtNk+dDAZNGWvHov+PIOnY9Prjg8h/wLRrT69suaMVZ5bNuK00lSVpnqSX1NON/81FoP92rYndionwgOiA8WMf4vc8l15KqEEG4yAm2+WAN5Brfu1sq9suWYqgoajgOYt/JCk1gC8wPkK+XKCtRX6TAtgvrnuBgNRmn6I8lVDipOVB9kX6Oxkp4ZKyd1M6Gj8/v2U7k+YQBL95Kb9PQENucJb0JlW3b5tObN7m/Z1j1ev388d7o15zgXsI9CikAGAViR6lkJv7nb4Ak40M2G8TJ447kN+pvfHiOFjSUSP6PM+QfbAywKJCBaxSVxpizHseZUyUBhq59vFwrkyGoRiHbo0apweEZeSLuNiQ+HAekOnarFg00dZNXaPeoHPTRR0FmEyqYExOVaaaO8c0uFUh7U4e/UxdBmthlBDgg257Q33j1hA7HTxSeTTSuVnPZbgW1nodwmG16aKBDKxEetv7D9OjO0JhrbJTnoe+kcGoDJazFSO8/fUN9Jy/g4XK5PUkw2dgPDGpJqBfhe7GA+cjzfE/EGsMM+FV9nj9IAhrSfT/J3QE5TEIYyk5UjsI6ZZcCPr6A8FZUF4g9nnpVmjX90MLSQysIPD0nFzqwCcSJmIb5mYv2Cmk+C1MDFkZQyCBq4c/Yai9LJ6xYkGS/x2s5/frIW2vmG2Wrv0APpCdgCA9snFvfpe8uc0OwdRs4G9973PGEBnQB5qKrCQ6m6X/H7NInZ7y/1674/ZXOVp7OeuCRk8JFS516VHrnH1HkIUIlTIljjHaQtEtkJtosYul77cVwjk3gW1Ajaa6zWeyHGLlpk3VHE2VFzT2yI/EvlGUSz2H9zYE1s4nsKMtMqNyKNtL/59CpFJki5Fou6VXGm8vWATEPwrUVOLvoA8jLuwOzVBCgHB2Cr5V6OwEWtJEKokJkfc87h+sNHTvMb0KVTp5284QTPupoWvQVUwUeogZR3kBMESYo0mfukewRVPKh5+rzLQb7HKjFFIgWhj1w3yN/qCNoPI8XFiUgBNT1hCHBsAz8L7Oyt8wQWUFj92ONn/APyJFg8hzueqoJdNj57ROrFbffuS/XxrSXLTRgj5uxZjpgQYceeMc2wJrahReSKpm3QjHfqExTLAB2ipVumE8pqcZv8LYXQiPHHsgb5BMW8zM5pvQit+mQx8XGaVDcfVbLyMTlY8xcfmm/RSAT/H09UQol5gIz7rESDmnrQ4bURIB4iRXMDQwxgex1GgtDxKp2HayIkR+E/aDmCttNm2C6lytWdfOVzD6X2SpDWjQDlMRvAp1symWv4my1bPCD+E1EmGnMGWhNwmycJnDV2WrQNxO45ukEb08AAffizYKVULp15I4vbNK5DzWwCSUADfmKhfGSUqii1L2UsE8rB7mLuHuUJZOx4+WiizHBJ/hwboaBzhpNOVvgFTf5cJsHef7L1HCI9dOUUbb+YxUJWn6dYOLz+THi91kzY5dtO5c+grX7v0jEbsuoOGnoIreDIg/sFMyG+TyCLIcAWd1IZ1UNFxE8Uie13ucm40U2fcxC0u3WLvLOxwu+F7MWUsHsdtFQZ7W+nlfCASiAKyh8rnP3EyDByvtJb6Kax6/HkLzT9SyEyTMVM1zPtM0MJY14DmsWh4MgD15Ea9Hd00AdkTZ0EiG5NAGuIBzQJJ0JR0na+OB7lQA6UKxMfihIQ7GCCnVz694QvykWXTxpS2soDu+smru1UdIxSvAszBFD1c8c6ZOobA8bJiJIvuycgIXBQIXWwhyTgZDQxJTRXgEwRNAawGSXO0a1DKjdihLVNp/taE/xYhsgwe+VpKEEB4LlraQyE84gEihxCnbfoyOuJIEXy2FIYw+JjRusybKlU2g/vhTSGTydvCvXhYBdtAXtS2v7LkHtmXh/8fly1do8FI/D0f8UbzVb5h+KRhMGSAmR2mhi0YG/uj7wgxcfzCrMvdjitUIpXDX8ae2JcF/36qUWIMwN6JsjaRGNj+jEteGDcFyTUb8X/NHSucKMJp7pduxtD6KuxVlyxxwaeiC1FbGBESO84lbyrAugYxdl+2N8/6AgWpo/IeoAOcsG35IA/b3AuSyoa55L7llBLlaWlEWvuCFd8f8NfcTUgzJv6CbB+6ohWwodlk9nGWFpBAOaz5uEW5xBvmjnHFeDsb0mXwayj3mdYq5gxxNf3H3/tnCgHwjSrpSgVxLmiTtuszdRUFIsn6LiMPjL808vL1uQhDbM7aA43mISXReqjSskynIRcHCJ9qeFopJfx9tqyUoGbSwJex/0aDE3plBPGtNBYgWbdLom3+Q/bjdizR2/AS/c/dH/d3G7pyl1qDXgtOFtEqidwLqxPYtrNEveasWq3vPUUtqTeu8gpov4bdOQRI2kneFvRNMrShyVeEupK1PoLDPMSfWMIJcs267mGB8X9CehQCF0gIyhpP10mbyM7lwW1e6TGvHBV1sg/UyTghHPGRqMyaebC6pbB1WKNCQtlai1GGvmq9zUKaUzLaXsXEBYtHxmFbEZ2kJhR164LhWW2Tlp1dhsGE7ZgIWRBOx3Zcu2DxgH+G83WTPceKG0TgQKKiiNNOlWgvqNEbnrk6fVD+AqRam2OguZb0YWSTX88N+i/ELSxbaUUpPx4vJUzYg/WonSeA8xUK6u7DPHgpqWpEe6D4cXg5uK9FIYVba47V/nb+wyOtk+zG8RrS4EA0ouwa04iByRLSvoJA2FzaobbZtXnq8GdbfqEp5I2dpfpj59TCVif6+E75p665faiX8gS213RqBxTZqfHP46nF6NSenOneuT+vgbLUbdTH2/t0REFXZJOEB6DHvx6N6g9956CYrY/AYcm9gELJXYkrSi+0F0geKDZgOCIYkLU/+GOW5aGj8mvLFgtFH5+XC8hvAE3CvHRfl4ofM/Qwk4x2A+R+nyc9gNu/9Tem7XW4XRnyRymf52z09cTOdr+PG6+P/Vb4QiXlwauc5WB1z3o+IJjlbxI8MyWtSzT+k4sKVbhF3xa+vDts3NxXa87iiu+xRH9cAprnOL2h6vV54iQRXuOAj1s8nLFK8gZ70ThIQcWdF19/2xaJmT0efrkNDkWbpAQPdo92Z8+Hn/aLjbOzB9AI/k12fPs9HhUNDJ1u6ax2VxD3R6PywN7BrLJ26z6s3QoMp76qzzwetrDABKSGkfW5PwS1GvYNUbK6uRqxfyVGNyFB0E+OugMM8kKwmJmupuRWO8XkXXXQECyRVw9UyIrtCtcc4oNqXqr7AURBmKn6Khz3eBN96LwIJrAGP9mr/59uTOSx631suyT+QujDd4beUFpZ0kJEEnjlP+X/Kr2kCKhnENTg4BsMTOmMqlj2WMFLRUlVG0fzdCBgUta9odrJfpVdFomTi6ak0tFjXTcdqqvWBAzjY6hVrH9sbt3Z9gn+AVDpTcQImefbB4edirjzrsNievve4ZT4EUZWV3TxEsIW+9MT/RJoKfZZYSRGfC1CwPG/9rdMOM8qR/LUYvw5f/emUSoD7YSFuOoqchdUg2UePd1eCtFSKgxLSZ764oy4lvRCIH6bowPxZWwxNFctksLeil47pfevcBipkkBIc4ngZG+kxGZ71a72KQ7VaZ6MZOZkQJZXM6kb/Ac0/XkJx8dvyfJcWbI3zONEaEPIW8GbkYjsZcwy+eMoKrYjDmvEEixHzkCSCRPRzhOfJZuLdcbx19EL23MA8rnjTZZ787FGMnkqnpuzB5/90w1gtUSRaWcb0eta8198VEeZMUSfIhyuc4/nywFQ9uqn7jdqXh+5wwv+RK9XouNPbYdoEelNGo34KyySwigsrfCe0v/PlWPvQvQg8R0KgHO18mTVThhQrlbEQ0Kp/JxPdjHyR7E1QPw/ut0r+HDDG7BwZFm9IqEUZRpv2WpzlMkOemeLcAt5CsrzskLGaVOAxyySzZV/D2EY7ydNZMf8e8VhHcKGHAWNszf1EOq8fNstijMY4JXyATwTdncFFqcNDfDo+mWFvxJJpc4sEZtjXyBdoFcxbUmniCoKq5jydUHNjYJxMqN1KzYV62MugcELVhS3Bnd+TLLOh7dws/zSXWzxEb4Nj4aFun5x4kDWLK5TUF/yCXB/cZYvI9kPgVsG2jShtXkxfgT+xzjJofXqPEnIXIQ1lnIdmVzBOM90EXvJUW6a0nZ/7XjJGl8ToO3H/fdxnxmTNKBZxnkpXLVgLXCZywGT3YyS75w/PAH5I/jMuRspej8xZObU9kREbRA+kqjmKRFaKGWAmFQspC+QLbKPf0RaK3OXvBSWqo46p70ws/eZpu6jCtZUgQy6r4tHMPUdAgWGGUYNbuv/1a6K+MVFsd3T183+T8capSo6m0+Sh57fEeG/95dykGJBQMj09DSW2bY0mUonDy9a8trLnnL5B5LW3Nl8rJZNysO8Zb+80zXxqUGFpud3Qzwb7bf+8mq6x0TAnJU9pDQR9YQmZhlna2xuxJt0aCO/f1SU8gblOrbIyMsxTlVUW69VJPzYU2HlRXcqE2lLLxnObZuz2tT9CivfTAUYfmzJlt/lOPgsR6VN64/xQd4Jlk/RV7UKVv2Gx/AWsmTAuCWKhdwC+4HmKEKYZh2Xis4KsUR1BeObs1c13wqFRnocdmuheaTV30gvVXZcouzHKK5zwrN52jXJEuX6dGx3BCpV/++4f3hyaW/cQJLFKqasjsMuO3B3WlMq2gyYfdK1e7L2pO/tRye2mwzwZPfdUMrl5wdLqdd2Kv/wVtnpyWYhd49L6rsOV+8HXPrWH2Kup89l2tz6bf80iYSd+V4LROSOHeamvexR524q4r43rTmtFzQvArpvWfLYFZrbFspBsXNUqqenjxNNsFXatZvlIhk7teUPfK+YL32F8McTnjv0BZNppb+vshoCrtLXjIWq3EJXpVXIlG6ZNL0dh6qEm2WMwDjD3LfOfkGh1/czYc/0qhiD2ozNnH4882MVVt3JbVFkbwowNCO3KL5IoYW5wlVeGCViOuv1svZx7FbzxKzA4zGqBlRRaRWCobXaVq4yYCWbZf8eiJwt3OY+MFiSJengcFP2t0JMfzOiJ7cECvpx7neg1Rc5x+7myPJOXt2FohVRyXtD+/rDoTOyGYInJelZMjolecVHUhUNqvdZWg2J2t0jPmiLFeRD/8fOT4o+NGILb+TufCo9ceBBm3JLVn+MO2675n7qiEX/6W+188cYg3Zn5NSTjgOKfWFSAANa6raCxSoVU851oJLY11WIoYK0du0ec5E4tCnAPoKh71riTsjVIp3gKvBbEYQiNYrmH22oLQWA2AdwMnID6PX9b58dR2QKo4qag1D1Z+L/FwEKTR7osOZPWECPJIHQqPUsM5i/CH5YupVPfFA5pHUBcsesh8eO5YhyWnaVRPZn/BmdXVumZWPxMP5e28zm2uqHgFoT9CymHYNNrzrrjlXZM06HnzDxYNlI5b/QosxLmmrqDFqmogQdqk0WLkUceoAvQxHgkIyvWU69BPFr24VB6+lx75Rna6dGtrmOxDnvBojvi1/4dHjVeg8owofPe1cOnxU1ioh016s/Vudv9mhV9f35At+Sh28h1bpp8xhr09+vf47Elx3Ms6hyp6QvB3t0vnLbOhwo660cp7K0vvepabK7YJfxEWWfrC2YzJfYOjygPwfwd/1amTqa0hZ5ueebhWYVMubRTwIjj+0Oq0ohU3zfRfuL8gt59XsHdwKtxTQQ4Y2qz6gisxnm2UdlmpEkgOsZz7iEk6QOt8BuPwr+NR01LTqXmJo1C76o1N274twJvl+I069TiLpenK/miRxhyY8jvYV6W1WuSwhH9q7kuwnJMtm7IWcqs7HsnyHSqWXLSpYtZGaR1V3t0gauninFPZGtWskF65rtti48UV9uV9KM8kfDYs0pgB00S+TlzTXV6P8mxq15b9En8sz3jWSszcifZa/NuufPNnNTb031pptt0+sRSH/7UG8pzbsgtt3OG3ut7B9JzDMt2mTZuyRNIV8D54TuTrpNcHtgmMlYJeiY9XS83NYJicjRjtJSf9BZLsQv629QdDsKQhTK5CnXhpk7vMNkHzPhm0ExW/VCGApHfPyBagtZQTQmPHx7g5IXXsrQDPzIVhv2LB6Ih138iSDww1JNHrDvzUxvp73MsQBVhW8EbrReaVUcLB1R3PUXyaYG4HpJUcLVxMgDxcPkVRQpL7VTAGabDzbKcvg12t5P8TSGQkrj/gOrpnbiDHwluA73xbXts/L7u468cRWSWRtgTwlQnA47EKg0OiZDgFxAKQQUcsbGomITgeXUAAyKe03eA7Mp4gnyKQmm0LXJtEk6ddksMJCuxDmmHzmVhO+XaN2A54MIh3niw5CF7PwiXFZrnA8wOdeHLvvhdoqIDG9PDI7UnWWHq526T8y6ixJPhkuVKZnoUruOpUgOOp3iIKBjk+yi1vHo5cItHXb1PIKzGaZlRS0g5d3MV2pD8FQdGYLZ73aae/eEIUePMc4NFz8pIUfLCrrF4jVWH5gQneN3S8vANBmUXrEcKGn6hIUN95y1vpsvLwbGpzV9L0ZKTan6TDXM05236uLJcIEMKVAxKNT0K8WljuwNny3BNQRfzovA85beI9zr1AGNYnYCVkR1aGngWURUrgqR+gRrQhxW81l3CHevjvGEPzPMTxdsIfB9dfGRbZU0cg/1mcubtECX4tvaedmNAvTxCJtc2QaoUalGfENCGK7IS/O8CRpdOVca8EWCRwv2sSWE8CJPW5PCugjCXPd3h6U60cPD+bdhtXZuYB6stcoveE7Sm5MM2yvfUHXFSW7KzLmi7/EeEWL0wqcOH9MOSKjhCHHmw+JGLcYE/7SBZQCRggox0ZZTAxrlzNNXYXL5fNIjkdT4YMqVUz6p8YDt049v4OXGdg3qTrtLBUXOZf7ahPlZAY/O+7Sp0bvGSHdyQ8B1LOsplqMb9Se8VAE7gIdSZvxbRSrfl+Lk5Qaqi5QJceqjitdErcHXg/3MryljPSIAMaaloFm1cVwBJ8DNmkDqoGROSHFetrgjQ5CahuKkdH5pRPigMrgTtlFI8ufJPJSUlGgTjbBSvpRc0zypiUn6U5KZqcRoyrtzhmJ7/caeZkmVRwJQeLOG8LY6vP5ChpKhc8Js0El+n6FXqbx9ItdtLtYP92kKfaTLtCi8StLZdENJa9Ex1nOoz1kQ7qxoiZFKRyLf4O4CHRT0T/0W9F8epNKVoeyxUXhy3sQMMsJjQJEyMOjmOhMFgOmmlscV4eFi1CldU92yjwleirEKPW3bPAuEhRZV7JsKV3Lr5cETAiFuX5Nw5UlF7d2HZ96Bh0sgFIL5KGaKSoVYVlvdKpZJVP5+NZ7xDEkQhmDgsDKciazJCXJ6ZN2B3FY2f6VZyGl/t4aunGIAk/BHaS+i+SpdRfnB/OktOvyjinWNfM9Ksr6WwtCa1hCmeRI6icpFM4o8quCLsikU0tMoZI/9EqXRMpKGaWzofl4nQuVQm17d5fU5qXCQeCDqVaL9XJ9qJ08n3G3EFZS28SHEb3cdRBdtO0YcTzil3QknNKEe/smQ1fTb0XbpyNB5xAeuIlf+5KWlEY0DqJbsnzJlQxJPOVyHiKMx5Xu9FcEv1Fbg6Fhm4t+Jyy5JC1W3YO8dYLsO0PXPbxodBgttTbH3rt9Cp1lJIk2r3O1Zqu94eRbnIz2f50lWolYzuKsj4PMok4abHLO8NAC884hiXx5Fy5pWKO0bWL7uEGXaJCtznhP67SlQ4xjWIfgq6EpZ28QMtuZK7JC0RGbl9nA4XtFLug/NLMoH1pGt9IonAJqcEDLyH6TDROcbsmGPaGIxMo41IUAnQVPMPGByp4mOmh9ZQMkBAcksUK55LsZj7E5z5XuZoyWCKu6nHmDq22xI/9Z8YdxJy4kWpD16jLVrpwGLWfyOD0Wd+cBzFBxVaGv7S5k9qwh/5t/LQEXsRqI3Q9Rm3QIoaZW9GlsDaKOUyykyWuhNOprSEi0s1G4rgoiX1V743EELti+pJu5og6X0g6oTynUqlhH9k6ezyRi05NGZHz0nvp3HOJr7ebrAUFrDjbkFBObEvdQWkkUbL0pEvMU46X58vF9j9F3j6kpyetNUBItrEubW9ZvMPM4qNqLlsSBJqOH3XbNwv/cXDXNxN8iFLzUhteisYY+RlHYOuP29/Cb+L+xv+35Rv7xudnZ6ohK4cMPfCG8KI7dNmjNk/H4e84pOxn/sZHK9psfvj8ncA8qJz7O8xqbxESDivGJOZzF7o5PJLQ7g34qAWoyuA+x3btU98LT6ZyGyceIXjrqob2CAVql4VOTQPUQYvHV/g4zAuCZGvYQBtf0wmd5lilrvuEn1BXLny01B4h4SMDlYsnNpm9d7m9h578ufpef9Z4WplqWQvqo52fyUA7J24eZD5av6SyGIV9kpmHNqyvdfzcpEMw97BvknV2fq+MFHun9BT3Lsf8pbzvisWiIQvYkng+8Vxk1V+dli1u56kY50LRjaPdotvT5BwqtwyF+emo/z9J3yVUVGfKrxQtJMOAQWoQii/4dp9wgybSa5mkucmRLtEQZ/pz0tL/NVcgWAd95nEQ3Tg6tNbuyn3Iepz65L3huMUUBntllWuu4DbtOFSMSbpILV4fy6wlM0SOvi6CpLh81c1LreIvKd61uEWBcDw1lUBUW1I0Z+m/PaRlX+PQ/oxg0Ye6KUiIiTF4ADNk59Ydpt5/rkxmq9tV5Kcp/eQLUVVmBzQNVuytQCP6Ezd0G8eLxWyHpmZWJ3bAzkWTtg4lZlw42SQezEmiUPaJUuR/qklVA/87S4ArFCpALdY3QRdUw3G3XbWUp6aq9z0zUizcPa7351p9JXOZyfdZBFnqt90VzQndXB/mwf8LC9STj5kenVpNuqOQQP3mIRJj7eV21FxG8VAxKrEn3c+XfmZ800EPb9/5lIlijscUbB6da0RQaMook0zug1G0tKi/JBC4rw7/D3m4ARzAkzMcVrDcT2SyFtUdWAsFlsPDFqV3N+EjyXaoEePwroaZCiLqEzb8MW+PNE9TmTC01EzWli51PzZvUqkmyuROU+V6ik+Le/9qT6nwzUzf9tP68tYei0YaDGx6kAd7jn1cKqOCuYbiELH9zYqcc4MnRJjkeGiqaGwLImhyeKs+xKJMBlOJ05ow9gGCKZ1VpnMKoSCTbMS+X+23y042zOb5MtcY/6oBeAo1Vy89OTyhpavFP78jXCcFH0t7Gx24hMEOm2gsEfGabVpQgvFqbQKMsknFRRmuPHcZu0Su/WMFphZvB2r/EGbG72rpGGho3h+Msz0uGzJ7hNK2uqQiE1qmn0zgacKYYZBCqsxV+sjbpoVdSilW/b94n2xNb648VmNIoizqEWhBnsen+d0kbCPmRItfWqSBeOd9Wne3c6bcd6uvXOJ6WdiSsuXq0ndhqrQ4QoWUjCjYtZ0EAhnSOP1m44xkf0O7jXghrzSJWxP4a/t72jU29Vu2rvu4n7HfHkkmQOMGSS+NPeLGO5I73mC2B7+lMiBQQZRM9/9liLIfowupUFAbPBbR+lxDM6M8Ptgh1paJq5Rvs7yEuLQv/7d1oU2woFSb3FMPWQOKMuCuJ7pDDjpIclus5TeEoMBy2YdVB4fxmesaCeMNsEgTHKS5WDSGyNUOoEpcC2OFWtIRf0w27ck34/DjxRTVIcc9+kqZE6iMSiVDsiKdP/Xz5XfEhm/sBhO50p1rvJDlkyyxuJ9SPgs7YeUJBjXdeAkE+P9OQJm6SZnn1svcduI78dYmbkE2mtziPrcjVisXG78spLvbZaSFx/Rks9zP4LKn0Cdz/3JsetkT06A8f/yCgMO6Mb1Hme0JJ7b2wZz1qleqTuKBGokhPVUZ0dVu+tnQYNEY1fmkZSz6+EGZ5EzL7657mreZGR3jUfaEk458PDniBzsSmBKhDRzfXameryJv9/D5m6HIqZ0R+ouCE54Dzp4IJuuD1e4Dc5i+PpSORJfG23uVgqixAMDvchMR0nZdH5brclYwRoJRWv/rlxGRI5ffD5NPGmIDt7vDE1434pYdVZIFh89Bs94HGGJbTwrN8T6lh1HZFTOB4lWzWj6EVqxSMvC0/ljWBQ3F2kc/mO2b6tWonT2JEqEwFts8rz2h+oWNds9ceR2cb7zZvJTDppHaEhK5avWqsseWa2Dt5BBhabdWSktS80oMQrL4TvAM9b5HMmyDnO+OkkbMXfUJG7eXqTIG6lqSOEbqVR+qYdP7uWb57WEJqzyh411GAVsDinPs7KvUeXItlcMdOUWzXBH6zscymV1LLVCtc8IePojzXHF9m5b5zGwBRdzcyUJkiu938ApmAayRdJrX1PmVguWUvt2ThQ62czItTyWJMW2An/hdDfMK7SiFQlGIdAbltHz3ycoh7j9V7GxNWBpbtcSdqm4XxRwTawc3cbZ+xfSv9qQfEkDKfZTwCkqWGI/ur250ItXlMlh6vUNWEYIg9A3GzbgmbqvTN8js2YMo87CU5y6nZ4dbJLDQJj9fc7yM7tZzJDZFtqOcU8+mZjYlq4VmifI23iHb1ZoT9E+kT2dolnP1AfiOkt7PQCSykBiXy5mv637IegWSKj9IKrYZf4Lu9+I7ub+mkRdlvYzehh/jaJ9n7HUH5b2IbgeNdkY7wx1yVzxS7pbvky6+nmVUtRllEFfweUQ0/nG017WoUYSxs+j2B4FV/F62EtHlMWZXYrjGHpthnNb1x66LKZ0Qe92INWHdfR/vqp02wMS8r1G4dJqHok8KmQ7947G13a4YXbsGgHcBvRuVu1eAi4/A5+ZixmdSXM73LupB/LH7O9yxLTVXJTyBbI1S49TIROrfVCOb/czZ9pM4JsZx8kUz8dQGv7gUWKxXvTH7QM/3J2OuXXgciUhqY+cgtaOliQQVOYthBLV3xpESZT3rmfEYNZxmpBbb24CRao86prn+i9TNOh8VxRJGXJfXHATJHs1T5txgc/opYrY8XjlGQQbRcoxIBcnVsMjmU1ymmIUL4dviJXndMAJ0Yet+c7O52/p98ytlmAsGBaTAmMhimAnvp1TWNGM9BpuitGj+t810CU2UhorrjPKGtThVC8WaXw04WFnT5fTjqmPyrQ0tN3CkLsctVy2xr0ZWgiWVZ1OrlFjjxJYsOiZv2cAoOvE+7sY0I/TwWcZqMoyIKNOftwP7w++Rfg67ljfovKYa50if3fzE/8aPYVey/Nq35+nH2sLPh/fP5TsylSKGOZ4k69d2PnH43+kq++sRXHQqGArWdwhx+hpwQC6JgT2uxehYU4Zbw7oNb6/HLikPyJROGK2ouyr+vzseESp9G50T4AyFrSqOQ0rroCYP4sMDFBrHn342EyZTMlSyk47rHSq89Y9/nI3zG5lX16Z5lxphguLOcZUndL8wNcrkyjH82jqg8Bo8OYkynrxZvbFno5lUS3OPr8Ko3mX9NoRPdYOKKjD07bvgFgpZ/RF+YzkWvJ/Hs/tUbfeGzGWLxNAjfDzHHMVSDwB5SabQLsIZHiBp43FjGkaienYoDd18hu2BGwOK7U3o70K/WY/kuuKdmdrykIBUdG2mvE91L1JtTbh20mOLbk1vCAamu7utlXeGU2ooVikbU/actcgmsC1FKk2qmj3GWeIWbj4tGIxE7BLcBWUvvcnd/lYxsMV4F917fWeFB/XbINN3qGvIyTpCalz1lVewdIGqeAS/gB8Mi+sA+BqDiX3VGD2eUunTRbSY+AuDy4E3Qx3hAhwnSXX+B0zuj3eQ1miS8Vux2z/l6/BkWtjKGU72aJkOCWhGcSf3+kFkkB15vGOsQrSdFr6qTj0gBYiOlnBO41170gOWHSUoBVRU2JjwppYdhIFDfu7tIRHccSNM5KZOFDPz0TGMAjzzEpeLwTWp+kn201kU6NjbiMQJx83+LX1e1tZ10kuChJZ/XBUQ1dwaBHjTDJDqOympEk8X2M3VtVw21JksChA8w1tTefO3RJ1FMbqZ01bHHkudDB/OhLfe7P5GOHaI28ZXKTMuqo0hLWQ4HabBsGG7NbP1RiXtETz074er6w/OerJWEqjmkq2y51q1BVI+JUudnVa3ogBpzdhFE7fC7kybrAt2Z6RqDjATAUEYeYK45WMupBKQRtQlU+uNsjnzj6ZmGrezA+ASrWxQ6LMkHRXqXwNq7ftv28dUx/ZSJciDXP2SWJsWaN0FjPX9Yko6LobZ7aYW/IdUktI9apTLyHS8DyWPyuoZyxN1TK/vtfxk3HwWh6JczZC8Ftn0bIJay2g+n5wd7lm9rEsKO+svqVmi+c1j88hSCxbzrg4+HEP0Nt1/B6YW1XVm09T1CpAKjc9n18hjqsaFGdfyva1ZG0Xu3ip6N6JGpyTSqY5h4BOlpLPaOnyw45PdXTN+DtAKg7DLrLFTnWusoSBHk3s0d7YouJHq85/R09Tfc37ENXZF48eAYLnq9GLioNcwDZrC6FW6godB8JnqYUPvn0pWLfQz0lM0Yy8Mybgn84Ds3Q9bDP10bLyOV+qzxa4Rd9Dhu7cju8mMaONXK3UqmBQ9qIg7etIwEqM/kECk/Dzja4Bs1xR+Q/tCbc8IKrSGsTdJJ0vge7IG20W687uVmK6icWQ6cD3lwFzgNMGtFvO5qyJeKflGLAAcQZOrkxVwy3cWvqlGpvjmf9Qe6Ap20MPbV92DPV0OhFM4kz8Yr0ffC2zLWSQ1kqY6QdQrttR3kh1YLtQd1kCEv5hVoPIRWl5ERcUTttBIrWp6Xs5Ehh5OUUwI5aEBvuiDmUoENmnVw1FohCrbRp1A1E+XSlWVOTi7ADW+5Ohb9z1vK4qx5R5lPdGCPBJZ00mC+Ssp8VUbgpGAvXWMuWQQRbCqI6Rr2jtxZxtfP7W/8onz+yz0Gs76LaT5HX9ecyiZCB/ZR/gFtMxPsDwohoeCRtiuLxE1GM1vUEUgBv86+eehL58/P56QFGQ/MqOe/vC76L63jzmeax4exd/OKTUvkXg+fOJUHych9xt/9goJMrapSgvXrj8+8vk/N80f22Sewj6cyGqt1B6mztoeklVHHraouhvHJaG/OuBz6DHKMpFmQULU1bRWlyYE0RPXYYkUycIemN7TLtgNCJX6BqdyxDKkegO7nJK5xQ7OVYDZTMf9bVHidtk6DQX9Et+V9M7esgbsYBdEeUpsB0Xvw2kd9+rI7V+m47u+O/tq7mw7262HU1WlS9uFzsV6JxIHNmUCy0QS9e077JGRFbG65z3/dOKB/Zk+yDdKpUmdXjn/aS3N5nv4fK7bMHHmPlHd4E2+iTbV5rpzScRnxk6KARuDTJ8Q1LpK2mP8gj1EbuJ9RIyY+EWK4hCiIDBAS1Tm2IEXAFfgKPgdL9O6mAa06wjCcUAL6EsxPQWO9VNegBPm/0GgkZbDxCynxujX/92vmGcjZRMAY45puak2sFLCLSwXpEsyy5fnF0jGJBhm+fNSHKKUUfy+276A7/feLOFxxUuHRNJI2Osenxyvf8DAGObT60pfTTlhEg9u/KKkhJqm5U1/+BEcSkpFDA5XeCqxwXmPac1jcuZ3JWQ+p0NdWzb/5v1ZvF8GtMTFFEdQjpLO0bwPb0BHNWnip3liDXI2fXf05jjvfJ0NpjLCUgfTh9CMFYVFKEd4Z/OG/2C+N435mnK+9t1gvCiVcaaH7rK4+PjCvpVNiz+t2QyqH1O8x3JKZVl6Q+Lp/XK8wMjVMslOq9FdSw5FtUs/CptXH9PW+wbWHgrV17R5jTVOtGtKFu3nb80T+E0tv9QkzW3J2dbaw/8ddAKZ0pxIaEqLjlPrji3VgJ3GvdFvlqD8075woxh4fVt0JZE0KVFsAvqhe0dqN9b35jtSpnYMXkU+vZq+IAHad3IHc2s/LYrnD1anfG46IFiMIr9oNbZDWvwthqYNqOigaKd/XlLU4XHfk/PXIjPsLy/9/kAtQ+/wKH+hI/IROWj5FPvTZAT9f7j4ZXQyG4M0TujMAFXYkKvEHv1xhySekgXGGqNxWeWKlf8dDAlLuB1cb/qOD+rk7cmwt+1yKpk9cudqBanTi6zTbXRtV8qylNtjyOVKy1HTz0GW9rjt6sSjAZcT5R+KdtyYb0zyqG9pSLuCw5WBwAn7fjBjKLLoxLXMI+52L9cLwIR2B6OllJZLHJ8vDxmWdtF+QJnmt1rsHPIWY20lftk8fYePkAIg6Hgn532QoIpegMxiWgAOfe5/U44APR8Ac0NeZrVh3gEhs12W+tVSiWiUQekf/YBECUy5fdYbA08dd7VzPAP9aiVcIB9k6tY7WdJ1wNV+bHeydNtmC6G5ICtFC1ZwmJU/j8hf0I8TRVKSiz5oYIa93EpUI78X8GYIAZabx47/n8LDAAJ0nNtP1rpROprqKMBRecShca6qXuTSI3jZBLOB3Vp381B5rCGhjSvh/NSVkYp2qIdP/Bg="; + +},{}],6:[function(require,module,exports){ +/* Copyright 2013 Google Inc. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Collection of static dictionary words. +*/ + +var data = require('./dictionary-browser'); +exports.init = function() { + exports.dictionary = data.init(); +}; + +exports.offsetsByLength = new Uint32Array([ + 0, 0, 0, 0, 0, 4096, 9216, 21504, 35840, 44032, + 53248, 63488, 74752, 87040, 93696, 100864, 104704, 106752, 108928, 113536, + 115968, 118528, 119872, 121280, 122016, +]); + +exports.sizeBitsByLength = new Uint8Array([ + 0, 0, 0, 0, 10, 10, 11, 11, 10, 10, + 10, 10, 10, 9, 9, 8, 7, 7, 8, 7, + 7, 6, 6, 5, 5, +]); + +exports.minDictionaryWordLength = 4; +exports.maxDictionaryWordLength = 24; + +},{"./dictionary-browser":4}],7:[function(require,module,exports){ +function HuffmanCode(bits, value) { + this.bits = bits; /* number of bits used for this symbol */ + this.value = value; /* symbol value or table offset */ +} + +exports.HuffmanCode = HuffmanCode; + +var MAX_LENGTH = 15; + +/* Returns reverse(reverse(key, len) + 1, len), where reverse(key, len) is the + bit-wise reversal of the len least significant bits of key. */ +function GetNextKey(key, len) { + var step = 1 << (len - 1); + while (key & step) { + step >>= 1; + } + return (key & (step - 1)) + step; +} + +/* Stores code in table[0], table[step], table[2*step], ..., table[end] */ +/* Assumes that end is an integer multiple of step */ +function ReplicateValue(table, i, step, end, code) { + do { + end -= step; + table[i + end] = new HuffmanCode(code.bits, code.value); + } while (end > 0); +} + +/* Returns the table width of the next 2nd level table. count is the histogram + of bit lengths for the remaining symbols, len is the code length of the next + processed symbol */ +function NextTableBitSize(count, len, root_bits) { + var left = 1 << (len - root_bits); + while (len < MAX_LENGTH) { + left -= count[len]; + if (left <= 0) break; + ++len; + left <<= 1; + } + return len - root_bits; +} + +exports.BrotliBuildHuffmanTable = function(root_table, table, root_bits, code_lengths, code_lengths_size) { + var start_table = table; + var code; /* current table entry */ + var len; /* current code length */ + var symbol; /* symbol index in original or sorted table */ + var key; /* reversed prefix code */ + var step; /* step size to replicate values in current table */ + var low; /* low bits for current root entry */ + var mask; /* mask for low bits */ + var table_bits; /* key length of current table */ + var table_size; /* size of current table */ + var total_size; /* sum of root table size and 2nd level table sizes */ + var sorted; /* symbols sorted by code length */ + var count = new Int32Array(MAX_LENGTH + 1); /* number of codes of each length */ + var offset = new Int32Array(MAX_LENGTH + 1); /* offsets in sorted table for each length */ + + sorted = new Int32Array(code_lengths_size); + + /* build histogram of code lengths */ + for (symbol = 0; symbol < code_lengths_size; symbol++) { + count[code_lengths[symbol]]++; + } + + /* generate offsets into sorted symbol table by code length */ + offset[1] = 0; + for (len = 1; len < MAX_LENGTH; len++) { + offset[len + 1] = offset[len] + count[len]; + } + + /* sort symbols by length, by symbol order within each length */ + for (symbol = 0; symbol < code_lengths_size; symbol++) { + if (code_lengths[symbol] !== 0) { + sorted[offset[code_lengths[symbol]]++] = symbol; + } + } + + table_bits = root_bits; + table_size = 1 << table_bits; + total_size = table_size; + + /* special case code with only one value */ + if (offset[MAX_LENGTH] === 1) { + for (key = 0; key < total_size; ++key) { + root_table[table + key] = new HuffmanCode(0, sorted[0] & 0xffff); + } + + return total_size; + } + + /* fill in root table */ + key = 0; + symbol = 0; + for (len = 1, step = 2; len <= root_bits; ++len, step <<= 1) { + for (; count[len] > 0; --count[len]) { + code = new HuffmanCode(len & 0xff, sorted[symbol++] & 0xffff); + ReplicateValue(root_table, table + key, step, table_size, code); + key = GetNextKey(key, len); + } + } + + /* fill in 2nd level tables and add pointers to root table */ + mask = total_size - 1; + low = -1; + for (len = root_bits + 1, step = 2; len <= MAX_LENGTH; ++len, step <<= 1) { + for (; count[len] > 0; --count[len]) { + if ((key & mask) !== low) { + table += table_size; + table_bits = NextTableBitSize(count, len, root_bits); + table_size = 1 << table_bits; + total_size += table_size; + low = key & mask; + root_table[start_table + low] = new HuffmanCode((table_bits + root_bits) & 0xff, ((table - start_table) - low) & 0xffff); + } + code = new HuffmanCode((len - root_bits) & 0xff, sorted[symbol++] & 0xffff); + ReplicateValue(root_table, table + (key >> root_bits), step, table_size, code); + key = GetNextKey(key, len); + } + } + + return total_size; +} + +},{}],8:[function(require,module,exports){ +'use strict' + +exports.byteLength = byteLength +exports.toByteArray = toByteArray +exports.fromByteArray = fromByteArray + +var lookup = [] +var revLookup = [] +var Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array + +var code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' +for (var i = 0, len = code.length; i < len; ++i) { + lookup[i] = code[i] + revLookup[code.charCodeAt(i)] = i +} + +// Support decoding URL-safe base64 strings, as Node.js does. +// See: https://en.wikipedia.org/wiki/Base64#URL_applications +revLookup['-'.charCodeAt(0)] = 62 +revLookup['_'.charCodeAt(0)] = 63 + +function getLens (b64) { + var len = b64.length + + if (len % 4 > 0) { + throw new Error('Invalid string. Length must be a multiple of 4') + } + + // Trim off extra bytes after placeholder bytes are found + // See: https://github.com/beatgammit/base64-js/issues/42 + var validLen = b64.indexOf('=') + if (validLen === -1) validLen = len + + var placeHoldersLen = validLen === len + ? 0 + : 4 - (validLen % 4) + + return [validLen, placeHoldersLen] +} + +// base64 is 4/3 + up to two characters of the original data +function byteLength (b64) { + var lens = getLens(b64) + var validLen = lens[0] + var placeHoldersLen = lens[1] + return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen +} + +function _byteLength (b64, validLen, placeHoldersLen) { + return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen +} + +function toByteArray (b64) { + var tmp + var lens = getLens(b64) + var validLen = lens[0] + var placeHoldersLen = lens[1] + + var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen)) + + var curByte = 0 + + // if there are placeholders, only get up to the last complete 4 chars + var len = placeHoldersLen > 0 + ? validLen - 4 + : validLen + + for (var i = 0; i < len; i += 4) { + tmp = + (revLookup[b64.charCodeAt(i)] << 18) | + (revLookup[b64.charCodeAt(i + 1)] << 12) | + (revLookup[b64.charCodeAt(i + 2)] << 6) | + revLookup[b64.charCodeAt(i + 3)] + arr[curByte++] = (tmp >> 16) & 0xFF + arr[curByte++] = (tmp >> 8) & 0xFF + arr[curByte++] = tmp & 0xFF + } + + if (placeHoldersLen === 2) { + tmp = + (revLookup[b64.charCodeAt(i)] << 2) | + (revLookup[b64.charCodeAt(i + 1)] >> 4) + arr[curByte++] = tmp & 0xFF + } + + if (placeHoldersLen === 1) { + tmp = + (revLookup[b64.charCodeAt(i)] << 10) | + (revLookup[b64.charCodeAt(i + 1)] << 4) | + (revLookup[b64.charCodeAt(i + 2)] >> 2) + arr[curByte++] = (tmp >> 8) & 0xFF + arr[curByte++] = tmp & 0xFF + } + + return arr +} + +function tripletToBase64 (num) { + return lookup[num >> 18 & 0x3F] + + lookup[num >> 12 & 0x3F] + + lookup[num >> 6 & 0x3F] + + lookup[num & 0x3F] +} + +function encodeChunk (uint8, start, end) { + var tmp + var output = [] + for (var i = start; i < end; i += 3) { + tmp = + ((uint8[i] << 16) & 0xFF0000) + + ((uint8[i + 1] << 8) & 0xFF00) + + (uint8[i + 2] & 0xFF) + output.push(tripletToBase64(tmp)) + } + return output.join('') +} + +function fromByteArray (uint8) { + var tmp + var len = uint8.length + var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes + var parts = [] + var maxChunkLength = 16383 // must be multiple of 3 + + // go through the array every three bytes, we'll deal with trailing stuff later + for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) { + parts.push(encodeChunk( + uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength) + )) + } + + // pad the end with zeros, but make sure to not forget the extra bytes + if (extraBytes === 1) { + tmp = uint8[len - 1] + parts.push( + lookup[tmp >> 2] + + lookup[(tmp << 4) & 0x3F] + + '==' + ) + } else if (extraBytes === 2) { + tmp = (uint8[len - 2] << 8) + uint8[len - 1] + parts.push( + lookup[tmp >> 10] + + lookup[(tmp >> 4) & 0x3F] + + lookup[(tmp << 2) & 0x3F] + + '=' + ) + } + + return parts.join('') +} + +},{}],9:[function(require,module,exports){ +/* Copyright 2013 Google Inc. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Lookup tables to map prefix codes to value ranges. This is used during + decoding of the block lengths, literal insertion lengths and copy lengths. +*/ + +/* Represents the range of values belonging to a prefix code: */ +/* [offset, offset + 2^nbits) */ +function PrefixCodeRange(offset, nbits) { + this.offset = offset; + this.nbits = nbits; +} + +exports.kBlockLengthPrefixCode = [ + new PrefixCodeRange(1, 2), new PrefixCodeRange(5, 2), new PrefixCodeRange(9, 2), new PrefixCodeRange(13, 2), + new PrefixCodeRange(17, 3), new PrefixCodeRange(25, 3), new PrefixCodeRange(33, 3), new PrefixCodeRange(41, 3), + new PrefixCodeRange(49, 4), new PrefixCodeRange(65, 4), new PrefixCodeRange(81, 4), new PrefixCodeRange(97, 4), + new PrefixCodeRange(113, 5), new PrefixCodeRange(145, 5), new PrefixCodeRange(177, 5), new PrefixCodeRange(209, 5), + new PrefixCodeRange(241, 6), new PrefixCodeRange(305, 6), new PrefixCodeRange(369, 7), new PrefixCodeRange(497, 8), + new PrefixCodeRange(753, 9), new PrefixCodeRange(1265, 10), new PrefixCodeRange(2289, 11), new PrefixCodeRange(4337, 12), + new PrefixCodeRange(8433, 13), new PrefixCodeRange(16625, 24) +]; + +exports.kInsertLengthPrefixCode = [ + new PrefixCodeRange(0, 0), new PrefixCodeRange(1, 0), new PrefixCodeRange(2, 0), new PrefixCodeRange(3, 0), + new PrefixCodeRange(4, 0), new PrefixCodeRange(5, 0), new PrefixCodeRange(6, 1), new PrefixCodeRange(8, 1), + new PrefixCodeRange(10, 2), new PrefixCodeRange(14, 2), new PrefixCodeRange(18, 3), new PrefixCodeRange(26, 3), + new PrefixCodeRange(34, 4), new PrefixCodeRange(50, 4), new PrefixCodeRange(66, 5), new PrefixCodeRange(98, 5), + new PrefixCodeRange(130, 6), new PrefixCodeRange(194, 7), new PrefixCodeRange(322, 8), new PrefixCodeRange(578, 9), + new PrefixCodeRange(1090, 10), new PrefixCodeRange(2114, 12), new PrefixCodeRange(6210, 14), new PrefixCodeRange(22594, 24), +]; + +exports.kCopyLengthPrefixCode = [ + new PrefixCodeRange(2, 0), new PrefixCodeRange(3, 0), new PrefixCodeRange(4, 0), new PrefixCodeRange(5, 0), + new PrefixCodeRange(6, 0), new PrefixCodeRange(7, 0), new PrefixCodeRange(8, 0), new PrefixCodeRange(9, 0), + new PrefixCodeRange(10, 1), new PrefixCodeRange(12, 1), new PrefixCodeRange(14, 2), new PrefixCodeRange(18, 2), + new PrefixCodeRange(22, 3), new PrefixCodeRange(30, 3), new PrefixCodeRange(38, 4), new PrefixCodeRange(54, 4), + new PrefixCodeRange(70, 5), new PrefixCodeRange(102, 5), new PrefixCodeRange(134, 6), new PrefixCodeRange(198, 7), + new PrefixCodeRange(326, 8), new PrefixCodeRange(582, 9), new PrefixCodeRange(1094, 10), new PrefixCodeRange(2118, 24), +]; + +exports.kInsertRangeLut = [ + 0, 0, 8, 8, 0, 16, 8, 16, 16, +]; + +exports.kCopyRangeLut = [ + 0, 8, 0, 8, 16, 0, 16, 8, 16, +]; + +},{}],10:[function(require,module,exports){ +function BrotliInput(buffer) { + this.buffer = buffer; + this.pos = 0; +} + +BrotliInput.prototype.read = function(buf, i, count) { + if (this.pos + count > this.buffer.length) { + count = this.buffer.length - this.pos; + } + + for (var p = 0; p < count; p++) + buf[i + p] = this.buffer[this.pos + p]; + + this.pos += count; + return count; +} + +exports.BrotliInput = BrotliInput; + +function BrotliOutput(buf) { + this.buffer = buf; + this.pos = 0; +} + +BrotliOutput.prototype.write = function(buf, count) { + if (this.pos + count > this.buffer.length) + throw new Error('Output buffer is not large enough'); + + this.buffer.set(buf.subarray(0, count), this.pos); + this.pos += count; + return count; +}; + +exports.BrotliOutput = BrotliOutput; + +},{}],11:[function(require,module,exports){ +/* Copyright 2013 Google Inc. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Transformations on dictionary words. +*/ + +var BrotliDictionary = require('./dictionary'); + +var kIdentity = 0; +var kOmitLast1 = 1; +var kOmitLast2 = 2; +var kOmitLast3 = 3; +var kOmitLast4 = 4; +var kOmitLast5 = 5; +var kOmitLast6 = 6; +var kOmitLast7 = 7; +var kOmitLast8 = 8; +var kOmitLast9 = 9; +var kUppercaseFirst = 10; +var kUppercaseAll = 11; +var kOmitFirst1 = 12; +var kOmitFirst2 = 13; +var kOmitFirst3 = 14; +var kOmitFirst4 = 15; +var kOmitFirst5 = 16; +var kOmitFirst6 = 17; +var kOmitFirst7 = 18; +var kOmitFirst8 = 19; +var kOmitFirst9 = 20; + +function Transform(prefix, transform, suffix) { + this.prefix = new Uint8Array(prefix.length); + this.transform = transform; + this.suffix = new Uint8Array(suffix.length); + + for (var i = 0; i < prefix.length; i++) + this.prefix[i] = prefix.charCodeAt(i); + + for (var i = 0; i < suffix.length; i++) + this.suffix[i] = suffix.charCodeAt(i); +} + +var kTransforms = [ + new Transform( "", kIdentity, "" ), + new Transform( "", kIdentity, " " ), + new Transform( " ", kIdentity, " " ), + new Transform( "", kOmitFirst1, "" ), + new Transform( "", kUppercaseFirst, " " ), + new Transform( "", kIdentity, " the " ), + new Transform( " ", kIdentity, "" ), + new Transform( "s ", kIdentity, " " ), + new Transform( "", kIdentity, " of " ), + new Transform( "", kUppercaseFirst, "" ), + new Transform( "", kIdentity, " and " ), + new Transform( "", kOmitFirst2, "" ), + new Transform( "", kOmitLast1, "" ), + new Transform( ", ", kIdentity, " " ), + new Transform( "", kIdentity, ", " ), + new Transform( " ", kUppercaseFirst, " " ), + new Transform( "", kIdentity, " in " ), + new Transform( "", kIdentity, " to " ), + new Transform( "e ", kIdentity, " " ), + new Transform( "", kIdentity, "\"" ), + new Transform( "", kIdentity, "." ), + new Transform( "", kIdentity, "\">" ), + new Transform( "", kIdentity, "\n" ), + new Transform( "", kOmitLast3, "" ), + new Transform( "", kIdentity, "]" ), + new Transform( "", kIdentity, " for " ), + new Transform( "", kOmitFirst3, "" ), + new Transform( "", kOmitLast2, "" ), + new Transform( "", kIdentity, " a " ), + new Transform( "", kIdentity, " that " ), + new Transform( " ", kUppercaseFirst, "" ), + new Transform( "", kIdentity, ". " ), + new Transform( ".", kIdentity, "" ), + new Transform( " ", kIdentity, ", " ), + new Transform( "", kOmitFirst4, "" ), + new Transform( "", kIdentity, " with " ), + new Transform( "", kIdentity, "'" ), + new Transform( "", kIdentity, " from " ), + new Transform( "", kIdentity, " by " ), + new Transform( "", kOmitFirst5, "" ), + new Transform( "", kOmitFirst6, "" ), + new Transform( " the ", kIdentity, "" ), + new Transform( "", kOmitLast4, "" ), + new Transform( "", kIdentity, ". The " ), + new Transform( "", kUppercaseAll, "" ), + new Transform( "", kIdentity, " on " ), + new Transform( "", kIdentity, " as " ), + new Transform( "", kIdentity, " is " ), + new Transform( "", kOmitLast7, "" ), + new Transform( "", kOmitLast1, "ing " ), + new Transform( "", kIdentity, "\n\t" ), + new Transform( "", kIdentity, ":" ), + new Transform( " ", kIdentity, ". " ), + new Transform( "", kIdentity, "ed " ), + new Transform( "", kOmitFirst9, "" ), + new Transform( "", kOmitFirst7, "" ), + new Transform( "", kOmitLast6, "" ), + new Transform( "", kIdentity, "(" ), + new Transform( "", kUppercaseFirst, ", " ), + new Transform( "", kOmitLast8, "" ), + new Transform( "", kIdentity, " at " ), + new Transform( "", kIdentity, "ly " ), + new Transform( " the ", kIdentity, " of " ), + new Transform( "", kOmitLast5, "" ), + new Transform( "", kOmitLast9, "" ), + new Transform( " ", kUppercaseFirst, ", " ), + new Transform( "", kUppercaseFirst, "\"" ), + new Transform( ".", kIdentity, "(" ), + new Transform( "", kUppercaseAll, " " ), + new Transform( "", kUppercaseFirst, "\">" ), + new Transform( "", kIdentity, "=\"" ), + new Transform( " ", kIdentity, "." ), + new Transform( ".com/", kIdentity, "" ), + new Transform( " the ", kIdentity, " of the " ), + new Transform( "", kUppercaseFirst, "'" ), + new Transform( "", kIdentity, ". This " ), + new Transform( "", kIdentity, "," ), + new Transform( ".", kIdentity, " " ), + new Transform( "", kUppercaseFirst, "(" ), + new Transform( "", kUppercaseFirst, "." ), + new Transform( "", kIdentity, " not " ), + new Transform( " ", kIdentity, "=\"" ), + new Transform( "", kIdentity, "er " ), + new Transform( " ", kUppercaseAll, " " ), + new Transform( "", kIdentity, "al " ), + new Transform( " ", kUppercaseAll, "" ), + new Transform( "", kIdentity, "='" ), + new Transform( "", kUppercaseAll, "\"" ), + new Transform( "", kUppercaseFirst, ". " ), + new Transform( " ", kIdentity, "(" ), + new Transform( "", kIdentity, "ful " ), + new Transform( " ", kUppercaseFirst, ". " ), + new Transform( "", kIdentity, "ive " ), + new Transform( "", kIdentity, "less " ), + new Transform( "", kUppercaseAll, "'" ), + new Transform( "", kIdentity, "est " ), + new Transform( " ", kUppercaseFirst, "." ), + new Transform( "", kUppercaseAll, "\">" ), + new Transform( " ", kIdentity, "='" ), + new Transform( "", kUppercaseFirst, "," ), + new Transform( "", kIdentity, "ize " ), + new Transform( "", kUppercaseAll, "." ), + new Transform( "\xc2\xa0", kIdentity, "" ), + new Transform( " ", kIdentity, "," ), + new Transform( "", kUppercaseFirst, "=\"" ), + new Transform( "", kUppercaseAll, "=\"" ), + new Transform( "", kIdentity, "ous " ), + new Transform( "", kUppercaseAll, ", " ), + new Transform( "", kUppercaseFirst, "='" ), + new Transform( " ", kUppercaseFirst, "," ), + new Transform( " ", kUppercaseAll, "=\"" ), + new Transform( " ", kUppercaseAll, ", " ), + new Transform( "", kUppercaseAll, "," ), + new Transform( "", kUppercaseAll, "(" ), + new Transform( "", kUppercaseAll, ". " ), + new Transform( " ", kUppercaseAll, "." ), + new Transform( "", kUppercaseAll, "='" ), + new Transform( " ", kUppercaseAll, ". " ), + new Transform( " ", kUppercaseFirst, "=\"" ), + new Transform( " ", kUppercaseAll, "='" ), + new Transform( " ", kUppercaseFirst, "='" ) +]; + +exports.kTransforms = kTransforms; +exports.kNumTransforms = kTransforms.length; + +function ToUpperCase(p, i) { + if (p[i] < 0xc0) { + if (p[i] >= 97 && p[i] <= 122) { + p[i] ^= 32; + } + return 1; + } + + /* An overly simplified uppercasing model for utf-8. */ + if (p[i] < 0xe0) { + p[i + 1] ^= 32; + return 2; + } + + /* An arbitrary transform for three byte characters. */ + p[i + 2] ^= 5; + return 3; +} + +exports.transformDictionaryWord = function(dst, idx, word, len, transform) { + var prefix = kTransforms[transform].prefix; + var suffix = kTransforms[transform].suffix; + var t = kTransforms[transform].transform; + var skip = t < kOmitFirst1 ? 0 : t - (kOmitFirst1 - 1); + var i = 0; + var start_idx = idx; + var uppercase; + + if (skip > len) { + skip = len; + } + + var prefix_pos = 0; + while (prefix_pos < prefix.length) { + dst[idx++] = prefix[prefix_pos++]; + } + + word += skip; + len -= skip; + + if (t <= kOmitLast9) { + len -= t; + } + + for (i = 0; i < len; i++) { + dst[idx++] = BrotliDictionary.dictionary[word + i]; + } + + uppercase = idx - len; + + if (t === kUppercaseFirst) { + ToUpperCase(dst, uppercase); + } else if (t === kUppercaseAll) { + while (len > 0) { + var step = ToUpperCase(dst, uppercase); + uppercase += step; + len -= step; + } + } + + var suffix_pos = 0; + while (suffix_pos < suffix.length) { + dst[idx++] = suffix[suffix_pos++]; + } + + return idx - start_idx; +} + +},{"./dictionary":6}],12:[function(require,module,exports){ +module.exports = require('./dec/decode').BrotliDecompressBuffer; + +},{"./dec/decode":3}]},{},[12])(12) +}); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/constants.js b/packages/edit-site/src/components/global-styles/font-library-modal/constants.js index 65aa9dfc97429..c52026f099301 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/constants.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/constants.js @@ -45,6 +45,6 @@ export const DEFAULT_DEMO_CONFIG = { export const ALLOWED_FILE_EXTENSIONS = [ 'otf', 'ttf', - // 'woff', - // 'woff2', + 'woff', + 'woff2', ]; diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/local-font-variant.js b/packages/edit-site/src/components/global-styles/font-library-modal/local-font-variant.js index 14bc23ad5768c..5907a4f9aee73 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/local-font-variant.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/local-font-variant.js @@ -1,4 +1,4 @@ -import { Font } from "lib-font"; +import { Font } from "../../../../lib/lib-font.browser"; /** * WordPress dependencies diff --git a/tools/webpack/packages.js b/tools/webpack/packages.js index 9b34e2171de56..30f73a82fa0da 100644 --- a/tools/webpack/packages.js +++ b/tools/webpack/packages.js @@ -157,10 +157,4 @@ module.exports = { .concat( vendorsCopyConfig ), } ), ].filter( Boolean ), - resolve: { - fallback: { - zlib: false, - fs: false, - }, - }, }; From 179a769ea3a29edeed07c5c81bc5cb06bede775d Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 14 Jun 2023 16:18:18 +0300 Subject: [PATCH 083/116] use content_url instead of site_url Co-authored-by: Jonny Harris --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 2df24d4463495..64b3e5b603ae8 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -11,7 +11,7 @@ class WP_Fonts_Library { public function __construct() { $this->wp_fonts_dir = path_join( WP_CONTENT_DIR, 'fonts' ); - $this->relative_fonts_path = site_url('/wp-content/fonts/', 'relative'); + $this->relative_fonts_path = content_url('/fonts/'); $this->rest_base = 'fonts_library'; $this->namespace = 'wp/v2'; From fcf428c61dfd35c62a3dce76c74a6266cb0b7015 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 14 Jun 2023 17:46:51 +0300 Subject: [PATCH 084/116] list all the font families from theme json --- .../src/components/global-styles/font-families.js | 12 +++++++----- .../global-styles/font-library-modal/context.js | 4 ++-- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-families.js b/packages/edit-site/src/components/global-styles/font-families.js index b1cc6254059f2..6bb436969f9eb 100644 --- a/packages/edit-site/src/components/global-styles/font-families.js +++ b/packages/edit-site/src/components/global-styles/font-families.js @@ -23,10 +23,6 @@ import Subtitle from './subtitle'; function FontFamilies() { const { modalTabOepn, toggleModal, themeFonts, customFonts } = useContext( FontLibraryContext ); - const fonts = Array.isArray( customFonts ) - ? customFonts - : themeFonts || []; - return ( <> { !! modalTabOepn && ( @@ -59,7 +55,13 @@ function FontFamilies() { - { fonts.map( font => ( + { customFonts.map( font => ( + + ) ) } + { themeFonts.map( font => ( ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) - : null; + : []; const customFonts = fontFamilies.custom ? fontFamilies.custom .map( setFallbackValues ) .sort( ( a, b ) => ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) - : null; + : []; // Library Fonts const [ modalTabOepn, setModalTabOepn ] = useState( false ); From 9f3f39ef111c045e53bda9279acdbca1e07d28ab Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 15 Jun 2023 00:57:49 +0300 Subject: [PATCH 085/116] Extend WP_Rest_Controller Co-authored-by: Jonny Harris --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 64b3e5b603ae8..3edf0b6a5f472 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -8,7 +8,7 @@ * @since x.x.x * */ -class WP_Fonts_Library { +class WP_Fonts_Library extends WP_REST_Controller { public function __construct() { $this->wp_fonts_dir = path_join( WP_CONTENT_DIR, 'fonts' ); $this->relative_fonts_path = content_url('/fonts/'); From a34bec8dbad6f1227ca7022d8aa803fa492bd8c5 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 21 Jun 2023 10:58:59 +0200 Subject: [PATCH 086/116] Add _Controller to PHP class name Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 3edf0b6a5f472..ab9352654b806 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -8,7 +8,7 @@ * @since x.x.x * */ -class WP_Fonts_Library extends WP_REST_Controller { +class WP_Fonts_Library_Controller extends WP_REST_Controller { public function __construct() { $this->wp_fonts_dir = path_join( WP_CONTENT_DIR, 'fonts' ); $this->relative_fonts_path = content_url('/fonts/'); From b990eacc3cb54c9c2a951366fb548593b47d1551 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 21 Jun 2023 11:02:52 +0200 Subject: [PATCH 087/116] comment spell fix Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index ab9352654b806..32f1a3b5321c2 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -569,7 +569,7 @@ function move_font_face_asset ( $font_face, $file ) { $file_was_moved = move_uploaded_file( $file['tmp_name'], $filepath ); if ( $file_was_moved ) { - // If the file was succesfully moved, we update the font face definition to reference the new file location + // If the file was successfully moved, we update the font face definition to reference the new file location $new_font_face['src'] = "{$this->relative_fonts_path}{$filename}"; } From b2d0d93c7b7d16df627d0b15bf0e384acb29275d Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 21 Jun 2023 11:05:20 +0200 Subject: [PATCH 088/116] comment spell fix Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 32f1a3b5321c2..d76e8c419d7b2 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -460,7 +460,7 @@ function install_fonts ( $request ) { $new_fonts = $this->download_or_move_fonts( $fonts_to_install, $files ); if ( ! empty ( $new_fonts ) ){ - // Updates the fonts library with the new fonts succesfully downloaded + // Updates the fonts library with the new successfully downloaded fonts. $new_library_fonts = $this->merge_fonts( $font_families, $new_fonts ); // Sanitizes the fonts library using WP_Theme_JSON From 5b79d358670ff89f0794790bed318c5feb59cae1 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 21 Jun 2023 11:06:13 +0200 Subject: [PATCH 089/116] minor syntax change Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index d76e8c419d7b2..b067e30eae0e0 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -338,7 +338,7 @@ function get_filename_from_font_face ( $font_face, $url, $i=0 ) { $weight = sanitize_title( $font_face['fontWeight'] ); $filename = "{$family}_{$style}_{$weight}"; if ($i > 0) { - $filename = "{$filename}_{$i}"; + $filename .= "_{$i}"; } return "{$filename}.{$extension}"; } From 04c2c697610addc653a9ae4aca6579da9c3fa1c5 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 21 Jun 2023 11:07:21 +0200 Subject: [PATCH 090/116] comment spelling fix Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index b067e30eae0e0..18342c436092f 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -523,7 +523,7 @@ function download_or_move_fonts ( $fonts, $files ) { $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face[ 'file' ] ] ); } - // If the font face assets were succesfully downloaded, we add the font face to the new font + // If the font face assets were successfully downloaded, we add the font face to the new font. // Font faces with failed downloads are not added to the new font if ( !empty ( $new_font_face['src'] ) ){ $new_font_faces[] = $new_font_face; From 3d3b958b3335045fae5e3ce1a56611e564e39792 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 21 Jun 2023 11:35:01 +0200 Subject: [PATCH 091/116] comment spelling Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 18342c436092f..6c618b23f7e34 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -557,7 +557,7 @@ function move_font_face_asset ( $font_face, $file ) { $filename = $this->get_filename_from_font_face( $font_face, $file['name'] ); $filepath= path_join( $this->wp_fonts_dir, $filename ); - // Remove the uploaded font asset reference from the font face definition because is not longer needed + // Remove the uploaded font asset reference from the font face definition because it is no longer needed. unset( $new_font_face['file'] ); // If the filepath has not a font mime type, we don't move the file and return the font face definition without src to be ignored later From 2dddc5d2cc2c2c3c6eab64870bc25aca0f1af3d8 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 21 Jun 2023 11:41:18 +0200 Subject: [PATCH 092/116] comment spelling Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 6c618b23f7e34..7190d6f37469f 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -534,7 +534,7 @@ function download_or_move_fonts ( $fonts, $files ) { $new_font['fontFace'] = $new_font_faces; } - // If the font face assets were succesfully downloaded, we add the font to the new fonts array + // If the font face assets were successfully downloaded, we add the font to the new fonts array. // Fonts without no font faces successfully downloaded are not added to the new fonts array if ( ! empty ( $new_font['fontFace'] ) ){ $new_fonts[] = $new_font; From abaaa9e23b12ea49bb251afb050c1001f59131d6 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 21 Jun 2023 11:47:47 +0200 Subject: [PATCH 093/116] updating class name --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 7190d6f37469f..277372da162b4 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -611,7 +611,7 @@ function merge_fonts ( $current_fonts, $add_fonts ) { } function fonts_library_register_routes () { - $fonts_library = new WP_Fonts_Library(); + $fonts_library = new WP_Fonts_Library_Controller(); $fonts_library->register_routes(); } From bd3ab6d41b3830ff9fd5a3b9fe20a6dc73d3ecd5 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 21 Jun 2023 15:21:15 +0200 Subject: [PATCH 094/116] Refactoring the use of global settings state --- .../font-library-modal/context.js | 81 +++++++++++-------- .../font-library-modal/installed-fonts.js | 10 +-- .../global-styles/font-library-modal/utils.js | 7 +- 3 files changed, 58 insertions(+), 40 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index a961ee5270df5..818221ea91f1a 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -22,31 +22,54 @@ import { import { unlock } from '../../../private-apis'; import { DEFAULT_DEMO_CONFIG } from './constants'; const { useGlobalSetting } = unlock( blockEditorPrivateApis ); -import { setFallbackValues, isUrlEncoded } from './utils'; +import { setUIValuesNeeded, isUrlEncoded } from './utils'; export const FontLibraryContext = createContext( {} ); function FontLibraryProvider( { children } ) { - // Global settings fonts + // Global Styles (settings) font families const [ fontFamilies, setFontFamilies ] = useGlobalSetting( 'typography.fontFamilies' ); + // theme.json file font families + const [ baseFontFamilies ] = useGlobalSetting( + 'typography.fontFamilies', undefined, 'base' + ); + + // Library Fonts + const [ modalTabOepn, setModalTabOepn ] = useState( false ); + const [ libraryFonts, setLibraryFonts ] = useState( [] ); + const [ libraryFontSelected, setLibraryFontSelected ] = useState( null ); + + const baseThemeFonts = baseFontFamilies?.theme + ? baseFontFamilies.theme + .map( f => setUIValuesNeeded(f, { source: 'theme' }) ) + .sort( ( a, b ) => ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) + : []; const themeFonts = fontFamilies.theme ? fontFamilies.theme - .map( setFallbackValues ) + .map( f => setUIValuesNeeded(f, { source: 'theme' }) ) .sort( ( a, b ) => ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) : []; + const customFonts = fontFamilies.custom ? fontFamilies.custom - .map( setFallbackValues ) + .map( f => setUIValuesNeeded(f, { source: 'custom' }) ) .sort( ( a, b ) => ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) : []; - // Library Fonts - const [ modalTabOepn, setModalTabOepn ] = useState( false ); - const [ libraryFonts, setLibraryFonts ] = useState( [] ); - const [ libraryFontSelected, setLibraryFontSelected ] = useState( null ); + const baseCustomFonts = libraryFonts + ? libraryFonts + .map( f => setUIValuesNeeded(f, { source: 'custom' }) ) + .sort( ( a, b ) => ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) + : []; + + useEffect( () => { + if ( ! modalTabOepn ) { + setLibraryFontSelected( null ); + } + }, [ modalTabOepn ] ); const handleSetLibraryFontSelected = ( font ) => { // If font is null, reset the selected font @@ -55,27 +78,21 @@ function FontLibraryProvider( { children } ) { return; } + const fonts = font.source === 'theme' ? baseThemeFonts : baseCustomFonts; + // Tries to find the font in the installed fonts - const installedFontSelected = installedFonts.find( ( f ) => f.slug === font.slug ); + const fontSelected = fonts.find( ( f ) => f.slug === font.slug ); // If the font is not found (it is only defined in custom styles), use the font from custom styles - setLibraryFontSelected ( installedFontSelected || font ); + setLibraryFontSelected ({ + ...( fontSelected || font ), + source: font.source, + }); }; const toggleModal = ( tabName ) => { setModalTabOepn( tabName || null ); }; - // Installed fonts - const installedFonts = useMemo( () => { - const fromTheme = - themeFonts.map( ( f ) => ( { - ...f, - source: 'theme', - } ) ) || []; - const fromLibrary = libraryFonts || []; - return [ ...fromTheme, ...fromLibrary ]; - }, [ themeFonts, libraryFonts ] ); - // Google Fonts const [ googleFonts, setGoogleFonts ] = useState( null ); const [ googleFontsCategories, setGoogleFontsCategories ] = @@ -139,7 +156,7 @@ function FontLibraryProvider( { children } ) { const activatedFontsOutline = useMemo( () => { return getAvailableFontsOutline( - customFonts === null ? themeFonts : customFonts + [].concat( themeFonts, customFonts ) ); }, [ customFonts ] ); @@ -165,14 +182,12 @@ function FontLibraryProvider( { children } ) { } const toggleActivateFont = ( font, face ) => { + const source = font.source || 'custom'; + // If the user doesn't have custom fonts defined, include as custom fonts all the theme fonts // We want to save as active all the theme fonts at the beginning - const initialCustomFonts = - customFonts !== null ? customFonts : themeFonts; + const initialCustomFonts = fontFamilies[ source ] || []; - const installedFont = installedFonts.find( - ( f ) => f.slug === font.slug - ); const activatedFont = initialCustomFonts.find( ( f ) => f.slug === font.slug ); @@ -182,7 +197,7 @@ function FontLibraryProvider( { children } ) { if ( ! face ) { if ( ! activatedFont ) { // If the font is not active, activate the entire font family - newCustomFonts = [ ...initialCustomFonts, installedFont ]; + newCustomFonts = [ ...initialCustomFonts, font ]; } else { // If the font is already active, deactivate the entire font family newCustomFonts = initialCustomFonts.filter( @@ -242,10 +257,10 @@ function FontLibraryProvider( { children } ) { ]; } } - + console.log('source', newCustomFonts); setFontFamilies( { - theme: themeFonts, - custom: newCustomFonts, + ...fontFamilies, + [ source ]: newCustomFonts, } ); }; @@ -296,9 +311,9 @@ function FontLibraryProvider( { children } ) { libraryFontSelected, handleSetLibraryFontSelected, themeFonts, + baseThemeFonts, customFonts, - libraryFonts, - installedFonts, + baseCustomFonts, isFontActivated, getFontFacesActivated, googleFonts, diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index abe4570beffd4..0bdf8b8732c4a 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -20,7 +20,7 @@ import PreviewControls from './preview-controls'; import LibraryFontCard from './library-font-card'; function InstalledFonts() { - const { themeFonts, libraryFonts, libraryFontSelected, handleSetLibraryFontSelected } = useContext( FontLibraryContext ); + const { baseCustomFonts, libraryFontSelected, baseThemeFonts, handleSetLibraryFontSelected } = useContext( FontLibraryContext ); const handleUnselectFont = () => { handleSetLibraryFontSelected( null ); @@ -45,11 +45,11 @@ function InstalledFonts() { <> {/* */} - { libraryFonts.length > 0 && ( + { baseCustomFonts.length > 0 && ( <> - { libraryFonts.map( ( font ) => ( + { baseCustomFonts.map( ( font ) => ( )} - { themeFonts.length > 0 && ( + { baseThemeFonts.length > 0 && ( <> - { themeFonts.map( ( font ) => ( + { baseThemeFonts.map( ( font ) => ( Date: Wed, 21 Jun 2023 15:25:41 +0200 Subject: [PATCH 095/116] TEMPORAL FIX: Disabling add_missing_fonts_to_theme_json() untils this is fixed in the Fonts API --- lib/class-wp-theme-json-resolver-gutenberg.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/class-wp-theme-json-resolver-gutenberg.php b/lib/class-wp-theme-json-resolver-gutenberg.php index 33fd4defd5191..ced7beb20616c 100644 --- a/lib/class-wp-theme-json-resolver-gutenberg.php +++ b/lib/class-wp-theme-json-resolver-gutenberg.php @@ -275,7 +275,7 @@ public static function get_theme_data( $deprecated = array(), $options = array() } // BEGIN OF EXPERIMENTAL CODE. Not to backport to core. - static::$theme = WP_Fonts_Resolver::add_missing_fonts_to_theme_json( static::$theme ); + // static::$theme = WP_Fonts_Resolver::add_missing_fonts_to_theme_json( static::$theme ); // END OF EXPERIMENTAL CODE. } From d6fb2b4c2bafe50536c402ba16c0d3f1b8b6bf86 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 21 Jun 2023 15:38:50 +0200 Subject: [PATCH 096/116] public php class method Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 277372da162b4..c126649697d50 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -38,7 +38,7 @@ public function __construct() { 'woff2' => 'font/woff2', ); - function register_routes () { + public function register_routes () { register_rest_route( $this->namespace, From 4df499b6694253431819e013c0b8ecca9e1ababf Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 22 Jun 2023 13:38:25 +0200 Subject: [PATCH 097/116] fix after merging latest changes from trunk --- .../src/components/global-styles/font-library-modal/context.js | 2 +- .../src/components/global-styles/typogrphy-elements.js | 2 +- packages/edit-site/src/components/save-hub/index.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 818221ea91f1a..785324db6ab6d 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -19,8 +19,8 @@ import { fetchInstallFonts, fetchUninstallFonts, } from './resolvers'; -import { unlock } from '../../../private-apis'; import { DEFAULT_DEMO_CONFIG } from './constants'; +import { unlock } from "../../../lock-unlock"; const { useGlobalSetting } = unlock( blockEditorPrivateApis ); import { setUIValuesNeeded, isUrlEncoded } from './utils'; diff --git a/packages/edit-site/src/components/global-styles/typogrphy-elements.js b/packages/edit-site/src/components/global-styles/typogrphy-elements.js index 53505b4b3cf67..b4637a8c82f81 100644 --- a/packages/edit-site/src/components/global-styles/typogrphy-elements.js +++ b/packages/edit-site/src/components/global-styles/typogrphy-elements.js @@ -15,8 +15,8 @@ import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor'; */ import { NavigationButtonAsItem } from './navigation-button'; import Subtitle from './subtitle'; -import { unlock } from '../../private-apis'; +import { unlock } from "../../lock-unlock"; const { useGlobalStyle } = unlock( blockEditorPrivateApis ); function ElementItem( { parentMenu, element, label } ) { diff --git a/packages/edit-site/src/components/save-hub/index.js b/packages/edit-site/src/components/save-hub/index.js index bafad4b5d7cc8..327c3d6b0b961 100644 --- a/packages/edit-site/src/components/save-hub/index.js +++ b/packages/edit-site/src/components/save-hub/index.js @@ -157,7 +157,7 @@ export default function SaveHub() { variant={ disabled ? null : 'primary' } showTooltip={ false } icon={ disabled && ! isSaving ? check : null } - defaultLabel={ label } + textForDefaultState={ label } /> ) } From 95ced36dbc6185b31435371ff9073a5ae60f8268 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 23 Jun 2023 13:03:24 +0200 Subject: [PATCH 098/116] Declaring class properties --- .../fonts-library/class-wp-fonts-library.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index c126649697d50..955489fd01969 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -9,6 +9,15 @@ * */ class WP_Fonts_Library_Controller extends WP_REST_Controller { + + private $wp_fonts_dir; + private $relative_fonts_path; + private $post_type; + private $post_name; + private $post_title; + private $post_status; + private $base_post_query; + public function __construct() { $this->wp_fonts_dir = path_join( WP_CONTENT_DIR, 'fonts' ); $this->relative_fonts_path = content_url('/fonts/'); From 645626f1f8b9206c268a4dbc7f3b05ea25e17ac6 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 23 Jun 2023 14:10:31 +0200 Subject: [PATCH 099/116] minor refactor of delete_font_face_assets and delete_asset functions --- .../fonts-library/class-wp-fonts-library.php | 29 ++++++++++++------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 955489fd01969..c092cca938e94 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -269,7 +269,15 @@ function delete_asset( $src ) { return false; } - return wp_delete_file( $file_path ); + wp_delete_file( $file_path ); + + // If the file still exists after trying to delete it, return false + if ( file_exists( $file_path ) ) { + return false; + } + + // return true if the file was deleted + return true; } /** @@ -278,18 +286,17 @@ function delete_asset( $src ) { * @param array $font_face The font face array containing the 'src' attribute with the file path(s) to be deleted. */ function delete_font_face_assets ( $font_face ) { - if ( is_array( $font_face['src'] ) ) { - foreach ( $font_face['src'] as $src ) { - $was_assets_removed = $this->delete_asset($src); - if ( ! $was_assets_removed ) { - // Bail if any of the assets could not be removed - return false; - } - } - return true; - } else { + if ( ! is_array( $font_face['src'] ) ) { return $this->delete_asset( $font_face['src'] ); } + + foreach ( $font_face['src'] as $src ) { + $was_asset_removed = $this->delete_asset($src); + if ( ! $was_asset_removed ) { + // Bail if any of the assets could not be removed + return false; + } + } } /** From ed2a0d1bfbbdb4287b4051c1960f847b3c860d49 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 23 Jun 2023 14:19:45 +0200 Subject: [PATCH 100/116] removing line not needed --- lib/experimental/fonts-library/class-wp-fonts-library.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index c092cca938e94..283baec7a3533 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -529,8 +529,7 @@ function download_or_move_fonts ( $fonts, $files ) { if ( isset( $font['fontFace'] ) ) { $new_font_faces = array(); foreach ( $font['fontFace'] as $font_face ) { - $new_font_face; - + if ( empty( $files ) ){ // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory $new_font_face = $this->download_font_face_assets( $font_face ); From dd771f104cc6af9cb76830148a9067dd949603ea Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 23 Jun 2023 14:21:25 +0200 Subject: [PATCH 101/116] Removing not needed variable definition Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 283baec7a3533..65f4430f2e071 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -480,7 +480,7 @@ function install_fonts ( $request ) { $new_library_fonts = $this->merge_fonts( $font_families, $new_fonts ); // Sanitizes the fonts library using WP_Theme_JSON - $sanitized_font_families = $this->sanitize_font_families( $new_library_fonts ); + $this->sanitize_font_families( $new_library_fonts ); // Updates the fonts library post content and returns it return $this->update_fonts_library( $new_library_fonts ); From fc69ef1c5e86b635f64fb33a6683b9759b05d842 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 23 Jun 2023 14:29:54 +0200 Subject: [PATCH 102/116] improving syntax Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- lib/experimental/fonts-library/class-wp-fonts-library.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 65f4430f2e071..bd4787004a09c 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -372,10 +372,9 @@ function download_font_face_assets ( $font_face ) { $new_font_face = $font_face; if ( is_array( $font_face['src'] ) ) { $new_font_face['src'] = array(); - $i; - foreach ( $font_face['src'] as $src ) { - !$i ? $i = 0 : $i++; - $filename = $this->get_filename_from_font_face( $font_face, $src, $i ); + $i = 0; + foreach ( $font_face['src'] as $src ) { + $filename = $this->get_filename_from_font_face( $font_face, $src, ++$i ); $new_src = $this->download_asset($src, $filename); if ( $new_src ) { $new_font_face['src'][] = $new_src; From 1a1841389e33e8c872bcaebeb64b7007dccea9db Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 23 Jun 2023 14:39:11 +0200 Subject: [PATCH 103/116] avoid redundant code line Co-authored-by: Anton Vlasenko <43744263+anton-vlasenko@users.noreply.github.com> --- .../fonts-library/class-wp-fonts-library.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index bd4787004a09c..56fcc1535bae1 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -325,13 +325,12 @@ function download_asset( $src, $filename ) { // Moves the file to the fonts directory or return false $renamed_file = rename( $temp_file, $file_path ); - if ( ! $renamed_file ) { - @unlink( $temp_file ); - return false; - } - // Cleans the temp file @unlink( $temp_file ); + + if ( ! $renamed_file ) { + return false; + } // Returns the relative path to the downloaded font asset to be used as font face src return "{$this->relative_fonts_path}{$filename}"; From d8adb540494faac33486b1f399b4b11ce8c6600f Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 29 Jun 2023 13:41:36 +0200 Subject: [PATCH 104/116] avoiding duplicated code --- .../fonts-library/class-wp-fonts-library.php | 25 ++++++++----------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 56fcc1535bae1..e926608ea377c 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -369,23 +369,20 @@ function get_filename_from_font_face ( $font_face, $url, $i=0 ) { */ function download_font_face_assets ( $font_face ) { $new_font_face = $font_face; - if ( is_array( $font_face['src'] ) ) { - $new_font_face['src'] = array(); - $i = 0; - foreach ( $font_face['src'] as $src ) { - $filename = $this->get_filename_from_font_face( $font_face, $src, ++$i ); - $new_src = $this->download_asset($src, $filename); - if ( $new_src ) { - $new_font_face['src'][] = $new_src; - } - } - } else { - $filename = $this->get_filename_from_font_face( $font_face, $font_face['src'] ); - $new_src = $this->download_asset( $font_face['src'], $filename ); + $srcs = !empty ( $font_face['src'] ) && is_array( $font_face['src'] ) + ? $font_face['src'] + : array( $font_face['src'] ); + $new_font_face['src'] = array(); + foreach ( $srcs as $src ) { + $filename = $this->get_filename_from_font_face( $font_face, $src, ++$i ); + $new_src = $this->download_asset($src, $filename); if ( $new_src ) { - $new_font_face['src'] = $new_src; + $new_font_face['src'][] = $new_src; } } + if ( count( $new_font_face['src'] ) === 1 ) { + $new_font_face['src'] = $new_font_face['src'][0]; + } return $new_font_face; } From 962c87b529e336ae6d7c108da5ce851504572632 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 12 Jul 2023 11:40:24 +0200 Subject: [PATCH 105/116] Refactoring to use one post per font family in the library --- .../fonts-library/class-wp-fonts-library.php | 161 +++++++++++------- .../font-library-modal/context.js | 36 ++-- .../font-library-modal/installed-fonts.js | 8 +- .../font-library-modal/resolvers.js | 12 +- 4 files changed, 130 insertions(+), 87 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index e926608ea377c..67951bc337166 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -49,17 +49,6 @@ public function __construct() { public function register_routes () { - register_rest_route( - $this->namespace, - '/' . $this->rest_base, - array( - array( - 'methods' => WP_REST_Server::READABLE, - 'callback' => array( $this, 'get_fonts_library' ), - 'permission_callback' => array( $this, 'read_fonts_library_permissions_check' ), - ), - ) - ); register_rest_route( $this->namespace, @@ -373,6 +362,7 @@ function download_font_face_assets ( $font_face ) { ? $font_face['src'] : array( $font_face['src'] ); $new_font_face['src'] = array(); + $i = 0; foreach ( $srcs as $src ) { $filename = $this->get_filename_from_font_face( $font_face, $src, ++$i ); $new_src = $this->download_asset($src, $filename); @@ -435,6 +425,62 @@ function remove_font_family ( $font_families, $font_to_uninstall ) { return $new_font_families; } + function get_font_post ( $font ) { + $args = array ( + 'post_type' => $this->post_type, + 'post_name' => $font['slug'], + 'name' => $font['slug'], + 'posts_per_page' => 1, + ); + + $posts_query = new WP_Query( $args ); + + if ( $posts_query->have_posts() ) { + $post = $posts_query->posts[0]; + return $post; + } + + return null; + } + + function create_font_post ( $font ) { + $post = array( + 'post_title' => $font['name'], + 'post_name' => $font['slug'], + 'post_type' => $this->post_type, + 'post_content' => json_encode( $font ), + 'post_status' => 'publish', + ); + + $post_id = wp_insert_post( $post ); + return $post_id; + } + + function update_font_post ( $font, $post ) { + $existing_font = json_decode( $post->post_content, true ); + $new_font = $this->merge_fonts( $existing_font, $font ); + + $post = array( + 'ID' => $post->ID, + 'post_content' => json_encode( $new_font ), + ); + + $post_id = wp_update_post( $post ); + return $post_id; + } + + function create_or_update_font_post ( $font ) { + $post = $this->get_font_post( $font ); + + if ( $post ) { + // update post + return $this->update_font_post( $font, $post ); + } + + // create post + return $this->create_font_post( $font ); + } + /** * Installs new fonts. * @@ -444,15 +490,6 @@ function remove_font_family ( $font_families, $font_to_uninstall ) { * @return WP_REST_Response|WP_Error The updated fonts library post content. */ function install_fonts ( $request ) { - // Get existing font families - $post = $this->query_fonts_library(); - if ( is_wp_error( $post ) ) { - return $post; - } - $post_content = $post->post_content; - $library = json_decode( $post_content, true ); - $font_families = $library['fontFamilies']; - // Get new fonts to install $fonts_to_install = $request->get_param('fontFamilies'); if ( is_string( $fonts_to_install ) ) { @@ -471,42 +508,39 @@ function install_fonts ( $request ) { $new_fonts = $this->download_or_move_fonts( $fonts_to_install, $files ); if ( ! empty ( $new_fonts ) ){ - // Updates the fonts library with the new successfully downloaded fonts. - $new_library_fonts = $this->merge_fonts( $font_families, $new_fonts ); - - // Sanitizes the fonts library using WP_Theme_JSON - $this->sanitize_font_families( $new_library_fonts ); - - // Updates the fonts library post content and returns it - return $this->update_fonts_library( $new_library_fonts ); + foreach ( $new_fonts as $new_font ) { + $sanitized_font = $this->sanitize_font( $new_font ); + $this->create_or_update_font_post( $sanitized_font ); + } + return new WP_REST_Response( $new_fonts ); } - + return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.' ), array( 'status' => 500 ) ); } /** - * Sanitizes the font families data using WP_Theme_JSON. + * Sanitizes the font family data using WP_Theme_JSON. * - * @param array $font_families An array of font families. - * @return array A sanitized array of font families. + * @param array $font A font family definition. + * @return array A sanitized font family defintion. */ - function sanitize_font_families ( $font_families ) { + function sanitize_font ( $font ) { // Creates the structure of theme.json array with the new fonts $fonts_json = array( 'version' => '2', 'settings' => array( 'typography' => array( - 'fontFamilies' => $font_families + 'fontFamilies' => array( $font ) ) ) ); // Creates a new WP_Theme_JSON object with the new fonts to mmake profit of the sanitization and validation $theme_json = new WP_Theme_JSON( $fonts_json ); $theme_data = $theme_json->get_data(); - $sanitized_font_families = !empty( $theme_data['settings']['typography']['fontFamilies'] ) - ? $theme_data['settings']['typography']['fontFamilies'] + $sanitized_font = !empty( $theme_data['settings']['typography']['fontFamilies'] ) + ? $theme_data['settings']['typography']['fontFamilies'][0] : array(); - return $sanitized_font_families; + return $sanitized_font; } /** @@ -586,36 +620,36 @@ function move_font_face_asset ( $font_face, $file ) { return $new_font_face; } + /** - * Merge new fonts with existing fonts + * Merges two fonts and their font faces. * - * @param array $current_fonts Fonts already installed. - * @param array $add_fonts Fonts to be installed. - * @return array Merged current fonts + new fonts. + * @param array $font1 The first font to merge. + * @param array $font2 The second font to merge. + * + * @return array The merged font. */ - function merge_fonts ( $current_fonts, $add_fonts ) { - $new_fonts = $current_fonts; - // Search if there is a font family with the same slug in the current fonts. If there is, add the new fontFace definitions to the current font face and if there is not, add the new font family to the current fonts. - foreach ( $add_fonts as $add_font ) { - $existing_font = array_search( $add_font['slug'], array_column( $new_fonts, 'slug' ) ); - - if ( $existing_font === false ) { - $new_fonts[] = $add_font; - } else { - $current_font_faces = $new_fonts[$existing_font]['fontFace']; - $add_font_faces = $add_font['fontFace']; - - if ( $add_font['fontFace'] ){ - $new_font_faces = array_merge($current_font_faces, $add_font_faces); - $new_font_faces = array_map("unserialize", array_unique(array_map("serialize", $new_font_faces))); - $new_fonts[$existing_font]['fontFace'] = $new_font_faces; - } else { - $new_fonts[] = $current_fonts[ $existing_font ]; - } - } + function merge_fonts ( $font1, $font2 ) { + $font_faces_1 = $font1['fontFace'] ?? array(); + $font_faces_2 = $font2['fontFace'] ?? array(); - } - return $new_fonts; + $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); + $merged_font_faces = array_map("unserialize", array_unique(array_map("serialize", $merged_font_faces))); + + $merged_font = array_merge( $font1, $font2 ); + $merged_fonts = array_unique( $merged_font ); + $merged_font['fontFace'] = $merged_font_faces; + + return $merged_font; + } + + function register_post_type () { + $args = array( + 'public' => true, + 'label' => 'Font Library', + 'show_in_rest' => true, + ); + register_post_type( 'wp_fonts_library', $args ); } } @@ -623,6 +657,7 @@ function merge_fonts ( $current_fonts, $add_fonts ) { function fonts_library_register_routes () { $fonts_library = new WP_Fonts_Library_Controller(); $fonts_library->register_routes(); + $fonts_library->register_post_type(); } add_action( 'rest_api_init', 'fonts_library_register_routes' ); \ No newline at end of file diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 785324db6ab6d..691c7c08de4b3 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -9,12 +9,12 @@ import { } from '@wordpress/element'; import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor'; import { useSelect } from '@wordpress/data'; +import { useEntityRecords } from '@wordpress/core-data'; /** * Internal dependencies */ import { - fetchFontLibrary, fetchGoogleFonts, fetchInstallFonts, fetchUninstallFonts, @@ -27,6 +27,25 @@ import { setUIValuesNeeded, isUrlEncoded } from './utils'; export const FontLibraryContext = createContext( {} ); function FontLibraryProvider( { children } ) { + + const [refreshKey, setRefreshKey] = useState(0); + + const refreshLibrary = () => { + setRefreshKey(prevKey => prevKey + 1); + }; + + const { records: posts = [] } = useEntityRecords( + 'postType', + 'wp_fonts_library', + { refreshKey } + ); + + const libraryFonts = ( posts || [] ).map( post => ( + JSON.parse( post.content.raw ) + )) || []; + + + // Global Styles (settings) font families const [ fontFamilies, setFontFamilies ] = useGlobalSetting( 'typography.fontFamilies' @@ -38,31 +57,30 @@ function FontLibraryProvider( { children } ) { // Library Fonts const [ modalTabOepn, setModalTabOepn ] = useState( false ); - const [ libraryFonts, setLibraryFonts ] = useState( [] ); const [ libraryFontSelected, setLibraryFontSelected ] = useState( null ); const baseThemeFonts = baseFontFamilies?.theme ? baseFontFamilies.theme .map( f => setUIValuesNeeded(f, { source: 'theme' }) ) - .sort( ( a, b ) => ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) + .sort( ( a, b ) => ( a.name ).localeCompare( b.name ) ) : []; const themeFonts = fontFamilies.theme ? fontFamilies.theme .map( f => setUIValuesNeeded(f, { source: 'theme' }) ) - .sort( ( a, b ) => ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) + .sort( ( a, b ) => ( a.name ).localeCompare( b.name ) ) : []; const customFonts = fontFamilies.custom ? fontFamilies.custom .map( f => setUIValuesNeeded(f, { source: 'custom' }) ) - .sort( ( a, b ) => ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) + .sort( ( a, b ) => ( a.name ).localeCompare( b.name ) ) : []; const baseCustomFonts = libraryFonts ? libraryFonts .map( f => setUIValuesNeeded(f, { source: 'custom' }) ) - .sort( ( a, b ) => ( a.name || a.slug ).localeCompare( b.name || b.slug ) ) + .sort( ( a, b ) => ( a.name ).localeCompare( b.name ) ) : []; useEffect( () => { @@ -131,9 +149,6 @@ function FontLibraryProvider( { children } ) { site?.url + '/wp-content/themes/' + currentTheme?.stylesheet; useEffect( () => { - fetchFontLibrary().then( ( response ) => { - setLibraryFonts( response ); - } ); fetchGoogleFonts().then( ( { fontFamilies, categories } ) => { setGoogleFonts( fontFamilies ); setGoogleFontsCategories( [ 'all', ...categories ] ); @@ -173,12 +188,10 @@ function FontLibraryProvider( { children } ) { async function installFonts( libraryFonts ) { const newLibraryFonts = await fetchInstallFonts( libraryFonts ); - setLibraryFonts( newLibraryFonts ); } async function uninstallFont( fontFamily ) { const newLibraryFonts = await fetchUninstallFonts( fontFamily ); - setLibraryFonts( newLibraryFonts ); } const toggleActivateFont = ( font, face ) => { @@ -325,6 +338,7 @@ function FontLibraryProvider( { children } ) { getAvailableFontsOutline, modalTabOepn, toggleModal, + refreshLibrary } } > { children } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js index 0bdf8b8732c4a..95ade29711008 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js @@ -2,7 +2,7 @@ * WordPress dependencies */ import { __ } from '@wordpress/i18n'; -import { useContext, useState } from '@wordpress/element'; +import { useContext, useEffect } from '@wordpress/element'; import { __experimentalHStack as HStack, __experimentalSpacer as Spacer, @@ -20,7 +20,7 @@ import PreviewControls from './preview-controls'; import LibraryFontCard from './library-font-card'; function InstalledFonts() { - const { baseCustomFonts, libraryFontSelected, baseThemeFonts, handleSetLibraryFontSelected } = useContext( FontLibraryContext ); + const { baseCustomFonts, libraryFontSelected, baseThemeFonts, handleSetLibraryFontSelected, refreshLibrary } = useContext( FontLibraryContext ); const handleUnselectFont = () => { handleSetLibraryFontSelected( null ); @@ -34,6 +34,10 @@ function InstalledFonts() { ? __( "Choose font variants. Keep in mind that too many variants could make your site slower." ) : null; + useEffect( () => { + refreshLibrary(); + }, [] ); + return ( Date: Wed, 12 Jul 2023 15:15:54 +0200 Subject: [PATCH 106/116] Refactoring delete font family --- .../fonts-library/class-wp-fonts-library.php | 228 +++++++----------- .../font-library-modal/context.js | 16 +- 2 files changed, 101 insertions(+), 143 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 67951bc337166..2a16785ab7449 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -48,8 +48,6 @@ public function __construct() { ); public function register_routes () { - - register_rest_route( $this->namespace, '/' . $this->rest_base, @@ -73,7 +71,6 @@ public function register_routes () { ), ) ); - register_rest_route( $this->namespace, '/' . $this->rest_base . '/google_fonts', @@ -88,6 +85,61 @@ public function register_routes () { } + /** + * Removes a font family from the fonts library and all their assets + * + * @param WP_REST_Request $request Full details about the request. + * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure. + */ + function uninstall_font_family ( $request ) { + $post = get_post( $request['id'] ); + + if ( ! $post ) { + return new WP_Error( + 'font_family_invalid_id', + __( 'Invalid font family ID.' ), + array( + 'status' => 404, + ) + ); + } + + $font_family = json_decode( $post->post_content, true ); + $were_assets_removed = $this->remove_font_family_assets( $font_family ); + $was_post_deleted = wp_delete_post ( $request['id'], true ); + + if ( $was_post_deleted === null || $were_assets_removed === false ) { + return new WP_Error( + 'font_family_delete_error', + __( 'Error: Could not delete font family.' ), + array( + 'status' => 500, + ) + ); + } + + return new WP_REST_Response( true ); + } + + + /** + * Removes font family assets + * + * @param array $font_family + * @return bool True if assets were removed, false otherwise. + */ + function remove_font_family_assets ( $font_family ) { + if ( isset( $font_family['fontFace'] ) ) { + foreach ( $font_family['fontFace'] as $font_face ) { + $were_assets_removed = $this->delete_font_face_assets( $font_face ); + if ( $were_assets_removed === false ) { + return false; + } + } + } + return true; + } + /** * Returns whether the given file has a font MIME type. * @@ -154,75 +206,6 @@ function read_fonts_library_permissions_check ( $request ) { return true; } - /** - * Gets the fonts library post content - * - * @return WP_REST_Response|WP_Error - */ - function get_fonts_library () { - $post = $this->query_fonts_library(); - if ( is_wp_error( $post ) ) { - return $post; - } - return new WP_REST_Response( $post->post_content ); - } - - /** - * Query fonts library post - * - * @return WP_Post|WP_Error - */ - private function query_fonts_library () { - // Try to get the fonts library post - $wp_fonts_library_query = new WP_Query( $this->base_post_query ); - if ( $wp_fonts_library_query->have_posts() ) { - $post = $wp_fonts_library_query->posts[0]; - return $post; - } - - // Create empty post if there are no post - $args = $this->base_post_query; - $args['post_content'] = '{"fontFamilies":[]}'; - $post_id = wp_insert_post( $args ); - $post = get_post( $post_id ); - if ( ! $post ) { - return new WP_Error( - 'rest_cant_create_fonts_library', - __( 'Error creating fonts library post.' ), - array( 'status' => 500 ) - ); - } - return $post; - } - - /** - * Updates the fonts library post content. - * - * Updates the content of the fonts library post with a new list of fonts families. - * - * @param array $new_fonts_families The new list of fonts families to replace the current content of the fonts library post. - * @return WP_REST_Response|WP_Error The updated fonts library post content wrapped in a WP_REST_Response object. - */ - function update_fonts_library ( $new_fonts_families ) { - $post = $this->query_fonts_library(); - $new_fonts_library = array ( - 'fontFamilies' => $new_fonts_families, - ); - $updated_post_data = array ( - 'ID' => $post->ID, - 'post_content' => wp_json_encode( $new_fonts_library ), - ); - $updated_post = wp_update_post( $updated_post_data ); - if ( is_wp_error( $updated_post ) ){ - return $updated_post; - } - $new_post = $this->query_fonts_library(); - if ( is_wp_error( $new_post ) ){ - return $new_post; - } - return new WP_REST_Response( $new_post->post_content ); - } - /** * Fetches the Google Fonts JSON file. * @@ -275,17 +258,17 @@ function delete_asset( $src ) { * @param array $font_face The font face array containing the 'src' attribute with the file path(s) to be deleted. */ function delete_font_face_assets ( $font_face ) { - if ( ! is_array( $font_face['src'] ) ) { - return $this->delete_asset( $font_face['src'] ); - } - - foreach ( $font_face['src'] as $src ) { + $srcs = !empty ( $font_face['src'] ) && is_array( $font_face['src'] ) + ? $font_face['src'] + : array( $font_face['src'] ); + foreach ( $srcs as $src ) { $was_asset_removed = $this->delete_asset($src); if ( ! $was_asset_removed ) { // Bail if any of the assets could not be removed return false; } } + return true; } /** @@ -376,55 +359,6 @@ function download_font_face_assets ( $font_face ) { return $new_font_face; } - /** - * Uninstalls a font family. - * - * Removes a font family from the fonts library and deletes its associated font face assets. - * - * @param WP_REST_Request $request The request object containing the font family to uninstall in the request parameters. - * @return WP_REST_Response|WP_Error The updated fonts library post content. - */ - function uninstall_font_family ( $request ) { - $post = $this->query_fonts_library(); - if ( is_wp_error( $post ) ) { - return $post; - } - $post_content = $post->post_content; - $library = json_decode( $post_content, true ); - $font_families = $library['fontFamilies']; - - $font_to_uninstall = $request->get_json_params(); - $new_font_families = $this->remove_font_family( $font_families, $font_to_uninstall ); - - return $this->update_fonts_library( $new_font_families ); - } - - /** - * Removes a font family. - * - * Removes a font family from an array of font families. If the font family to remove contains font face - * definitions, the associated assets are deleted. - * - * @param array $font_families The current array of font families. - * @param array $font_to_uninstall The font family to remove from the font families array. - * @return array The updated array of font families. - */ - function remove_font_family ( $font_families, $font_to_uninstall ) { - $new_font_families = array(); - foreach ( $font_families as $font_family ) { - if ( $font_family['slug'] !== $font_to_uninstall['slug'] ) { - $new_font_families[] = $font_family; - } else { - if ( isset ( $font_family['fontFace'] ) ){ - foreach( $font_family['fontFace'] as $font_face ) { - $this->delete_font_face_assets( $font_face ); - } - } - } - } - return $new_font_families; - } - function get_font_post ( $font ) { $args = array ( 'post_type' => $this->post_type, @@ -443,22 +377,35 @@ function get_font_post ( $font ) { return null; } - function create_font_post ( $font ) { + /** + * Create a post for a font family + * + * @param array $font_family + * @return int + */ + function create_font_post ( $font_family ) { $post = array( - 'post_title' => $font['name'], - 'post_name' => $font['slug'], + 'post_title' => $font_family['name'], + 'post_name' => $font_family['slug'], 'post_type' => $this->post_type, - 'post_content' => json_encode( $font ), + 'post_content' => json_encode( $font_family ), 'post_status' => 'publish', ); - $post_id = wp_insert_post( $post ); + if ( $post_id === 0 ) { + return WP_Error( 'font_post_creation_failed', __( 'Font post creation failed', 'wp-fonts' ) ); + } return $post_id; } - function update_font_post ( $font, $post ) { + /** + * @param array $font_family + * @param WP_Post $post + * @return int + */ + function update_font_post ( $font_family, $post ) { $existing_font = json_decode( $post->post_content, true ); - $new_font = $this->merge_fonts( $existing_font, $font ); + $new_font = $this->merge_fonts( $existing_font, $font_family ); $post = array( 'ID' => $post->ID, @@ -469,16 +416,23 @@ function update_font_post ( $font, $post ) { return $post_id; } - function create_or_update_font_post ( $font ) { - $post = $this->get_font_post( $font ); + /** + * Creates a post for a font in the fonts library if it doesn't exist, or updates it if it does. + * + * @param array $font_family + * @return WP_Post + */ + function create_or_update_font_post ( $font_family ) { + $post = $this->get_font_post( $font_family ); if ( $post ) { // update post - return $this->update_font_post( $font, $post ); + return $this->update_font_post( $font_family, $post ); } // create post - return $this->create_font_post( $font ); + $new_post = $this->create_font_post( $font_family ); + return $new_post; } /** diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 691c7c08de4b3..376fe111e2aef 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -40,10 +40,13 @@ function FontLibraryProvider( { children } ) { { refreshKey } ); - const libraryFonts = ( posts || [] ).map( post => ( - JSON.parse( post.content.raw ) - )) || []; - + const libraryFonts = ( posts || [] ).map( post => { + const post_content = JSON.parse( post.content.raw ) + return { + ...post_content, + postId: post.id, + } + }) || []; // Global Styles (settings) font families @@ -190,8 +193,9 @@ function FontLibraryProvider( { children } ) { const newLibraryFonts = await fetchInstallFonts( libraryFonts ); } - async function uninstallFont( fontFamily ) { - const newLibraryFonts = await fetchUninstallFonts( fontFamily ); + async function uninstallFont( font ) { + await fetchUninstallFonts( { id: font.postId } ); + refreshLibrary(); } const toggleActivateFont = ( font, face ) => { From dafa05a9b30714d99df45da81147fa68c8a8712d Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Wed, 12 Jul 2023 15:21:08 +0200 Subject: [PATCH 107/116] avoid adding number to filename when there is only one asset --- lib/experimental/fonts-library/class-wp-fonts-library.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 2a16785ab7449..69ce6b6c72020 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -315,16 +315,16 @@ function download_asset( $src, $filename ) { * * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and 'fontWeight' attributes. * @param string $url The URL of the font face asset, used to derive the file extension. - * @param int $i Optional counter for appending to the filename, default is 0. + * @param int $i Optional counter for appending to the filename, default is 1. * @return string The generated filename for the font face asset. */ - function get_filename_from_font_face ( $font_face, $url, $i=0 ) { + function get_filename_from_font_face ( $font_face, $url, $i=1 ) { $extension = pathinfo( $url, PATHINFO_EXTENSION ); $family = sanitize_title( $font_face['fontFamily'] ); $style = sanitize_title( $font_face['fontStyle'] ); $weight = sanitize_title( $font_face['fontWeight'] ); $filename = "{$family}_{$style}_{$weight}"; - if ($i > 0) { + if ($i > 1) { $filename .= "_{$i}"; } return "{$filename}.{$extension}"; @@ -347,7 +347,7 @@ function download_font_face_assets ( $font_face ) { $new_font_face['src'] = array(); $i = 0; foreach ( $srcs as $src ) { - $filename = $this->get_filename_from_font_face( $font_face, $src, ++$i ); + $filename = $this->get_filename_from_font_face( $font_face, $src, $i++ ); $new_src = $this->download_asset($src, $filename); if ( $new_src ) { $new_font_face['src'][] = $new_src; From 2fe4ae8f09428561144d2fd15f9f927645f5c124 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 13 Jul 2023 11:07:42 +0200 Subject: [PATCH 108/116] Refactor install fonts endpoint to understand only formdata --- .../fonts-library/class-wp-fonts-library.php | 8 +++--- .../font-library-modal/resolvers.js | 25 +++++++++++-------- 2 files changed, 18 insertions(+), 15 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 69ce6b6c72020..acd454581d39e 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -446,10 +446,10 @@ function create_or_update_font_post ( $font_family ) { function install_fonts ( $request ) { // Get new fonts to install $fonts_to_install = $request->get_param('fontFamilies'); - if ( is_string( $fonts_to_install ) ) { - // If we are receiving form data (as we to upload local fonts), the font families are encoded as a string. - $fonts_to_install = json_decode( $fonts_to_install, true ); - } + + // As we are receiving form data, the font families are encoded as a string. + // We are using form data because local fonts need to use that format to attach the files in the request + $fonts_to_install = json_decode( $fonts_to_install, true ); if ( empty ( $fonts_to_install ) ) { return new WP_Error( 'no_fonts_to_install', __( 'No fonts to install' ), array( 'status' => 400 ) ); diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js b/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js index c6d0290372a64..da0d9597a99b1 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js @@ -2,9 +2,6 @@ * WordPress dependencies * */ -/** - * WordPress dependencies - */ import apiFetch from '@wordpress/api-fetch'; export async function fetchGoogleFonts() { @@ -20,18 +17,24 @@ export async function fetchGoogleFonts() { export async function fetchInstallFonts( data ) { - // If data is a FormData object, we need to pass it as the body of the request. - // Otherwise, we pass it as the data property of the request. - // This is because FormData objects are not JSON serializable. - // For Google fonts we use JSON and for local fonts we use FormData to be able to send the files - const content = data instanceof FormData - ? { body: data } - : { data: { fontFamilies: data } }; + // If data is not FormData object, we need to pass it as the body of the request. + // We are doing this because to upload local fonts we need to use FormData + // To homogenize the request, we are using FormData for both cases (google fonts and local fonts) + + let body = data; + + // If the data is not a FormData object, we need to create it + // Data for google fonts is an array of font families + if ( !(data instanceof FormData) ) { + const formData = new FormData(); + formData.append( 'fontFamilies', JSON.stringify( data ) ); + body = formData; + } const config = { path: '/wp/v2/fonts_library', method: 'POST', - ...content, + body, }; const response = await apiFetch( config ); From 7787782ed34b74ab1427fb24a1d033cb9e2dcae5 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 13 Jul 2023 11:16:50 +0200 Subject: [PATCH 109/116] Renaming PHP file --- ...s-library.php => class-wp-rest-fonts-library-controller.php} | 0 lib/load.php | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename lib/experimental/fonts-library/{class-wp-fonts-library.php => class-wp-rest-fonts-library-controller.php} (100%) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php similarity index 100% rename from lib/experimental/fonts-library/class-wp-fonts-library.php rename to lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php diff --git a/lib/load.php b/lib/load.php index 8d07a5cb2ced6..227651ccb474c 100644 --- a/lib/load.php +++ b/lib/load.php @@ -133,7 +133,7 @@ function gutenberg_is_experiment_enabled( $name ) { } // Fonts Library -require __DIR__ . '/experimental/fonts-library/class-wp-fonts-library.php'; +require __DIR__ . '/experimental/fonts-library/class-wp-rest-fonts-library-controller.php'; // Plugin specific code. require __DIR__ . '/script-loader.php'; From 16b5e7ce52e1277b8bbd238816172d4199ac056e Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 13 Jul 2023 17:01:39 +0200 Subject: [PATCH 110/116] Spliting backend code in 2 clasess and refactoring --- .../fonts-library/class-wp-fonts-library.php | 444 ++++++++++++++++++ ...class-wp-rest-fonts-library-controller.php | 428 +---------------- lib/load.php | 1 + 3 files changed, 467 insertions(+), 406 deletions(-) create mode 100644 lib/experimental/fonts-library/class-wp-fonts-library.php diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php new file mode 100644 index 0000000000000..eee39727d3bf9 --- /dev/null +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -0,0 +1,444 @@ + 'font/otf', + 'ttf' => 'font/ttf', + 'woff' => 'font/woff', + 'woff2' => 'font/woff2', + ); + + private $data; + private $post_id; + private $relative_fonts_path; + + public function __construct( $font_family = array() ) { + $this->data = $font_family; + $this->post_id = $font_family['post_id'] ?? null; + $this->relative_fonts_path = content_url('/fonts/'); + } + + /** + * Returns the font family data + * + * @return array An array in fontFamily theme.json format. + */ + public function get_data() { + return $this->data; + } + + /** + * Returns the font family data + * + * @return string fontFamily in theme.json format as stringified JSON. + */ + public function get_data_as_json () { + return wp_json_encode( $this->get_data() ); + } + + /** + * Returns if the font family has font faces defined + * + * @return bool true if the font family has font faces defined, false otherwise. + */ + public function has_font_faces () { + return ( + isset( $this->data['fontFace'] ) + && is_array( $this->data['fontFace'] ) + && ! empty( $this->data['fontFace'] ) + ); + } + + /** + * Returns the absolute path to the fonts directory. + * + * @return string Path to the fonts directory. + */ + static public function get_fonts_directory () { + return path_join( WP_CONTENT_DIR, 'fonts' ); + } + + /** + * Define WP_FONTS_DIR constant to make it available to the rest of the code. + * + */ + static public function define_fonts_directory () { + define( 'WP_FONTS_DIR', self::get_fonts_directory() ); + } + + /** + * Returns whether the given file has a font MIME type. + * + * @param string $filepath The file to check. + * @return bool True if the file has a font MIME type, false otherwise. + */ + static private function has_font_mime_type( $filepath ) { + $filetype = wp_check_filetype( $filepath, self::ALLOWED_FONT_MIME_TYPES ); + return in_array( $filetype['type'], self::ALLOWED_FONT_MIME_TYPES, true ); + } + + /** + * Removes font family assets + * + * @param array $font_family + * @return bool True if assets were removed, false otherwise. + */ + private function remove_font_family_assets () { + if ( $this->has_font_faces() ) { + foreach ( $this->data['fontFace'] as $font_face ) { + $were_assets_removed = $this->delete_font_face_assets( $font_face ); + if ( $were_assets_removed === false ) { + return false; + } + } + } + return true; + } + + /** + * Removes a font family from the database and deletes its assets. + * + * @return bool|WP_Error True if the font family was uninstalled, WP_Error otherwise. + */ + public function uninstall () { + if ( !$this->post_id ) { + $post = $this->get_font_post(); + } + $were_assets_removed = $this->remove_font_family_assets(); + if ( $were_assets_removed === true ) { + $was_post_deleted = wp_delete_post ( $this->post_id, true ); + if ( $was_post_deleted === null ) { + return new WP_Error( 'font_family_not_deleted', __( 'The font family could not be deleted.') ); + } + } + return true; + } + + /** + * Deletes a specified font asset file from the fonts directory. + * + * @param string $src The path of the font asset file to delete. + * @return bool Whether the file was deleted. + */ + static private function delete_asset( $src ) { + $filename = basename( $src ); + $file_path = path_join( WP_FONTS_DIR, $filename ); + + if ( ! file_exists( $file_path ) ) { + return false; + } + wp_delete_file( $file_path ); + + // If the file still exists after trying to delete it, return false + if ( file_exists( $file_path ) ) { + return false; + } + + // return true if the file was deleted + return true; + } + + /** + * Deletes all font face asset files associated with a given font face. + * + * @param array $font_face The font face array containing the 'src' attribute with the file path(s) to be deleted. + */ + static private function delete_font_face_assets( $font_face ) { + $srcs = !empty ( $font_face['src'] ) && is_array( $font_face['src'] ) + ? $font_face['src'] + : array( $font_face['src'] ); + foreach ( $srcs as $src ) { + $was_asset_removed = self::delete_asset($src); + if ( ! $was_asset_removed ) { + // Bail if any of the assets could not be removed + return false; + } + } + return true; + } + + /** + * Downloads a font asset. + * + * Downloads a font asset from a specified source URL and saves it to the font directory. + * + * @param string $src The source URL of the font asset to be downloaded. + * @param string $filename The filename to save the downloaded font asset as. + * @return string|bool The relative path to the downloaded font asset. False if the download failed. + */ + private function download_asset( $src, $filename ) { + $file_path = path_join( WP_FONTS_DIR, $filename ); + + // Checks if the file to be downloaded has a font mime type + if ( ! self::has_font_mime_type( $file_path ) ) { + return false; + } + + // Downloads the font asset or returns false + $temp_file = download_url( $src ); + if ( is_wp_error( $temp_file ) ) { + @unlink( $temp_file ); + return false; + } + + // Moves the file to the fonts directory or return false + $renamed_file = rename( $temp_file, $file_path ); + // Cleans the temp file + @unlink( $temp_file ); + + if ( ! $renamed_file ) { + return false; + } + + // Returns the relative path to the downloaded font asset to be used as font face src + return "{$this->relative_fonts_path}{$filename}"; + } + + /** + * Merges two fonts and their font faces. + * + * @param array $font1 The first font to merge. + * @param array $font2 The second font to merge. + * + * @return array The merged font. + */ + static private function merge_fonts ( $font1, $font2 ) { + $font_faces_1 = $font1['fontFace'] ?? array(); + $font_faces_2 = $font2['fontFace'] ?? array(); + + $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); + $merged_font_faces = array_map("unserialize", array_unique(array_map("serialize", $merged_font_faces))); + + $merged_font = array_merge( $font1, $font2 ); + $merged_fonts = array_unique( $merged_font ); + $merged_font['fontFace'] = $merged_font_faces; + + return $merged_font; + } + + /** + * Move an uploaded font face asset from temp folder to the wp fonts directory + * + * This is used when uploading local fonts + * + * @param array $font_face Font face to download. + * @return array New font face with all assets downloaded and referenced in the font face definition. + */ + private function move_font_face_asset ( $font_face, $file ) { + $new_font_face = $font_face; + $filename = self::get_filename_from_font_face( $font_face, $file['name'] ); + $filepath= path_join( WP_FONTS_DIR, $filename ); + + // Remove the uploaded font asset reference from the font face definition because it is no longer needed. + unset( $new_font_face['file'] ); + + // If the filepath has not a font mime type, we don't move the file and return the font face definition without src to be ignored later + if ( ! self::has_font_mime_type( $filepath ) ) { + return $new_font_face; + } + + // Move the uploaded font asset from the temp folder to the wp fonts directory + $file_was_moved = move_uploaded_file( $file['tmp_name'], $filepath ); + + if ( $file_was_moved ) { + // If the file was successfully moved, we update the font face definition to reference the new file location + $new_font_face['src'] = "{$this->relative_fonts_path}{$filename}"; + } + + return $new_font_face; + } + + /** + * Sanitizes the font family data using WP_Theme_JSON. + * + * @param array $font A font family definition. + * @return array A sanitized font family defintion. + */ + private function sanitize() { + // Creates the structure of theme.json array with the new fonts + $fonts_json = array( + 'version' => '2', + 'settings' => array( + 'typography' => array( + 'fontFamilies' => array( $this->data ) + ) + ) + ); + // Creates a new WP_Theme_JSON object with the new fonts to mmake profit of the sanitization and validation + $theme_json = new WP_Theme_JSON( $fonts_json ); + $theme_data = $theme_json->get_data(); + $sanitized_font = !empty( $theme_data['settings']['typography']['fontFamilies'] ) + ? $theme_data['settings']['typography']['fontFamilies'][0] + : array(); + $this->data = $sanitized_font; + return $this->data; + } + + /** + * Generates a filename for a font face asset. + * + * Creates a filename for a font face asset using font family, style, weight and extension information. + * + * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and 'fontWeight' attributes. + * @param string $url The URL of the font face asset, used to derive the file extension. + * @param int $i Optional counter for appending to the filename, default is 1. + * @return string The generated filename for the font face asset. + */ + static private function get_filename_from_font_face ( $font_face, $url, $i=1 ) { + $extension = pathinfo( $url, PATHINFO_EXTENSION ); + $family = sanitize_title( $font_face['fontFamily'] ); + $style = sanitize_title( $font_face['fontStyle'] ); + $weight = sanitize_title( $font_face['fontWeight'] ); + $filename = "{$family}_{$style}_{$weight}"; + if ($i > 1) { + $filename .= "_{$i}"; + } + return "{$filename}.{$extension}"; + } + + /** + * Downloads font face assets. + * + * Downloads the font face asset(s) associated with a font face. It works with both single + * source URLs and arrays of multiple source URLs. + * + * @param array $font_face The font face array containing the 'src' attribute with the source URL(s) of the assets. + * @return array The modified font face array with the new source URL(s) to the downloaded assets. + */ + private function download_font_face_assets ( $font_face ) { + $new_font_face = $font_face; + $srcs = !empty ( $font_face['src'] ) && is_array( $font_face['src'] ) + ? $font_face['src'] + : array( $font_face['src'] ); + $new_font_face['src'] = array(); + $i = 0; + foreach ( $srcs as $src ) { + $filename = self::get_filename_from_font_face( $font_face, $src, $i++ ); + $new_src = $this->download_asset($src, $filename); + if ( $new_src ) { + $new_font_face['src'][] = $new_src; + } + } + if ( count( $new_font_face['src'] ) === 1 ) { + $new_font_face['src'] = $new_font_face['src'][0]; + } + return $new_font_face; + } + + + public function download_or_move_font_faces ( $files ) { + if ( $this->has_font_faces() ) { + $new_font_faces = array(); + foreach ( $this->data['fontFace'] as $font_face ) { + if ( empty( $files ) ){ + // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory + $new_font_face = $this->download_font_face_assets( $font_face ); + } else { + // If we are installing google fonts, we need to download the font face assets + $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face[ 'file' ] ] ); + } + // If the font face assets were successfully downloaded, we add the font face to the new font. + // Font faces with failed downloads are not added to the new font + if ( !empty ( $new_font_face['src'] ) ){ + $new_font_faces[] = $new_font_face; + } + } + if ( !empty ( $new_font_faces ) ) { + $this->data['fontFace'] = $new_font_faces; + return true; + } + return WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.' ) ); + } + return true; + } + + /** + * Get the post for a font family + * + * @param array $font_family + * @return WP_Post|null + */ + private function get_font_post () { + $args = array ( + 'post_type' => 'wp_fonts_library', + 'post_name' => $this->data['slug'], + 'name' => $this->data['slug'], + 'posts_per_page' => 1, + ); + + $posts_query = new WP_Query( $args ); + + if ( $posts_query->have_posts() ) { + $post = $posts_query->posts[0]; + $this->post_id = $post->ID; + return $post; + } + + return null; + } + + /** + * Create a post for a font family + * + * @param array $font_family + * @return int + */ + private function create_font_post () { + $post = array( + 'post_title' => $this->data['name'], + 'post_name' => $this->data['slug'], + 'post_type' => 'wp_fonts_library', + 'post_content' => $this->get_data_as_json(), + 'post_status' => 'publish', + ); + $post_id = wp_insert_post( $post ); + if ( $post_id === 0 ) { + return WP_Error( 'font_post_creation_failed', __( 'Font post creation failed' ) ); + } + return $post_id; + } + + /** + * @param array $font_family + * @param WP_Post $post + * @return int + */ + private function update_font_post ( $post ) { + $post_font_data = json_decode( $post->post_content, true ); + $new_data = $this->merge_fonts( $post_font_data, $this->data ); + $this->data = $new_data; + + $post = array( + 'ID' => $post->ID, + 'post_content' => $this->get_data_as_json(), + ); + + $post_id = wp_update_post( $post ); + return $post_id; + } + + /** + * Creates a post for a font in the fonts library if it doesn't exist, or updates it if it does. + * + * @param array $font_family + * @return WP_Post + */ + public function create_or_update_font_post () { + $post = $this->get_font_post(); + if ( $post ) { + return $this->update_font_post( $post ); + } + return $this->create_font_post(); + } + +} + +add_action( 'init', array( 'WP_Font_Family', 'define_fonts_directory' ) ); \ No newline at end of file diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index acd454581d39e..51f0f3cdfb2bf 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -2,50 +2,18 @@ include(ABSPATH . "wp-admin/includes/admin.php"); /** - * Font library class. + * Fonts Library Controller class * * @package gutenberg * @since x.x.x * */ class WP_Fonts_Library_Controller extends WP_REST_Controller { - - private $wp_fonts_dir; - private $relative_fonts_path; - private $post_type; - private $post_name; - private $post_title; - private $post_status; - private $base_post_query; public function __construct() { - $this->wp_fonts_dir = path_join( WP_CONTENT_DIR, 'fonts' ); - $this->relative_fonts_path = content_url('/fonts/'); - $this->rest_base = 'fonts_library'; $this->namespace = 'wp/v2'; - - $this->post_type = 'wp_fonts_library'; - $this->post_name = 'wp_fonts_library'; - $this->post_title = 'Fonts Library'; // Do not translate - $this->post_status = 'publish'; - - $this->base_post_query = array ( - 'post_type' => $this->post_type, - 'post_title' => $this->post_title, - 'post_status' => $this->post_status, - 'post_name' => $this->post_name, - 'name' => $this->post_name, - 'posts_per_page' => 1, - ); - } - - const ALLOWED_FONT_MIME_TYPES = array( - 'otf' => 'font/otf', - 'ttf' => 'font/ttf', - 'woff' => 'font/woff', - 'woff2' => 'font/woff2', - ); + } public function register_routes () { register_rest_route( @@ -93,7 +61,6 @@ public function register_routes () { */ function uninstall_font_family ( $request ) { $post = get_post( $request['id'] ); - if ( ! $post ) { return new WP_Error( 'font_family_invalid_id', @@ -103,54 +70,12 @@ function uninstall_font_family ( $request ) { ) ); } - - $font_family = json_decode( $post->post_content, true ); - $were_assets_removed = $this->remove_font_family_assets( $font_family ); - $was_post_deleted = wp_delete_post ( $request['id'], true ); - - if ( $was_post_deleted === null || $were_assets_removed === false ) { - return new WP_Error( - 'font_family_delete_error', - __( 'Error: Could not delete font family.' ), - array( - 'status' => 500, - ) - ); - } - - return new WP_REST_Response( true ); - } - - - /** - * Removes font family assets - * - * @param array $font_family - * @return bool True if assets were removed, false otherwise. - */ - function remove_font_family_assets ( $font_family ) { - if ( isset( $font_family['fontFace'] ) ) { - foreach ( $font_family['fontFace'] as $font_face ) { - $were_assets_removed = $this->delete_font_face_assets( $font_face ); - if ( $were_assets_removed === false ) { - return false; - } - } - } - return true; + $font_family_data = json_decode( $post->post_content, true ); + $font_family_data['post_id'] = $post->ID; + $font = new WP_Font_Family ( $font_family_data ); + return new WP_REST_Response( $font->uninstall() ); } - /** - * Returns whether the given file has a font MIME type. - * - * @param string $filepath The file to check. - * @return bool True if the file has a font MIME type, false otherwise. - */ - function has_font_mime_type( $filepath ) { - $filetype = wp_check_filetype( $filepath, self::ALLOWED_FONT_MIME_TYPES ); - return in_array( $filetype['type'], self::ALLOWED_FONT_MIME_TYPES, true ); - } - /** * Check if user has permissions to update the fonts library * @@ -169,11 +94,11 @@ function update_fonts_library_permissions_check ( $request ) { } // Create fonts directory if it doesn't exist - wp_mkdir_p( $this->wp_fonts_dir ); + wp_mkdir_p( WP_FONTS_DIR ); // The update endpoints requires write access to the temp and the fonts directories $temp_dir = get_temp_dir(); - if ( ! is_writable( $temp_dir ) || ! wp_is_writable( $this->wp_fonts_dir ) ) { + if ( ! is_writable( $temp_dir ) || ! wp_is_writable( WP_FONTS_DIR ) ) { return new WP_Error( 'rest_cannot_write_fonts_folder', __( 'Error: WordPress does not have permission to write the fonts folder on your server.' ), @@ -227,214 +152,6 @@ function get_google_fonts () { ); } - /** - * Deletes a specified font asset file from the fonts directory. - * - * @param string $src The path of the font asset file to delete. - * @return bool Whether the file was deleted. - */ - function delete_asset( $src ) { - $filename = basename( $src ); - $file_path = path_join( $this->wp_fonts_dir, $filename ); - - if ( ! file_exists( $file_path ) ) { - return false; - } - - wp_delete_file( $file_path ); - - // If the file still exists after trying to delete it, return false - if ( file_exists( $file_path ) ) { - return false; - } - - // return true if the file was deleted - return true; - } - - /** - * Deletes all font face asset files associated with a given font face. - * - * @param array $font_face The font face array containing the 'src' attribute with the file path(s) to be deleted. - */ - function delete_font_face_assets ( $font_face ) { - $srcs = !empty ( $font_face['src'] ) && is_array( $font_face['src'] ) - ? $font_face['src'] - : array( $font_face['src'] ); - foreach ( $srcs as $src ) { - $was_asset_removed = $this->delete_asset($src); - if ( ! $was_asset_removed ) { - // Bail if any of the assets could not be removed - return false; - } - } - return true; - } - - /** - * Downloads a font asset. - * - * Downloads a font asset from a specified source URL and saves it to the font directory. - * - * @param string $src The source URL of the font asset to be downloaded. - * @param string $filename The filename to save the downloaded font asset as. - * @return string|bool The relative path to the downloaded font asset. False if the download failed. - */ - function download_asset( $src, $filename ) { - $file_path = path_join( $this->wp_fonts_dir, $filename ); - - // Checks if the file to be downloaded has a font mime type - if ( ! $this->has_font_mime_type( $file_path ) ) { - return false; - } - - // Downloads the font asset or returns false - $temp_file = download_url( $src ); - if ( is_wp_error( $temp_file ) ) { - @unlink( $temp_file ); - return false; - } - - // Moves the file to the fonts directory or return false - $renamed_file = rename( $temp_file, $file_path ); - // Cleans the temp file - @unlink( $temp_file ); - - if ( ! $renamed_file ) { - return false; - } - - // Returns the relative path to the downloaded font asset to be used as font face src - return "{$this->relative_fonts_path}{$filename}"; - } - - /** - * Generates a filename for a font face asset. - * - * Creates a filename for a font face asset using font family, style, weight and extension information. - * - * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and 'fontWeight' attributes. - * @param string $url The URL of the font face asset, used to derive the file extension. - * @param int $i Optional counter for appending to the filename, default is 1. - * @return string The generated filename for the font face asset. - */ - function get_filename_from_font_face ( $font_face, $url, $i=1 ) { - $extension = pathinfo( $url, PATHINFO_EXTENSION ); - $family = sanitize_title( $font_face['fontFamily'] ); - $style = sanitize_title( $font_face['fontStyle'] ); - $weight = sanitize_title( $font_face['fontWeight'] ); - $filename = "{$family}_{$style}_{$weight}"; - if ($i > 1) { - $filename .= "_{$i}"; - } - return "{$filename}.{$extension}"; - } - - /** - * Downloads font face assets. - * - * Downloads the font face asset(s) associated with a font face. It works with both single - * source URLs and arrays of multiple source URLs. - * - * @param array $font_face The font face array containing the 'src' attribute with the source URL(s) of the assets. - * @return array The modified font face array with the new source URL(s) to the downloaded assets. - */ - function download_font_face_assets ( $font_face ) { - $new_font_face = $font_face; - $srcs = !empty ( $font_face['src'] ) && is_array( $font_face['src'] ) - ? $font_face['src'] - : array( $font_face['src'] ); - $new_font_face['src'] = array(); - $i = 0; - foreach ( $srcs as $src ) { - $filename = $this->get_filename_from_font_face( $font_face, $src, $i++ ); - $new_src = $this->download_asset($src, $filename); - if ( $new_src ) { - $new_font_face['src'][] = $new_src; - } - } - if ( count( $new_font_face['src'] ) === 1 ) { - $new_font_face['src'] = $new_font_face['src'][0]; - } - return $new_font_face; - } - - function get_font_post ( $font ) { - $args = array ( - 'post_type' => $this->post_type, - 'post_name' => $font['slug'], - 'name' => $font['slug'], - 'posts_per_page' => 1, - ); - - $posts_query = new WP_Query( $args ); - - if ( $posts_query->have_posts() ) { - $post = $posts_query->posts[0]; - return $post; - } - - return null; - } - - /** - * Create a post for a font family - * - * @param array $font_family - * @return int - */ - function create_font_post ( $font_family ) { - $post = array( - 'post_title' => $font_family['name'], - 'post_name' => $font_family['slug'], - 'post_type' => $this->post_type, - 'post_content' => json_encode( $font_family ), - 'post_status' => 'publish', - ); - $post_id = wp_insert_post( $post ); - if ( $post_id === 0 ) { - return WP_Error( 'font_post_creation_failed', __( 'Font post creation failed', 'wp-fonts' ) ); - } - return $post_id; - } - - /** - * @param array $font_family - * @param WP_Post $post - * @return int - */ - function update_font_post ( $font_family, $post ) { - $existing_font = json_decode( $post->post_content, true ); - $new_font = $this->merge_fonts( $existing_font, $font_family ); - - $post = array( - 'ID' => $post->ID, - 'post_content' => json_encode( $new_font ), - ); - - $post_id = wp_update_post( $post ); - return $post_id; - } - - /** - * Creates a post for a font in the fonts library if it doesn't exist, or updates it if it does. - * - * @param array $font_family - * @return WP_Post - */ - function create_or_update_font_post ( $font_family ) { - $post = $this->get_font_post( $font_family ); - - if ( $post ) { - // update post - return $this->update_font_post( $font_family, $post ); - } - - // create post - $new_post = $this->create_font_post( $font_family ); - return $new_post; - } - /** * Installs new fonts. * @@ -459,44 +176,21 @@ function install_fonts ( $request ) { $files = $request->get_file_params(); // Download or move the new fonts assets to the fonts folder - $new_fonts = $this->download_or_move_fonts( $fonts_to_install, $files ); + $fonts = $this->download_or_move_fonts( $fonts_to_install, $files ); - if ( ! empty ( $new_fonts ) ){ - foreach ( $new_fonts as $new_font ) { - $sanitized_font = $this->sanitize_font( $new_font ); - $this->create_or_update_font_post( $sanitized_font ); + $response = array(); + if ( !empty( $fonts ) ){ + foreach ( $fonts as $font ) { + $font->create_or_update_font_post(); + $response[] = $font->get_data(); } - return new WP_REST_Response( $new_fonts ); + + return new WP_REST_Response( $response ); } return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.' ), array( 'status' => 500 ) ); } - /** - * Sanitizes the font family data using WP_Theme_JSON. - * - * @param array $font A font family definition. - * @return array A sanitized font family defintion. - */ - function sanitize_font ( $font ) { - // Creates the structure of theme.json array with the new fonts - $fonts_json = array( - 'version' => '2', - 'settings' => array( - 'typography' => array( - 'fontFamilies' => array( $font ) - ) - ) - ); - // Creates a new WP_Theme_JSON object with the new fonts to mmake profit of the sanitization and validation - $theme_json = new WP_Theme_JSON( $fonts_json ); - $theme_data = $theme_json->get_data(); - $sanitized_font = !empty( $theme_data['settings']['typography']['fontFamilies'] ) - ? $theme_data['settings']['typography']['fontFamilies'][0] - : array(); - return $sanitized_font; - } - /** * Download or move new font assets to the fonts folder * @@ -505,98 +199,20 @@ function sanitize_font ( $font ) { * * @return array New fonts with all assets downloaded referenced in the font families definition. */ - function download_or_move_fonts ( $fonts, $files ) { + function download_or_move_fonts ( $font_families, $files ) { $new_fonts = array(); - foreach ( $fonts as $font ) { - $new_font = $font; - if ( isset( $font['fontFace'] ) ) { - $new_font_faces = array(); - foreach ( $font['fontFace'] as $font_face ) { - - if ( empty( $files ) ){ - // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory - $new_font_face = $this->download_font_face_assets( $font_face ); - } else { - // If we are installing google fonts, we need to download the font face assets - $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face[ 'file' ] ] ); - } - - // If the font face assets were successfully downloaded, we add the font face to the new font. - // Font faces with failed downloads are not added to the new font - if ( !empty ( $new_font_face['src'] ) ){ - $new_font_faces[] = $new_font_face; - } - - } - - $new_font['fontFace'] = $new_font_faces; - } - + foreach ( $font_families as $font_family ) { + $font = new WP_Font_Family( $font_family ); + $were_assets_written = $font->download_or_move_font_faces( $files ); // If the font face assets were successfully downloaded, we add the font to the new fonts array. // Fonts without no font faces successfully downloaded are not added to the new fonts array - if ( ! empty ( $new_font['fontFace'] ) ){ - $new_fonts[] = $new_font; + if ( $were_assets_written ) { + $new_fonts[] = $font; } - } return $new_fonts; } - /** - * Move an uploaded font face asset from temp folder to the wp fonts directory - * - * This is used when uploading local fonts - * - * @param array $font_face Font face to download. - * @return array New font face with all assets downloaded and referenced in the font face definition. - */ - function move_font_face_asset ( $font_face, $file ) { - $new_font_face = $font_face; - $filename = $this->get_filename_from_font_face( $font_face, $file['name'] ); - $filepath= path_join( $this->wp_fonts_dir, $filename ); - - // Remove the uploaded font asset reference from the font face definition because it is no longer needed. - unset( $new_font_face['file'] ); - - // If the filepath has not a font mime type, we don't move the file and return the font face definition without src to be ignored later - if ( ! $this->has_font_mime_type( $filepath ) ) { - return $new_font_face; - } - - // Move the uploaded font asset from the temp folder to the wp fonts directory - $file_was_moved = move_uploaded_file( $file['tmp_name'], $filepath ); - - if ( $file_was_moved ) { - // If the file was successfully moved, we update the font face definition to reference the new file location - $new_font_face['src'] = "{$this->relative_fonts_path}{$filename}"; - } - - return $new_font_face; - } - - - /** - * Merges two fonts and their font faces. - * - * @param array $font1 The first font to merge. - * @param array $font2 The second font to merge. - * - * @return array The merged font. - */ - function merge_fonts ( $font1, $font2 ) { - $font_faces_1 = $font1['fontFace'] ?? array(); - $font_faces_2 = $font2['fontFace'] ?? array(); - - $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); - $merged_font_faces = array_map("unserialize", array_unique(array_map("serialize", $merged_font_faces))); - - $merged_font = array_merge( $font1, $font2 ); - $merged_fonts = array_unique( $merged_font ); - $merged_font['fontFace'] = $merged_font_faces; - - return $merged_font; - } - function register_post_type () { $args = array( 'public' => true, diff --git a/lib/load.php b/lib/load.php index 227651ccb474c..df39a53a12d97 100644 --- a/lib/load.php +++ b/lib/load.php @@ -133,6 +133,7 @@ function gutenberg_is_experiment_enabled( $name ) { } // Fonts Library +require __DIR__ . '/experimental/fonts-library/class-wp-fonts-library.php'; require __DIR__ . '/experimental/fonts-library/class-wp-rest-fonts-library-controller.php'; // Plugin specific code. From 1aaa21786af2f2b550c4faee9d733c1b69ece307 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Thu, 13 Jul 2023 17:02:08 +0200 Subject: [PATCH 111/116] hide preview tools on local fonts upload --- .../components/global-styles/font-library-modal/local-fonts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js b/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js index ef027419787bd..035b33c45f67d 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js @@ -150,7 +150,7 @@ function LocalFonts() { { selectedFiles.length > 0 && ( <> - + {/* */} From 8e470fd4ff82c34ad073528148a6e5efc0f9b6e0 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Mon, 17 Jul 2023 13:47:38 -0300 Subject: [PATCH 112/116] Avoid tracking post id in font family class --- .../fonts-library/class-wp-fonts-library.php | 30 +++++++++++++------ ...class-wp-rest-fonts-library-controller.php | 17 +++-------- .../font-library-modal/context.js | 12 +++----- 3 files changed, 29 insertions(+), 30 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index eee39727d3bf9..273116f2925e1 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -17,12 +17,10 @@ class WP_Font_Family { ); private $data; - private $post_id; private $relative_fonts_path; public function __construct( $font_family = array() ) { $this->data = $font_family; - $this->post_id = $font_family['post_id'] ?? null; $this->relative_fonts_path = content_url('/fonts/'); } @@ -53,7 +51,7 @@ public function has_font_faces () { return ( isset( $this->data['fontFace'] ) && is_array( $this->data['fontFace'] ) - && ! empty( $this->data['fontFace'] ) + && !empty( $this->data['fontFace'] ) ); } @@ -109,12 +107,13 @@ private function remove_font_family_assets () { * @return bool|WP_Error True if the font family was uninstalled, WP_Error otherwise. */ public function uninstall () { - if ( !$this->post_id ) { - $post = $this->get_font_post(); + $post = $this->get_data_from_post(); + if ( $post === null ) { + return new WP_Error( 'font_family_not_found', __( 'The font family could not be found.') ); } $were_assets_removed = $this->remove_font_family_assets(); if ( $were_assets_removed === true ) { - $was_post_deleted = wp_delete_post ( $this->post_id, true ); + $was_post_deleted = wp_delete_post ( $post->ID, true ); if ( $was_post_deleted === null ) { return new WP_Error( 'font_family_not_deleted', __( 'The font family could not be deleted.') ); } @@ -363,8 +362,7 @@ public function download_or_move_font_faces ( $files ) { /** * Get the post for a font family * - * @param array $font_family - * @return WP_Post|null + * @return WP_Post|null The post for this font family object or null if the post does not exist */ private function get_font_post () { $args = array ( @@ -378,13 +376,27 @@ private function get_font_post () { if ( $posts_query->have_posts() ) { $post = $posts_query->posts[0]; - $this->post_id = $post->ID; return $post; } return null; } + /** + * Get the data for this object from the database and set it to the data property + * + * @return WP_Post|null The post for this font family object or null if the post does not exist + */ + private function get_data_from_post () { + $post = $this->get_font_post(); + if ( $post ) { + $data = json_decode( $post->post_content, true ); + $this->data = $data; + return $post; + } + return null; + } + /** * Create a post for a font family * diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index 51f0f3cdfb2bf..e704b300ad8b3 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -60,19 +60,10 @@ public function register_routes () { * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure. */ function uninstall_font_family ( $request ) { - $post = get_post( $request['id'] ); - if ( ! $post ) { - return new WP_Error( - 'font_family_invalid_id', - __( 'Invalid font family ID.' ), - array( - 'status' => 404, - ) - ); - } - $font_family_data = json_decode( $post->post_content, true ); - $font_family_data['post_id'] = $post->ID; - $font = new WP_Font_Family ( $font_family_data ); + $data = array ( + 'slug' => $request['slug'], + ); + $font = new WP_Font_Family ( $data ); return new WP_REST_Response( $font->uninstall() ); } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 376fe111e2aef..8a19b012e8728 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -40,13 +40,9 @@ function FontLibraryProvider( { children } ) { { refreshKey } ); - const libraryFonts = ( posts || [] ).map( post => { - const post_content = JSON.parse( post.content.raw ) - return { - ...post_content, - postId: post.id, - } - }) || []; + const libraryFonts = ( posts || [] ).map( post => ( + JSON.parse( post.content.raw ) + )) || []; // Global Styles (settings) font families @@ -194,7 +190,7 @@ function FontLibraryProvider( { children } ) { } async function uninstallFont( font ) { - await fetchUninstallFonts( { id: font.postId } ); + await fetchUninstallFonts( font ); refreshLibrary(); } From 141f978529368f135a78c9ac09ffc5b6f6828aaf Mon Sep 17 00:00:00 2001 From: Jeff Ong Date: Mon, 17 Jul 2023 15:50:02 -0400 Subject: [PATCH 113/116] Format php. --- .../fonts-library/class-wp-fonts-library.php | 846 +++++++++--------- ...class-wp-rest-fonts-library-controller.php | 285 +++--- 2 files changed, 564 insertions(+), 567 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 273116f2925e1..ab2c775aa2c3e 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -5,74 +5,72 @@ * * @package gutenberg * @since x.x.x - * */ class WP_Font_Family { - const ALLOWED_FONT_MIME_TYPES = array( + const ALLOWED_FONT_MIME_TYPES = array( 'otf' => 'font/otf', 'ttf' => 'font/ttf', 'woff' => 'font/woff', 'woff2' => 'font/woff2', ); - private $data; - private $relative_fonts_path; + private $data; + private $relative_fonts_path; - public function __construct( $font_family = array() ) { - $this->data = $font_family; - $this->relative_fonts_path = content_url('/fonts/'); + public function __construct( $font_family = array() ) { + $this->data = $font_family; + $this->relative_fonts_path = content_url( '/fonts/' ); } - /** - * Returns the font family data - * - * @return array An array in fontFamily theme.json format. - */ - public function get_data() { - return $this->data; - } - - /** - * Returns the font family data - * - * @return string fontFamily in theme.json format as stringified JSON. - */ - public function get_data_as_json () { - return wp_json_encode( $this->get_data() ); - } - - /** - * Returns if the font family has font faces defined - * - * @return bool true if the font family has font faces defined, false otherwise. - */ - public function has_font_faces () { - return ( - isset( $this->data['fontFace'] ) - && is_array( $this->data['fontFace'] ) - && !empty( $this->data['fontFace'] ) - ); - } - - /** - * Returns the absolute path to the fonts directory. - * - * @return string Path to the fonts directory. - */ - static public function get_fonts_directory () { - return path_join( WP_CONTENT_DIR, 'fonts' ); - } - - /** - * Define WP_FONTS_DIR constant to make it available to the rest of the code. - * - */ - static public function define_fonts_directory () { - define( 'WP_FONTS_DIR', self::get_fonts_directory() ); - } - - /** + /** + * Returns the font family data + * + * @return array An array in fontFamily theme.json format. + */ + public function get_data() { + return $this->data; + } + + /** + * Returns the font family data + * + * @return string fontFamily in theme.json format as stringified JSON. + */ + public function get_data_as_json() { + return wp_json_encode( $this->get_data() ); + } + + /** + * Returns if the font family has font faces defined + * + * @return bool true if the font family has font faces defined, false otherwise. + */ + public function has_font_faces() { + return ( + isset( $this->data['fontFace'] ) + && is_array( $this->data['fontFace'] ) + && ! empty( $this->data['fontFace'] ) + ); + } + + /** + * Returns the absolute path to the fonts directory. + * + * @return string Path to the fonts directory. + */ + static public function get_fonts_directory() { + return path_join( WP_CONTENT_DIR, 'fonts' ); + } + + /** + * Define WP_FONTS_DIR constant to make it available to the rest of the code. + */ + static public function define_fonts_directory() { + define( 'WP_FONTS_DIR', self::get_fonts_directory() ); + } + + /** * Returns whether the given file has a font MIME type. * * @param string $filepath The file to check. @@ -83,374 +81,374 @@ static private function has_font_mime_type( $filepath ) { return in_array( $filetype['type'], self::ALLOWED_FONT_MIME_TYPES, true ); } - /** - * Removes font family assets - * - * @param array $font_family - * @return bool True if assets were removed, false otherwise. - */ - private function remove_font_family_assets () { - if ( $this->has_font_faces() ) { - foreach ( $this->data['fontFace'] as $font_face ) { - $were_assets_removed = $this->delete_font_face_assets( $font_face ); - if ( $were_assets_removed === false ) { - return false; - } - } - } - return true; - } - - /** - * Removes a font family from the database and deletes its assets. - * - * @return bool|WP_Error True if the font family was uninstalled, WP_Error otherwise. - */ - public function uninstall () { - $post = $this->get_data_from_post(); - if ( $post === null ) { - return new WP_Error( 'font_family_not_found', __( 'The font family could not be found.') ); - } - $were_assets_removed = $this->remove_font_family_assets(); - if ( $were_assets_removed === true ) { - $was_post_deleted = wp_delete_post ( $post->ID, true ); - if ( $was_post_deleted === null ) { - return new WP_Error( 'font_family_not_deleted', __( 'The font family could not be deleted.') ); - } - } - return true; - } - - /** - * Deletes a specified font asset file from the fonts directory. - * - * @param string $src The path of the font asset file to delete. - * @return bool Whether the file was deleted. - */ - static private function delete_asset( $src ) { - $filename = basename( $src ); - $file_path = path_join( WP_FONTS_DIR, $filename ); - - if ( ! file_exists( $file_path ) ) { - return false; - } - wp_delete_file( $file_path ); - - // If the file still exists after trying to delete it, return false - if ( file_exists( $file_path ) ) { - return false; - } - - // return true if the file was deleted - return true; - } - - /** - * Deletes all font face asset files associated with a given font face. - * - * @param array $font_face The font face array containing the 'src' attribute with the file path(s) to be deleted. - */ - static private function delete_font_face_assets( $font_face ) { - $srcs = !empty ( $font_face['src'] ) && is_array( $font_face['src'] ) - ? $font_face['src'] - : array( $font_face['src'] ); - foreach ( $srcs as $src ) { - $was_asset_removed = self::delete_asset($src); - if ( ! $was_asset_removed ) { - // Bail if any of the assets could not be removed - return false; - } - } - return true; - } - - /** - * Downloads a font asset. - * - * Downloads a font asset from a specified source URL and saves it to the font directory. - * - * @param string $src The source URL of the font asset to be downloaded. - * @param string $filename The filename to save the downloaded font asset as. - * @return string|bool The relative path to the downloaded font asset. False if the download failed. - */ - private function download_asset( $src, $filename ) { - $file_path = path_join( WP_FONTS_DIR, $filename ); - - // Checks if the file to be downloaded has a font mime type - if ( ! self::has_font_mime_type( $file_path ) ) { - return false; - } - - // Downloads the font asset or returns false - $temp_file = download_url( $src ); - if ( is_wp_error( $temp_file ) ) { - @unlink( $temp_file ); - return false; - } - - // Moves the file to the fonts directory or return false - $renamed_file = rename( $temp_file, $file_path ); - // Cleans the temp file - @unlink( $temp_file ); - - if ( ! $renamed_file ) { - return false; - } - - // Returns the relative path to the downloaded font asset to be used as font face src - return "{$this->relative_fonts_path}{$filename}"; - } - - /** - * Merges two fonts and their font faces. - * - * @param array $font1 The first font to merge. - * @param array $font2 The second font to merge. - * - * @return array The merged font. - */ - static private function merge_fonts ( $font1, $font2 ) { - $font_faces_1 = $font1['fontFace'] ?? array(); - $font_faces_2 = $font2['fontFace'] ?? array(); - - $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); - $merged_font_faces = array_map("unserialize", array_unique(array_map("serialize", $merged_font_faces))); - - $merged_font = array_merge( $font1, $font2 ); - $merged_fonts = array_unique( $merged_font ); - $merged_font['fontFace'] = $merged_font_faces; - - return $merged_font; - } - - /** - * Move an uploaded font face asset from temp folder to the wp fonts directory - * - * This is used when uploading local fonts - * - * @param array $font_face Font face to download. - * @return array New font face with all assets downloaded and referenced in the font face definition. - */ - private function move_font_face_asset ( $font_face, $file ) { - $new_font_face = $font_face; - $filename = self::get_filename_from_font_face( $font_face, $file['name'] ); - $filepath= path_join( WP_FONTS_DIR, $filename ); - - // Remove the uploaded font asset reference from the font face definition because it is no longer needed. - unset( $new_font_face['file'] ); - - // If the filepath has not a font mime type, we don't move the file and return the font face definition without src to be ignored later - if ( ! self::has_font_mime_type( $filepath ) ) { - return $new_font_face; - } - - // Move the uploaded font asset from the temp folder to the wp fonts directory - $file_was_moved = move_uploaded_file( $file['tmp_name'], $filepath ); - - if ( $file_was_moved ) { - // If the file was successfully moved, we update the font face definition to reference the new file location - $new_font_face['src'] = "{$this->relative_fonts_path}{$filename}"; - } - - return $new_font_face; - } - - /** - * Sanitizes the font family data using WP_Theme_JSON. - * - * @param array $font A font family definition. - * @return array A sanitized font family defintion. - */ - private function sanitize() { - // Creates the structure of theme.json array with the new fonts - $fonts_json = array( - 'version' => '2', - 'settings' => array( - 'typography' => array( - 'fontFamilies' => array( $this->data ) - ) - ) - ); - // Creates a new WP_Theme_JSON object with the new fonts to mmake profit of the sanitization and validation - $theme_json = new WP_Theme_JSON( $fonts_json ); - $theme_data = $theme_json->get_data(); - $sanitized_font = !empty( $theme_data['settings']['typography']['fontFamilies'] ) - ? $theme_data['settings']['typography']['fontFamilies'][0] - : array(); - $this->data = $sanitized_font; - return $this->data; - } - - /** - * Generates a filename for a font face asset. - * - * Creates a filename for a font face asset using font family, style, weight and extension information. - * - * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and 'fontWeight' attributes. - * @param string $url The URL of the font face asset, used to derive the file extension. - * @param int $i Optional counter for appending to the filename, default is 1. - * @return string The generated filename for the font face asset. - */ - static private function get_filename_from_font_face ( $font_face, $url, $i=1 ) { - $extension = pathinfo( $url, PATHINFO_EXTENSION ); - $family = sanitize_title( $font_face['fontFamily'] ); - $style = sanitize_title( $font_face['fontStyle'] ); - $weight = sanitize_title( $font_face['fontWeight'] ); - $filename = "{$family}_{$style}_{$weight}"; - if ($i > 1) { - $filename .= "_{$i}"; - } - return "{$filename}.{$extension}"; - } - - /** - * Downloads font face assets. - * - * Downloads the font face asset(s) associated with a font face. It works with both single - * source URLs and arrays of multiple source URLs. - * - * @param array $font_face The font face array containing the 'src' attribute with the source URL(s) of the assets. - * @return array The modified font face array with the new source URL(s) to the downloaded assets. - */ - private function download_font_face_assets ( $font_face ) { - $new_font_face = $font_face; - $srcs = !empty ( $font_face['src'] ) && is_array( $font_face['src'] ) - ? $font_face['src'] - : array( $font_face['src'] ); - $new_font_face['src'] = array(); - $i = 0; - foreach ( $srcs as $src ) { - $filename = self::get_filename_from_font_face( $font_face, $src, $i++ ); - $new_src = $this->download_asset($src, $filename); - if ( $new_src ) { - $new_font_face['src'][] = $new_src; - } - } - if ( count( $new_font_face['src'] ) === 1 ) { - $new_font_face['src'] = $new_font_face['src'][0]; - } - return $new_font_face; - } - - - public function download_or_move_font_faces ( $files ) { - if ( $this->has_font_faces() ) { - $new_font_faces = array(); - foreach ( $this->data['fontFace'] as $font_face ) { - if ( empty( $files ) ){ - // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory - $new_font_face = $this->download_font_face_assets( $font_face ); - } else { - // If we are installing google fonts, we need to download the font face assets - $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face[ 'file' ] ] ); - } - // If the font face assets were successfully downloaded, we add the font face to the new font. - // Font faces with failed downloads are not added to the new font - if ( !empty ( $new_font_face['src'] ) ){ - $new_font_faces[] = $new_font_face; - } - } - if ( !empty ( $new_font_faces ) ) { - $this->data['fontFace'] = $new_font_faces; - return true; - } - return WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.' ) ); - } - return true; - } - - /** - * Get the post for a font family - * - * @return WP_Post|null The post for this font family object or null if the post does not exist - */ - private function get_font_post () { - $args = array ( - 'post_type' => 'wp_fonts_library', - 'post_name' => $this->data['slug'], - 'name' => $this->data['slug'], - 'posts_per_page' => 1, - ); - - $posts_query = new WP_Query( $args ); - - if ( $posts_query->have_posts() ) { - $post = $posts_query->posts[0]; - return $post; - } - - return null; - } - - /** - * Get the data for this object from the database and set it to the data property - * - * @return WP_Post|null The post for this font family object or null if the post does not exist - */ - private function get_data_from_post () { - $post = $this->get_font_post(); - if ( $post ) { - $data = json_decode( $post->post_content, true ); - $this->data = $data; - return $post; - } - return null; - } - - /** - * Create a post for a font family - * - * @param array $font_family - * @return int - */ - private function create_font_post () { - $post = array( - 'post_title' => $this->data['name'], - 'post_name' => $this->data['slug'], - 'post_type' => 'wp_fonts_library', - 'post_content' => $this->get_data_as_json(), - 'post_status' => 'publish', - ); - $post_id = wp_insert_post( $post ); - if ( $post_id === 0 ) { - return WP_Error( 'font_post_creation_failed', __( 'Font post creation failed' ) ); - } - return $post_id; - } - - /** - * @param array $font_family - * @param WP_Post $post - * @return int - */ - private function update_font_post ( $post ) { - $post_font_data = json_decode( $post->post_content, true ); - $new_data = $this->merge_fonts( $post_font_data, $this->data ); - $this->data = $new_data; - - $post = array( - 'ID' => $post->ID, - 'post_content' => $this->get_data_as_json(), - ); - - $post_id = wp_update_post( $post ); - return $post_id; - } - - /** - * Creates a post for a font in the fonts library if it doesn't exist, or updates it if it does. - * - * @param array $font_family - * @return WP_Post - */ - public function create_or_update_font_post () { - $post = $this->get_font_post(); - if ( $post ) { - return $this->update_font_post( $post ); - } - return $this->create_font_post(); - } + /** + * Removes font family assets + * + * @param array $font_family + * @return bool True if assets were removed, false otherwise. + */ + private function remove_font_family_assets() { + if ( $this->has_font_faces() ) { + foreach ( $this->data['fontFace'] as $font_face ) { + $were_assets_removed = $this->delete_font_face_assets( $font_face ); + if ( $were_assets_removed === false ) { + return false; + } + } + } + return true; + } + + /** + * Removes a font family from the database and deletes its assets. + * + * @return bool|WP_Error True if the font family was uninstalled, WP_Error otherwise. + */ + public function uninstall() { + $post = $this->get_data_from_post(); + if ( $post === null ) { + return new WP_Error( 'font_family_not_found', __( 'The font family could not be found.' ) ); + } + $were_assets_removed = $this->remove_font_family_assets(); + if ( $were_assets_removed === true ) { + $was_post_deleted = wp_delete_post( $post->ID, true ); + if ( $was_post_deleted === null ) { + return new WP_Error( 'font_family_not_deleted', __( 'The font family could not be deleted.' ) ); + } + } + return true; + } + + /** + * Deletes a specified font asset file from the fonts directory. + * + * @param string $src The path of the font asset file to delete. + * @return bool Whether the file was deleted. + */ + static private function delete_asset( $src ) { + $filename = basename( $src ); + $file_path = path_join( WP_FONTS_DIR, $filename ); + + if ( ! file_exists( $file_path ) ) { + return false; + } + wp_delete_file( $file_path ); + + // If the file still exists after trying to delete it, return false + if ( file_exists( $file_path ) ) { + return false; + } + + // return true if the file was deleted + return true; + } + + /** + * Deletes all font face asset files associated with a given font face. + * + * @param array $font_face The font face array containing the 'src' attribute with the file path(s) to be deleted. + */ + static private function delete_font_face_assets( $font_face ) { + $srcs = ! empty( $font_face['src'] ) && is_array( $font_face['src'] ) + ? $font_face['src'] + : array( $font_face['src'] ); + foreach ( $srcs as $src ) { + $was_asset_removed = self::delete_asset( $src ); + if ( ! $was_asset_removed ) { + // Bail if any of the assets could not be removed + return false; + } + } + return true; + } + + /** + * Downloads a font asset. + * + * Downloads a font asset from a specified source URL and saves it to the font directory. + * + * @param string $src The source URL of the font asset to be downloaded. + * @param string $filename The filename to save the downloaded font asset as. + * @return string|bool The relative path to the downloaded font asset. False if the download failed. + */ + private function download_asset( $src, $filename ) { + $file_path = path_join( WP_FONTS_DIR, $filename ); + + // Checks if the file to be downloaded has a font mime type + if ( ! self::has_font_mime_type( $file_path ) ) { + return false; + } + + // Downloads the font asset or returns false + $temp_file = download_url( $src ); + if ( is_wp_error( $temp_file ) ) { + @unlink( $temp_file ); + return false; + } + + // Moves the file to the fonts directory or return false + $renamed_file = rename( $temp_file, $file_path ); + // Cleans the temp file + @unlink( $temp_file ); + + if ( ! $renamed_file ) { + return false; + } + + // Returns the relative path to the downloaded font asset to be used as font face src + return "{$this->relative_fonts_path}{$filename}"; + } + + /** + * Merges two fonts and their font faces. + * + * @param array $font1 The first font to merge. + * @param array $font2 The second font to merge. + * + * @return array The merged font. + */ + static private function merge_fonts( $font1, $font2 ) { + $font_faces_1 = $font1['fontFace'] ?? array(); + $font_faces_2 = $font2['fontFace'] ?? array(); + + $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); + $merged_font_faces = array_map( 'unserialize', array_unique( array_map( 'serialize', $merged_font_faces ) ) ); + + $merged_font = array_merge( $font1, $font2 ); + $merged_fonts = array_unique( $merged_font ); + $merged_font['fontFace'] = $merged_font_faces; + + return $merged_font; + } + + /** + * Move an uploaded font face asset from temp folder to the wp fonts directory + * + * This is used when uploading local fonts + * + * @param array $font_face Font face to download. + * @return array New font face with all assets downloaded and referenced in the font face definition. + */ + private function move_font_face_asset( $font_face, $file ) { + $new_font_face = $font_face; + $filename = self::get_filename_from_font_face( $font_face, $file['name'] ); + $filepath = path_join( WP_FONTS_DIR, $filename ); + + // Remove the uploaded font asset reference from the font face definition because it is no longer needed. + unset( $new_font_face['file'] ); + + // If the filepath has not a font mime type, we don't move the file and return the font face definition without src to be ignored later + if ( ! self::has_font_mime_type( $filepath ) ) { + return $new_font_face; + } + + // Move the uploaded font asset from the temp folder to the wp fonts directory + $file_was_moved = move_uploaded_file( $file['tmp_name'], $filepath ); + + if ( $file_was_moved ) { + // If the file was successfully moved, we update the font face definition to reference the new file location + $new_font_face['src'] = "{$this->relative_fonts_path}{$filename}"; + } + + return $new_font_face; + } + + /** + * Sanitizes the font family data using WP_Theme_JSON. + * + * @param array $font A font family definition. + * @return array A sanitized font family defintion. + */ + private function sanitize() { + // Creates the structure of theme.json array with the new fonts + $fonts_json = array( + 'version' => '2', + 'settings' => array( + 'typography' => array( + 'fontFamilies' => array( $this->data ), + ), + ), + ); + // Creates a new WP_Theme_JSON object with the new fonts to mmake profit of the sanitization and validation + $theme_json = new WP_Theme_JSON( $fonts_json ); + $theme_data = $theme_json->get_data(); + $sanitized_font = ! empty( $theme_data['settings']['typography']['fontFamilies'] ) + ? $theme_data['settings']['typography']['fontFamilies'][0] + : array(); + $this->data = $sanitized_font; + return $this->data; + } + + /** + * Generates a filename for a font face asset. + * + * Creates a filename for a font face asset using font family, style, weight and extension information. + * + * @param array $font_face The font face array containing 'fontFamily', 'fontStyle', and 'fontWeight' attributes. + * @param string $url The URL of the font face asset, used to derive the file extension. + * @param int $i Optional counter for appending to the filename, default is 1. + * @return string The generated filename for the font face asset. + */ + static private function get_filename_from_font_face( $font_face, $url, $i = 1 ) { + $extension = pathinfo( $url, PATHINFO_EXTENSION ); + $family = sanitize_title( $font_face['fontFamily'] ); + $style = sanitize_title( $font_face['fontStyle'] ); + $weight = sanitize_title( $font_face['fontWeight'] ); + $filename = "{$family}_{$style}_{$weight}"; + if ( $i > 1 ) { + $filename .= "_{$i}"; + } + return "{$filename}.{$extension}"; + } + + /** + * Downloads font face assets. + * + * Downloads the font face asset(s) associated with a font face. It works with both single + * source URLs and arrays of multiple source URLs. + * + * @param array $font_face The font face array containing the 'src' attribute with the source URL(s) of the assets. + * @return array The modified font face array with the new source URL(s) to the downloaded assets. + */ + private function download_font_face_assets( $font_face ) { + $new_font_face = $font_face; + $srcs = ! empty( $font_face['src'] ) && is_array( $font_face['src'] ) + ? $font_face['src'] + : array( $font_face['src'] ); + $new_font_face['src'] = array(); + $i = 0; + foreach ( $srcs as $src ) { + $filename = self::get_filename_from_font_face( $font_face, $src, $i++ ); + $new_src = $this->download_asset( $src, $filename ); + if ( $new_src ) { + $new_font_face['src'][] = $new_src; + } + } + if ( count( $new_font_face['src'] ) === 1 ) { + $new_font_face['src'] = $new_font_face['src'][0]; + } + return $new_font_face; + } + + + public function download_or_move_font_faces( $files ) { + if ( $this->has_font_faces() ) { + $new_font_faces = array(); + foreach ( $this->data['fontFace'] as $font_face ) { + if ( empty( $files ) ) { + // If we are installing local fonts, we need to move the font face assets from the temp folder to the wp fonts directory + $new_font_face = $this->download_font_face_assets( $font_face ); + } else { + // If we are installing google fonts, we need to download the font face assets + $new_font_face = $this->move_font_face_asset( $font_face, $files[ $font_face['file'] ] ); + } + // If the font face assets were successfully downloaded, we add the font face to the new font. + // Font faces with failed downloads are not added to the new font + if ( ! empty( $new_font_face['src'] ) ) { + $new_font_faces[] = $new_font_face; + } + } + if ( ! empty( $new_font_faces ) ) { + $this->data['fontFace'] = $new_font_faces; + return true; + } + return WP_Error( 'font_face_download_failed', __( 'The font face assets could not be written.' ) ); + } + return true; + } + + /** + * Get the post for a font family + * + * @return WP_Post|null The post for this font family object or null if the post does not exist + */ + private function get_font_post() { + $args = array( + 'post_type' => 'wp_fonts_library', + 'post_name' => $this->data['slug'], + 'name' => $this->data['slug'], + 'posts_per_page' => 1, + ); + + $posts_query = new WP_Query( $args ); + + if ( $posts_query->have_posts() ) { + $post = $posts_query->posts[0]; + return $post; + } + + return null; + } + + /** + * Get the data for this object from the database and set it to the data property + * + * @return WP_Post|null The post for this font family object or null if the post does not exist + */ + private function get_data_from_post() { + $post = $this->get_font_post(); + if ( $post ) { + $data = json_decode( $post->post_content, true ); + $this->data = $data; + return $post; + } + return null; + } + + /** + * Create a post for a font family + * + * @param array $font_family + * @return int + */ + private function create_font_post() { + $post = array( + 'post_title' => $this->data['name'], + 'post_name' => $this->data['slug'], + 'post_type' => 'wp_fonts_library', + 'post_content' => $this->get_data_as_json(), + 'post_status' => 'publish', + ); + $post_id = wp_insert_post( $post ); + if ( $post_id === 0 ) { + return WP_Error( 'font_post_creation_failed', __( 'Font post creation failed' ) ); + } + return $post_id; + } + + /** + * @param array $font_family + * @param WP_Post $post + * @return int + */ + private function update_font_post( $post ) { + $post_font_data = json_decode( $post->post_content, true ); + $new_data = $this->merge_fonts( $post_font_data, $this->data ); + $this->data = $new_data; + + $post = array( + 'ID' => $post->ID, + 'post_content' => $this->get_data_as_json(), + ); + + $post_id = wp_update_post( $post ); + return $post_id; + } + + /** + * Creates a post for a font in the fonts library if it doesn't exist, or updates it if it does. + * + * @param array $font_family + * @return WP_Post + */ + public function create_or_update_font_post() { + $post = $this->get_font_post(); + if ( $post ) { + return $this->update_font_post( $post ); + } + return $this->create_font_post(); + } } -add_action( 'init', array( 'WP_Font_Family', 'define_fonts_directory' ) ); \ No newline at end of file +add_action( 'init', array( 'WP_Font_Family', 'define_fonts_directory' ) ); diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index e704b300ad8b3..a87a16d01fada 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -1,22 +1,21 @@ rest_base = 'fonts_library'; - $this->namespace = 'wp/v2'; - } + public function __construct() { + $this->rest_base = 'fonts_library'; + $this->namespace = 'wp/v2'; + } - public function register_routes () { - register_rest_route( + public function register_routes() { + register_rest_route( $this->namespace, '/' . $this->rest_base, array( @@ -28,7 +27,7 @@ public function register_routes () { ) ); - register_rest_route( + register_rest_route( $this->namespace, '/' . $this->rest_base, array( @@ -39,7 +38,7 @@ public function register_routes () { ), ) ); - register_rest_route( + register_rest_route( $this->namespace, '/' . $this->rest_base . '/google_fonts', array( @@ -51,30 +50,30 @@ public function register_routes () { ) ); - } + } - /** - * Removes a font family from the fonts library and all their assets - * + /** + * Removes a font family from the fonts library and all their assets + * * @param WP_REST_Request $request Full details about the request. * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure. */ - function uninstall_font_family ( $request ) { - $data = array ( - 'slug' => $request['slug'], - ); - $font = new WP_Font_Family ( $data ); - return new WP_REST_Response( $font->uninstall() ); - } - - /** - * Check if user has permissions to update the fonts library - * + function uninstall_font_family( $request ) { + $data = array( + 'slug' => $request['slug'], + ); + $font = new WP_Font_Family( $data ); + return new WP_REST_Response( $font->uninstall() ); + } + + /** + * Check if user has permissions to update the fonts library + * * @param WP_REST_Request $request Full details about the request. * @return true|WP_Error True if the request has write access for the item, WP_Error object otherwise. */ - function update_fonts_library_permissions_check ( $request ) { - if ( ! current_user_can( 'edit_theme_options' ) ) { + function update_fonts_library_permissions_check( $request ) { + if ( ! current_user_can( 'edit_theme_options' ) ) { return new WP_Error( 'rest_cannot_update_fonts_library', __( 'Sorry, you are not allowed to update the fonts library on this site.' ), @@ -83,33 +82,33 @@ function update_fonts_library_permissions_check ( $request ) { ) ); } - - // Create fonts directory if it doesn't exist - wp_mkdir_p( WP_FONTS_DIR ); - - // The update endpoints requires write access to the temp and the fonts directories - $temp_dir = get_temp_dir(); - if ( ! is_writable( $temp_dir ) || ! wp_is_writable( WP_FONTS_DIR ) ) { - return new WP_Error( - 'rest_cannot_write_fonts_folder', - __( 'Error: WordPress does not have permission to write the fonts folder on your server.' ), - array( - 'status' => 500, - ) - ); - } + + // Create fonts directory if it doesn't exist + wp_mkdir_p( WP_FONTS_DIR ); + + // The update endpoints requires write access to the temp and the fonts directories + $temp_dir = get_temp_dir(); + if ( ! is_writable( $temp_dir ) || ! wp_is_writable( WP_FONTS_DIR ) ) { + return new WP_Error( + 'rest_cannot_write_fonts_folder', + __( 'Error: WordPress does not have permission to write the fonts folder on your server.' ), + array( + 'status' => 500, + ) + ); + } return true; - } + } - /** - * Check if user has permissions to read the fonts library - * + /** + * Check if user has permissions to read the fonts library + * * @param WP_REST_Request $request Full details about the request. * @return true|WP_Error True if the request has read access for the item, WP_Error object otherwise. */ - function read_fonts_library_permissions_check ( $request ) { - if ( !current_user_can( 'edit_posts' ) ) { + function read_fonts_library_permissions_check( $request ) { + if ( ! current_user_can( 'edit_posts' ) ) { return new WP_Error( 'rest_cannot_read_fonts_library', __( 'Sorry, you are not allowed to read the fonts library on this site.' ), @@ -120,105 +119,105 @@ function read_fonts_library_permissions_check ( $request ) { } return true; - } - - /** - * Fetches the Google Fonts JSON file. - * - * Reads the "google-fonts.json" file from the file system and returns its content. - * - * @return WP_REST_Response|WP_Error The content of the "google-fonts.json" file wrapped in a WP_REST_Response object. - */ - function get_google_fonts () { - $file = file_get_contents( - path_join ( dirname(__FILE__),"google-fonts.json" ) - ); - if ( $file ) { - return new WP_REST_Response( json_decode( $file ) ); - } - return new WP_Error( - 'rest_cant_read_google_fonts', - __( 'Error reading Google Fonts JSON file.' ), - array( 'status' => 500 ) - ); - } - - /** - * Installs new fonts. - * - * Takes a request containing new fonts to install, downloads their assets, and adds them to the fonts library. - * - * @param WP_REST_Request $request The request object containing the new fonts to install in the request parameters. - * @return WP_REST_Response|WP_Error The updated fonts library post content. - */ - function install_fonts ( $request ) { - // Get new fonts to install - $fonts_to_install = $request->get_param('fontFamilies'); - - // As we are receiving form data, the font families are encoded as a string. - // We are using form data because local fonts need to use that format to attach the files in the request - $fonts_to_install = json_decode( $fonts_to_install, true ); - - if ( empty ( $fonts_to_install ) ) { - return new WP_Error( 'no_fonts_to_install', __( 'No fonts to install' ), array( 'status' => 400 ) ); - } - - // Get uploaded files (used when installing local fonts) - $files = $request->get_file_params(); - - // Download or move the new fonts assets to the fonts folder - $fonts = $this->download_or_move_fonts( $fonts_to_install, $files ); - - $response = array(); - if ( !empty( $fonts ) ){ - foreach ( $fonts as $font ) { - $font->create_or_update_font_post(); - $response[] = $font->get_data(); - } - - return new WP_REST_Response( $response ); - } - - return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.' ), array( 'status' => 500 ) ); - } - - /** - * Download or move new font assets to the fonts folder - * - * @param array $fonts Fonts to install. - * @param array $files Uploaded files (used when installing local fonts). - * - * @return array New fonts with all assets downloaded referenced in the font families definition. - */ - function download_or_move_fonts ( $font_families, $files ) { - $new_fonts = array(); - foreach ( $font_families as $font_family ) { - $font = new WP_Font_Family( $font_family ); - $were_assets_written = $font->download_or_move_font_faces( $files ); - // If the font face assets were successfully downloaded, we add the font to the new fonts array. - // Fonts without no font faces successfully downloaded are not added to the new fonts array - if ( $were_assets_written ) { - $new_fonts[] = $font; - } - } - return $new_fonts; - } - - function register_post_type () { - $args = array( - 'public' => true, - 'label' => 'Font Library', - 'show_in_rest' => true, - ); - register_post_type( 'wp_fonts_library', $args ); - } + } + + /** + * Fetches the Google Fonts JSON file. + * + * Reads the "google-fonts.json" file from the file system and returns its content. + * + * @return WP_REST_Response|WP_Error The content of the "google-fonts.json" file wrapped in a WP_REST_Response object. + */ + function get_google_fonts() { + $file = file_get_contents( + path_join( dirname( __FILE__ ), 'google-fonts.json' ) + ); + if ( $file ) { + return new WP_REST_Response( json_decode( $file ) ); + } + return new WP_Error( + 'rest_cant_read_google_fonts', + __( 'Error reading Google Fonts JSON file.' ), + array( 'status' => 500 ) + ); + } + + /** + * Installs new fonts. + * + * Takes a request containing new fonts to install, downloads their assets, and adds them to the fonts library. + * + * @param WP_REST_Request $request The request object containing the new fonts to install in the request parameters. + * @return WP_REST_Response|WP_Error The updated fonts library post content. + */ + function install_fonts( $request ) { + // Get new fonts to install + $fonts_to_install = $request->get_param( 'fontFamilies' ); + + // As we are receiving form data, the font families are encoded as a string. + // We are using form data because local fonts need to use that format to attach the files in the request + $fonts_to_install = json_decode( $fonts_to_install, true ); + + if ( empty( $fonts_to_install ) ) { + return new WP_Error( 'no_fonts_to_install', __( 'No fonts to install' ), array( 'status' => 400 ) ); + } + + // Get uploaded files (used when installing local fonts) + $files = $request->get_file_params(); + + // Download or move the new fonts assets to the fonts folder + $fonts = $this->download_or_move_fonts( $fonts_to_install, $files ); + + $response = array(); + if ( ! empty( $fonts ) ) { + foreach ( $fonts as $font ) { + $font->create_or_update_font_post(); + $response[] = $font->get_data(); + } + + return new WP_REST_Response( $response ); + } + + return new WP_Error( 'error_installing_fonts', __( 'Error installing fonts. No font was installed.' ), array( 'status' => 500 ) ); + } + + /** + * Download or move new font assets to the fonts folder + * + * @param array $fonts Fonts to install. + * @param array $files Uploaded files (used when installing local fonts). + * + * @return array New fonts with all assets downloaded referenced in the font families definition. + */ + function download_or_move_fonts( $font_families, $files ) { + $new_fonts = array(); + foreach ( $font_families as $font_family ) { + $font = new WP_Font_Family( $font_family ); + $were_assets_written = $font->download_or_move_font_faces( $files ); + // If the font face assets were successfully downloaded, we add the font to the new fonts array. + // Fonts without no font faces successfully downloaded are not added to the new fonts array + if ( $were_assets_written ) { + $new_fonts[] = $font; + } + } + return $new_fonts; + } + + function register_post_type() { + $args = array( + 'public' => true, + 'label' => 'Font Library', + 'show_in_rest' => true, + ); + register_post_type( 'wp_fonts_library', $args ); + } } -function fonts_library_register_routes () { +function fonts_library_register_routes() { $fonts_library = new WP_Fonts_Library_Controller(); $fonts_library->register_routes(); - $fonts_library->register_post_type(); + $fonts_library->register_post_type(); } -add_action( 'rest_api_init', 'fonts_library_register_routes' ); \ No newline at end of file +add_action( 'rest_api_init', 'fonts_library_register_routes' ); From 6365c223b342211fb7d49b33efd40a4f4d586da2 Mon Sep 17 00:00:00 2001 From: Jeff Ong Date: Mon, 17 Jul 2023 16:10:42 -0400 Subject: [PATCH 114/116] Update comment. --- lib/experimental/fonts-library/class-wp-fonts-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index ab2c775aa2c3e..a0be2afdb59dd 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -269,7 +269,7 @@ private function sanitize() { ), ), ); - // Creates a new WP_Theme_JSON object with the new fonts to mmake profit of the sanitization and validation + // Creates a new WP_Theme_JSON object with the new fonts to leverage sanitization and validation $theme_json = new WP_Theme_JSON( $fonts_json ); $theme_data = $theme_json->get_data(); $sanitized_font = ! empty( $theme_data['settings']['typography']['fontFamilies'] ) From 006ebdec87d1641565811b0002a678298f072880 Mon Sep 17 00:00:00 2001 From: Jeff Ong Date: Mon, 17 Jul 2023 17:01:01 -0400 Subject: [PATCH 115/116] Fix array key issue with merge. --- lib/experimental/fonts-library/class-wp-fonts-library.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index a0be2afdb59dd..6417433066416 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -212,11 +212,13 @@ static private function merge_fonts( $font1, $font2 ) { $font_faces_2 = $font2['fontFace'] ?? array(); $merged_font_faces = array_merge( $font_faces_1, $font_faces_2 ); - $merged_font_faces = array_map( 'unserialize', array_unique( array_map( 'serialize', $merged_font_faces ) ) ); + + $serialized_faces = array_map( 'serialize', $merged_font_faces ); + $unique_serialized_faces = array_unique( $serialized_faces ); + $unique_faces = array_values( array_map( 'unserialize', $unique_serialized_faces ) ); $merged_font = array_merge( $font1, $font2 ); - $merged_fonts = array_unique( $merged_font ); - $merged_font['fontFace'] = $merged_font_faces; + $merged_font['fontFace'] = $unique_faces; return $merged_font; } From 8b10c601926941cf26761069845cd4e7e78fb5df Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 28 Jul 2023 11:22:26 -0300 Subject: [PATCH 116/116] rename custom post type to wp_font_family --- lib/experimental/fonts-library/class-wp-fonts-library.php | 4 ++-- .../fonts-library/class-wp-rest-fonts-library-controller.php | 2 +- .../components/global-styles/font-library-modal/context.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/experimental/fonts-library/class-wp-fonts-library.php b/lib/experimental/fonts-library/class-wp-fonts-library.php index 6417433066416..6eea91a8be4d7 100644 --- a/lib/experimental/fonts-library/class-wp-fonts-library.php +++ b/lib/experimental/fonts-library/class-wp-fonts-library.php @@ -366,7 +366,7 @@ public function download_or_move_font_faces( $files ) { */ private function get_font_post() { $args = array( - 'post_type' => 'wp_fonts_library', + 'post_type' => 'wp_font_family', 'post_name' => $this->data['slug'], 'name' => $this->data['slug'], 'posts_per_page' => 1, @@ -407,7 +407,7 @@ private function create_font_post() { $post = array( 'post_title' => $this->data['name'], 'post_name' => $this->data['slug'], - 'post_type' => 'wp_fonts_library', + 'post_type' => 'wp_font_family', 'post_content' => $this->get_data_as_json(), 'post_status' => 'publish', ); diff --git a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php index a87a16d01fada..4acc2e61ee6f8 100644 --- a/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php +++ b/lib/experimental/fonts-library/class-wp-rest-fonts-library-controller.php @@ -209,7 +209,7 @@ function register_post_type() { 'label' => 'Font Library', 'show_in_rest' => true, ); - register_post_type( 'wp_fonts_library', $args ); + register_post_type( 'wp_font_family', $args ); } } diff --git a/packages/edit-site/src/components/global-styles/font-library-modal/context.js b/packages/edit-site/src/components/global-styles/font-library-modal/context.js index 8a19b012e8728..0241da9e3e5c2 100644 --- a/packages/edit-site/src/components/global-styles/font-library-modal/context.js +++ b/packages/edit-site/src/components/global-styles/font-library-modal/context.js @@ -36,7 +36,7 @@ function FontLibraryProvider( { children } ) { const { records: posts = [] } = useEntityRecords( 'postType', - 'wp_fonts_library', + 'wp_font_family', { refreshKey } );